MATLAB: Getting a 3-D Plot to Automatically Rotate

3d plots

Hi guys/gals, I create a 3-D Plot…… So instead of having to manually and continually hit the rotate button, how can I get Matlab to automatically do this for me ??

Best Answer

Use rotate3d 'on':
surf(peaks);
rotate3d('on')
Related Question