MATLAB: How to draw 3d signal

plotting

I want to draw series of signals like this

Best Answer

figure,plot3(1*ones(1,10),1:10,randn(1,10))
hold on,plot3(2*ones(1,10),1:10,randn(1,10))
hold on,plot3(3*ones(1,10),1:10,randn(1,10))
Related Question