Prev: Generation of decision trees in Matlab possible ?
Next: how to break a big column matrix into 2d matrix?
From: nor on 12 May 2010 14:27 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 12 May 2010 14:36
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, ...) |