MATLAB/Cookbook/plot3D
< MATLAB < CookbookThis makes a color contour plot:
Out of all the student contributions, this was the best and also took the least amount of time [X,Y] = meshgrid(0:0.01:1,0:0.01:1); Z = X.^2 + 2*Y.^2; figure surface(X,Y,Z)
This article is issued from Wikiversity - version of the Tuesday, April 14, 2015. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.