problem with stairs plot
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello I have just delighted come across 'stairs', which does exactly what I want...except it doesn't.
Even the example given: >> x = linspace(-2*pi,2*pi,40); >> stairs(x,sin(x))
plots me a single straight line between (0,0) and (1,1). (Everything I try gives this plot result)
Any great ideas for the obvious thing I'm doing wrong very gratefully received!
yours, Flummoxed.
0 commentaires
Réponses (3)
Daniel Shub
le 20 Août 2011
Is something overloading stairs? Try
which -all stairs
it should give something like: .../toolbox/matlab/specgraph/stairs.m
2 commentaires
Fangjun Jiang
le 20 Août 2011
What do you see if you do:
x = linspace(-2*pi,2*pi,40);
figure;plot(x,sin(x))
Voir également
Catégories
En savoir plus sur Labels and Styling 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!