From: nor on
Hello,
I have search the MATLAB Newsreader on the topic but found none.
My problem is I have five scores plots of principal components analysis. I want to plot them parallel to each other along the z-axis. I have tried settting up a variable along z-axis and try to place each scores plot at some interval along the variable but to no avail.
I really appreciate any help on this.
Thank you.
From: Walter Roberson on
nor wrote:
> Hello, I have search the MATLAB Newsreader on the topic but found none.
> My problem is I have five scores plots of principal components analysis.
> I want to plot them parallel to each other along the z-axis. I have
> tried settting up a variable along z-axis and try to place each scores
> plot at some interval along the variable but to no avail. I really
> appreciate any help on this. Thank you.

commonx = 1:length(y1); %or as appropriate
plot(commonx, var1, z1, commonx, var2, z2, ...)