why won't this plot?
1 回表示 (過去 30 日間)
古いコメントを表示
for i = 1:length(xaxis); if xaxis(i) >0; plot(xaxis(i),yaxis(i)); end
end;
xaxis and yaxis have numbers. I always get a blank plot space
0 件のコメント
採用された回答
Steven Lord
2016 年 10 月 4 日
% Sample data
xaxis = -2*pi:0.1:2*pi;
yaxis = sin(xaxis);
% Determine the points with positive x coordinates and plot them
positiveXAxisMask = xaxis > 0;
plot(xaxis(positiveXAxisMask ), yaxis(positiveXAxisMask ), 'x')
% Let's plot the negative x coordinates as well for illustration
hold on
plot(xaxis(~positiveXAxisMask ), yaxis(~positiveXAxisMask ), 'o')
その他の回答 (3 件)
Massimo Zanetti
2016 年 10 月 4 日
Yes, because you are plotting just on point. Better try this:
plot(xaxis,yaxis)
0 件のコメント
Gareth Thomas
2016 年 10 月 4 日
編集済み: Gareth Thomas
2016 年 10 月 4 日
You need to add the hold on command. Try this:
for i = 1:length(xaxis); hold on;if xaxis(i) >0; plot(xaxis(i),yaxis(i),'x'); end; end;
Notice the 'x' which helps you see it.
0 件のコメント
Gareth Thomas
2016 年 10 月 4 日
for i = 1:length(xaxis); hold on ;if xaxis(i) >0; plot(xaxis(i),yaxis(i),'x'); end; end;
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!