How Can I Plot Matrix each graph individual

3 Ansichten (letzte 30 Tage)
Fatima Ali
Fatima Ali am 27 Apr. 2019
Beantwortet: Star Strider am 27 Apr. 2019
I have a matrix and the size ot it > 672528x25 double
and I use these functions:
>> [s,h] = mexSLOAD('A01T.gdf');
//and to plot it I write:
>> plot(s)
--------
the problem that its ploting for me all the graphs in one graoph (combining them), and I want wach graph to be plotted individualy. Can someone help me on that
In the followin picture its show how the graphs are combied together in one plot ---> since I used plot(s)

Antworten (1)

Star Strider
Star Strider am 27 Apr. 2019
If you want to plot them all in one set of axes, try this:
s = 800*(rand(672528,25)-0.5); % Create Matrix
sv = bsxfun(@plus, s, (0:24)*1000); % Add Offset Of 1000 To Each Column
figure
plot(sv)
grid
Experiment to get the result you want.

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!

Translated by