Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
として与えられた行列があるとしましょう:
c=[5.24 5.19 5.07 4.36; 5.39 5.44 5.38 5.32; 5.58 5.12 6.05 4.02]
出力行列の最初の行が c の最初の行であり、出力行列の 2 行目が c の最初の 2 行の合計であり、3 行目が c の 3 行の合計であるように出力行列を計算したい。このための matlab コードの書き方。
Matlab の累積合計関数を使用します。
ans = cumsum(c);