I have two arrays, say A(12,3,4,5) and B(5,4,3,2,1). If I want to create a matrix C with values inside those two arrays. Do I need to insert all values manually via C(0,0) = 1; C(0,1) = 2; ...?