How do I plot a horizontal line
8 ビュー (過去 30 日間)
古いコメントを表示
s=0.5:0.001:1;
f=yline(0.25);
plot(s,f)
How do I get this to produce a horizontal line at y=0.25 for the interval 0.5 <= s <= 1? Every time I run the script I get a blank graph.
Thanks
0 件のコメント
採用された回答
その他の回答 (1 件)
madhan ravi
2019 年 4 月 9 日
Using plot here is pointless when you can directly:
yline(.25) xlim([.5,1])
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!