How do I create a matrix such as a matrix L of the data matrix M as shown below..?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Yuli Hartini
am 2 Jan. 2017
Bearbeitet: Image Analyst
am 2 Jan. 2017
I have matrix M below
M = [1 2 0.2
2 3 0.4
3 4 0.22
4 5 0.1
5 6 0.5]
How do I create a matrix such as a matrix L of the data matrix M as shown below..?
L = [0.2
(0.4+0.2)
(0.22+0.4+0.2)
(0.1+0.22+0.4+0.2)
(0.5+0.1+0.22+0.4+0.2)
]
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 2 Jan. 2017
Try this:
L = cumsum(M(3:3:end))
2 Kommentare
Image Analyst
am 2 Jan. 2017
Bearbeitet: Image Analyst
am 2 Jan. 2017
Right. That's what I had in her original question (a separate discussion thread), which was a 2-D matrix. This question used to be a row vector. Now she changed this one from a row vector to a 2-D matrix and somehow her other question, with the 2-D matrix that I answered exactly like you did, is now gone.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!