How to plot multiple lines in a 3d graph?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Eduardo Zanella de Arruda
am 23 Jul. 2016
Kommentiert: Eduardo Zanella de Arruda
am 27 Jul. 2016
Suppose I have a matrix 20x7200
So, I have 20 vectors with 7200 samples each. I want to plot a graph that consists of the 20 vectors side by side, with its size and its values.
Does anyone knows how to do it?
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 23 Jul. 2016
Bearbeitet: Image Analyst
am 23 Jul. 2016
plot() won't do them "side by side" but will do them all overlapped on top of the same graph. How about waterfall() or ribbon()? This will put them side-by-side in a 3-D-ish rendering.
Weitere Antworten (1)
Azzi Abdelmalek
am 23 Jul. 2016
Bearbeitet: Azzi Abdelmalek
am 23 Jul. 2016
plot(M')
%Example
M=randi(10,4,20)
plot(M')
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots 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!