How to assign variable to matrix positions
조회 수: 1 (최근 30일)
이전 댓글 표시
Given matrix A , assign the second coloumn of A to a varible v.
A = [1:5; 6:10; 11:15; 16:20];
i tried using the syms command but failed
and also the value it stores for v is 118, thats whats comming if a i try to assign it
댓글 수: 3
Walter Roberson
2020년 8월 17일
Is the idea that you are trying to create an "alias" for the second column of A, named v, such that if you were to assign to v(3) then A(3,2) would also change?
답변 (1개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!