How to store a string of n elements as one element of a matrix
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a function wich give me an array of elements like Nff=[5 0 5 0] and I want to insert Nff into a matrix N(i,j)=Nff. It can be numeric or string. It`s only important to me to store the array in the same row of the others elements 'i' and 'j' as one element of the matrix.
댓글 수: 0
답변 (1개)
Peng Li
2020년 3월 26일
You may want to try a cell array instead? N{i, j} = Nff;
댓글 수: 3
Peng Li
2020년 3월 27일
Sorry I don't quite understand your question. It's tricky to extend a matrix this way in a loop as you add a block during one loop process to one dimension, the size changes and it conflicts with other dimension. For example, in your example above, you add four element in the first row, it's gonna stop because in this matrix pat, there are only 6 columns in the second row while you force it to have 10 elements in the first row. It's not allowed, and there is no way that you add 6 elements to the second row. They have to be consistent.
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!