Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to plot touchstone files using matlab (Urgent, please help)

Status
Not open for further replies.

Kabz

Newbie level 1
Joined
Jun 14, 2016
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
9
I am completely new to this. I have a .s2p file, and i need to plot them into a smith chart. there are 10006 values, and i do not know how to do this. Can someone please tell me how to, and give me the code. i need a little bit of coaching as i have never done this before so i need a little guidance. please please help. Thanks in advance!
 

If you have RF Toobox, do the following.
]
Code:
measured_data=read(rfdata.data, 'f150m_a.s2p');

s11_hid = smith(measured_data, 'S11');
set(s11_hid, 'color', 'r', 'LineWidth', 2)
hold on

s22_hid = smith(measured_data, 'S22');
set(s22_hid, 'color', 'b', 'LineWidth', 2)
 

Attachments

  • 160614-222925.png
    160614-222925.png
    14.5 KB · Views: 60
Last edited:

I am completely new to this. I have a .s2p file, and i need to plot them into a smith chart. there are 10006 values, and i do not know how to do this. Can someone please tell me how to, and give me the code. i need a little bit of coaching as i have never done this before so i need a little guidance. please please help. Thanks in advance!

There are many free tools for touchstone/SYZ viewing. Teledyne Lecroy has an excellent viewer SI Studio. It is freeware.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top