matrix dividing
1 回表示 (過去 30 日間)
古いコメントを表示
If I have a big matrix like this: A=ones(1,450000). How can I divide it in 300 equal parts (1, 1500) and multiple these 300 parts (arrays) with a matrix with dimensions B=(1,300)?
Thank you...
0 件のコメント
回答 (1 件)
Fangjun Jiang
2011 年 11 月 15 日
A=ones(1,450000);
NewA=reshape(A,300,[]);
C=B*NewA;
2 件のコメント
Fangjun Jiang
2011 年 11 月 15 日
Use this example to understand the row and column
Assume B=magic(3)
B(:,1) is the first column of B, B(:,2) is the second column,...
B(1,:) is the first row of B, B(2,:) is the second row, ...
参考
カテゴリ
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!