Detail of how does AWG on Pico 5442B work

Post any questions you may have about our current range of oscilloscopes
Post Reply
ThongHuynh
User
User
Posts: 3
Joined: Tue May 29, 2018 11:26 am

Detail of how does AWG on Pico 5442B work

Post by ThongHuynh »

dt=5ns. The waveform is denied in a 1D array. In MATLAB code, the waveform should like that:

Code: Select all

dt=5e-9;
wfSize=1000;
t=(0:dt:dt*(wfSize-1));
x=(t-dt*wfSize/2).^2;
plot(t,x);
Is it possible to do this with the AWG on 5442B and how? I have read the api document, but still do not understand how the AWG work. The formula in 4.61.2 is quite strange: it uses deltaPhase and waveform size as variables, but does not refer to values defining the waveform.
-->
I would like to generate a waveform by AWG, not by defining the output freq, but using a defined generator freq, say 200MHz --> dt=5ns. The waveform is denied in a 1D array. In MATLAB code, the waveform should like that:

Code: Select all

dt=5e-9;
wfSize=1000;
t=(0:dt:dt*(wfSize-1));
x=(t-dt*wfSize/2).^2;
plot(t,x);
Is it possible to do this with the AWG on 5442B and how? I have read the api document, but still do not understand how the AWG work. The formula in 4.61.2 is quite strange: it uses deltaPhase and waveform size as variables, but does not refer to values defining the waveform.