I want to build a 2D matrix with sum of 2 input arrays(by adding row & column elements). For example, if a is {1,3,5} and b is {4,8}, I want to bui
{1,3,5}
{4,8}