How to assign values in an identity matrix?
조회 수: 6 (최근 30일)
이전 댓글 표시
Simple question, but say I have a 3x3 identity matrix:
I = eye(3)
I =
1 0 0
0 1 0
0 0 1
And I want to change the upper right two elements to, say, 2 and 4:
I =
1 0 2
0 1 4
0 0 1
Is there a function that will allow me to do this?
댓글 수: 0
채택된 답변
James Tursa
2018년 6월 2일
편집: James Tursa
2018년 6월 2일
For this specific question, simple indexed assignment:
I(1:2,end) = [2;4];
But what is your actual problem?
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Function Creation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!