defining linewidth in "rfplot"? Is it possible?

17 ビュー (過去 30 日間)
Md. Imtiaz Kamrul
Md. Imtiaz Kamrul 2022 年 10 月 21 日
コメント済み: Md. Imtiaz Kamrul 2022 年 10 月 21 日
figure;
rfplot(Thru, 1, 1);
When I use this rfplot option to plot directly from .s2p file, I want to specify the linewidth in the code. Is it possible?
I tried several combinations, but none of them worked.

回答 (1 件)

Walter Roberson
Walter Roberson 2022 年 10 月 21 日
If you can do
h = rfplot(Thru, 1, 1);
then you can do
set(h, 'LineWidth', VALUE);
If the call to rfplot() is outside of your control, then you can
h = findobj(gca, 'type', line');
set(h, 'LineWidth', VALUE);
  1 件のコメント
Md. Imtiaz Kamrul
Md. Imtiaz Kamrul 2022 年 10 月 21 日
Hello, Walter Roberson, Thank you so much.

サインインしてコメントする。

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by