problem with stairs plot
이전 댓글 표시
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.
답변 (3개)
Daniel Shub
2011년 8월 20일
Is something overloading stairs? Try
which -all stairs
it should give something like: .../toolbox/matlab/specgraph/stairs.m
댓글 수: 2
deborah
2011년 8월 20일
Fangjun Jiang
2011년 8월 20일
What do you see if you do:
x = linspace(-2*pi,2*pi,40);
figure;plot(x,sin(x))
Fangjun Jiang
2011년 8월 20일
0 개 추천
What's wrong? try stairs(1:20,1:20)
댓글 수: 4
deborah
2011년 8월 20일
deborah
2011년 8월 20일
Fangjun Jiang
2011년 8월 20일
try this.
close all
stairs(1:20,1:20);
deborah
2011년 8월 20일
카테고리
도움말 센터 및 File Exchange에서 Labels and Styling에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!