Home Forums SYSTEM how to export the data from optisystem to matlab Reply To: how to export the data from optisystem to matlab

#16726
Profile Photo
Ravil
Participant

Joseph, as an example, here is the matlab code which I used for multiple sweeps of pulse generator (with the parameters I defined above)

i = SweepNum;
SignalVector = InputPort1.Sampled.Signal’;
if i == 1
TotalSignal = SignalVector;
else
TotalSignal = horzcat(TotalSignal,SignalVector);
end

If I get the code for your case I’ll let you know. Good luck!

Categories