The product of a vector and a matrix
조회 수: 6 (최근 30일)
이전 댓글 표시
I have a vector A = and a matrix X = , where is a M-dimensional row vector. Does matlab have an operator that directly give me the matrix? (where each row vector in the above matrix X is multiplied by the corresponding part in vector A)
댓글 수: 0
채택된 답변
Dyuman Joshi
2023년 12월 8일
편집: Dyuman Joshi
2023년 12월 8일
If I understand your question correctly, you should get the desired output using array multiplication -
N=5;
A = (1:N).'
X = magic(N)
Z = A.*X
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!