How to get the required data points from CST microwave studio?
I have simulated a breast phantom with two antennas (one transmitter and one receiver) in CST microwave studio and now I want to plot the breast tumor images in Matlab using this toolbox. But I can't figure out how can I extract all the data like antenna location, channel name, scan1, and scan2. Can someone please help me by providing any suggestions? I will be really grateful for any of your help.
You will need the antenna locations in a reference frame, if there are X m between the antennas, you can use: locations = [0, 0, 0; 0, X, 0]; for example.
The channel names depend on the transmit and receiving antennas used for each channel: names = [1, 1; 1, 2; 2, 1; 2, 2]; implies that you are using the S11, S12, S21 and S22 signals.
Scan1 should be the signals with the object you are imaging, you will typically need a reference scan without the object for calibration in scan2.