Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How to add a reference horizontal line to an existing plot
1 回表示 (過去 30 日間)
古いコメントを表示
TRISHITA BANERJEE
2018 年 6 月 11 日
閉鎖済み: TRISHITA BANERJEE
2018 年 6 月 13 日
I want to add a reference horizontal line at about -86 db in my plot.How can I do it
0 件のコメント
採用された回答
その他の回答 (1 件)
KSSV
2018 年 6 月 11 日
Check the below demo code:
x = linspace(0,2*pi) ;
y = sin(x) ;
plot(x,y)
% reference line at x = 0.6
xi = linspace(min(x),max(x)) ;
yi = 0.6*ones(size(xi)) ;
hold on
plot(xi,yi) ;
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!