Clear Filters
Clear Filters

Adapting a paraboloid code

14 views (last 30 days)
Jonathan Bird
Jonathan Bird on 12 Apr 2018
Commented: Walter Roberson on 12 Apr 2018
I found the following code to plot a paraboloid but now I need to adapt it to change the base radius and height, thanks
[r,the]=meshgrid([0:0.1:5],[0:pi/10:2*pi]);
x1=r.*cos(the);
y1=r.*sin(the);
z1=x1.^2+y1.^2;
surf(x1,y1,z1)
  1 Comment
Walter Roberson
Walter Roberson on 12 Apr 2018
The radii are the [0:0.1:5] values in the meshgrid()

Sign in to comment.

Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!