How do I add multiple files to RF Toolbox
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Jim
el 30 de Oct. de 2013
Comentada: Akila Udage
el 23 de Nov. de 2020
I am trying to plot lab data from a network analyzer. I want to use RF Toolbox. How do I include data from multiple data files on one plot using RF Toolbox
0 comentarios
Respuesta aceptada
Mark
el 31 de Oct. de 2013
Is the lab data in Touchstone file format? If so, then
>> S1 = sparameters(‘file1.s2p’);
>> rfplot(S1)
>> hold on
>> S2 = sparameters(‘file2.s2p’);
>> rfplot(S2)
>> S3 = sparameters(‘file3.s2p’);
>> rfplot(S3)
...
will work.
Best wishes,
Mark
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Visualization and Data Export en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!