Multiply only certain columns in a matrix with a constant
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello,
I have a 100x9 matrix M, whose last six columns should be multiplied by a constant c and the first three columns shall remain unchanged. What would be an appropriate way to achieve this?
Thank you very much for your help!
댓글 수: 0
채택된 답변
Star Strider
2022년 7월 28일
Another approach —
M = rand(5,9) % Shorter Version Of 'M'
c = 1000; % Create 'c'
Mnew = M.*[ones(1,3) ones(1,6)*c] % Multiply
.
댓글 수: 0
추가 답변 (1개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!