Filter löschen
Filter löschen

Where is my mistake on cumulative sum of 4 matrices?

1 Ansicht (letzte 30 Tage)
Volkan Yangin
Volkan Yangin am 19 Mär. 2017
Kommentiert: Star Strider am 19 Mär. 2017
Hi everbody, I have 4 matrices and to find cumulative sum of them, i use this code:
%aa includes 4 matrices (4 line, 101 columns for each line)
for i=1:1:4;
cum_sum=cumsum(aa(i,:))
end
MATLAB gives me one result with this code. How can i generate 4 result with using this code?
Thanks
  5 Kommentare
Volkan Yangin
Volkan Yangin am 19 Mär. 2017
Bearbeitet: Volkan Yangin am 19 Mär. 2017
Yes. Aa is a single variable. I plan to find cumulative sum of each line of aa.
Writing English is sometimes hard of me. :) Sorry for this.
Star Strider
Star Strider am 19 Mär. 2017
No worries.
The code for 4 matrices is much different that for 1 matrix with 4 rows.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

the cyclist
the cyclist am 19 Mär. 2017
My best guess, with the current information as I write this, is that you just need either
cum_sum = cumsum(aa)
or
cum_sum = cumsum(aa,2)
without using the for loop at all.

Weitere Antworten (1)

Star Strider
Star Strider am 19 Mär. 2017
If you have one matrix with 4 rows and 101 columns, this works:
cum_sum = cumsum(aa,2);
  2 Kommentare
Volkan Yangin
Volkan Yangin am 19 Mär. 2017
Thanks Star Strider. I have just saved the code you sent.
Star Strider
Star Strider am 19 Mär. 2017
My pleasure.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by