defining linewidth in "rfplot"? Is it possible?
17 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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.
0 comentarios
Respuestas (1)
Walter Roberson
el 21 de Oct. de 2022
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);
Ver también
Categorías
Más información sobre Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!