I want to divide each row of a matrix with corresponding element in another matrix .Please help.
조회 수: 86 (최근 30일)
이전 댓글 표시
For eg: I have a matrix
A=[9 6 3;
4 2 8;
1 0 0;]
divide A by B=[3 2 1] to get the result
C=[3 2 1;
2 1 4;
1 0 0;]
댓글 수: 0
채택된 답변
추가 답변 (2개)
First Last
2018년 3월 28일
편집: First Last
2018년 3월 28일
Make sure B is transposed to a column vector, i.e.,
C=A./B';
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!