photo

Onesimus Hewett


Last seen: 10ヶ月 前 2023 年からアクティブ

Followers: 0   Following: 0

統計

  • First Answer

バッジを表示

Feeds

表示方法

回答済み
How to apply the same operation to an ever increasing number of columns?
The easiest method is to use a for loop. C = zeros(20, 7); for i = 1:7 C(:, i) = B(:, 1:i)*A(1:i)'; end C

10ヶ月 前 | 1