How to count a specific value from column to column
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Jonas Damsbo
am 3 Jan. 2019
Bearbeitet: madhan ravi
am 3 Jan. 2019
Hey
Maybe a simple question. But if I have a vector lets say 15x1 vector like:
[1 1 1 0 1 0 0 1 0 0 1 0 1 0 1]
Now I want to count the number 1 in range of 5 columns so I get a new vector:
[4 1 3]
Anyway to do that?
0 Kommentare
Akzeptierte Antwort
madhan ravi
am 3 Jan. 2019
Bearbeitet: madhan ravi
am 3 Jan. 2019
a=[1 1 1 0 1 0 0 1 0 0 1 0 1 0 1];
Result=sum(reshape(a',5,[]))
Gives:
Result =
4 1 3
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!