Change all matrix elements from x to 1/x
조회 수: 24 (최근 30일)
이전 댓글 표시
Hello, i am trying to change all the elements in a single line matrix from Xj to 1/Xj. Thanks
댓글 수: 0
채택된 답변
추가 답변 (1개)
Asieh Daneshi
2020년 4월 25일
A=rand(n);
A(:,n)=1./A(:,n);
댓글 수: 1
Walter Roberson
2020년 4월 25일
This would change a single column, rather than a single line (row). It happens to change the last column, by the way.
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!