how to multiply only the second row of matrix with a number
2 ビュー (過去 30 日間)
古いコメントを表示
how to multiply only the second row of matrix 2*2 with a random integer and change entry 2*2 to be equal to the entry (1,2)
0 件のコメント
回答 (1 件)
KSSV
2021 年 8 月 8 日
If A is 2*2 matrix. To multiply the second row with a constant:
K = 5 ; % a constant
A(2,:) = K*A(2,:) ;
3 件のコメント
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!