MATLAB - 3D Plotting and Visualization
How can you modify the following code to plot two different 3D lines in the same figure?
X = 0:0.1:2*pi; plot3(X, sin(X), cos(X), 'b-'); plot3(X, cos(X), sin(X), 'r--');
