How to automatically pull values from matrix and set as variables
이전 댓글 표시
I have a matrix ex.
A=[11,7,3;9,13,5],
and I want to have a series of variables where
c1=1
c2=7
c3=3
c4=9
c5=13
c6=5.
How can I do an operation like this for any size matrix and note it is important that they are numbered in a certain direction. This is so in a later operation I can input c5 in an equation and it be the value located in A(2,2).
댓글 수: 5
dpb
2017년 8월 2일
While it is doable; this is almost certainly NOT the way to code whatever it is you have in mind.
Show us the next step of how you intend to use these variables and better solutions will undoubtedly come forth.
Walter Roberson
2017년 8월 2일
You do not need to assign them to variables for this. You can input as a string and analyze the string, pick out the index numbers the user entered and transform them into indices in the original matrix.
Garrett
2017년 8월 2일
Garrett
2017년 8월 2일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!