Did you try plot3 or scatter3?
If you are looking to simply "plot" the 1000 points where the triplet (x,y,z) represents a point on the plot, you could use either of the functions above.
Example:
X = 1:5;
Y = 6:10;
Z = 11:15;
plot3(X,Y,Z,'o-')
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!