How to Update matrix values
조회 수: 24 (최근 30일)
이전 댓글 표시
I have a matrix[2 2:2 2]I want to update these four values one by one ie[3 3:3 3],[4 4:4 4],[5 5:5 5] like thgis I want to update ,,,how can i achieve this with script?
댓글 수: 0
채택된 답변
추가 답변 (1개)
Walter Roberson
2013년 1월 2일
A = A + 1;
댓글 수: 4
Walter Roberson
2013년 1월 2일
If you want to see each updated value, you could remove the semi-colon from the addition
a(i) = a(i) + 1 %no semi-colon
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!