i would like to generate a shifted sine in labview . i am already doing it in Matlab and it is very easy there.
how can i do it in labview.the VI for sine generation i would like to use the basic function genertor.
in matlab i use the following code:-
static_preload=4; %kN
amplitude=5; %kN;
frequency=1.5; %Hz
Phi=0;
omega=2*pi*frequency;
t=[0:0.01:10]; %sec
signal=static_preload+amplitude*sin(omega*t+Phi);
plot(t,signal);
xlim([0 5]);
ylim([-10 10]);
grid on
how can i generte the above shifted sine signal in Labview.
Thanks