How Can I Plot Matrix each graph individual

3 vues (au cours des 30 derniers jours)
Fatima Ali
Fatima Ali le 27 Avr 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)
  1 commentaire
madhan ravi
madhan ravi le 27 Avr 2019
Perhaps?
for k = 1:size(s,2)
figure
plot(s(:,k))
end

Connectez-vous pour commenter.

Réponses (1)

Star Strider
Star Strider le 27 Avr 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.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by