The elements of a mxn matrix are the results of m*n matrices. how to do it?
이전 댓글 표시
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.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!