The elements of a mxn matrix are the results of m*n matrices. how to do it?
Show older comments
Hi. I have a situation where i have to generate a 6x6 matrix in which each element of the matrix is a result of 36 different matrices. i used the following code to generate the 6x6 matrix. matrix_11=[...]; matrix_12=[...]; . . . matrix_66=[...]; for i=1:6 for j=1:6 w(i,j)=matrix_??? end end My problem is how to call each of the matrix separately in w for every value of i and j. pls help cyberguys.
Accepted Answer
More Answers (0)
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!