Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to add a reference horizontal line to an existing plot

1 回表示 (過去 30 日間)
TRISHITA BANERJEE
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

採用された回答

TRISHITA BANERJEE
TRISHITA BANERJEE 2018 年 6 月 11 日
hline = refline([0 -80]); % highlight reference thersold at -80 DB
hline.Color = 'r';

その他の回答 (1 件)

KSSV
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) ;

この質問は閉じられています。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by