Borrar filtros
Borrar filtros

[X,Y,Z] = cylinder(r) function explanation

4 visualizaciones (últimos 30 días)
sgspark
sgspark el 9 de Ag. de 2017
Respondida: Manuel Cornejo Muñoz el 22 de Oct. de 2019
What does the [X,Y,Z]=cylinder(r) function do for a given variable r intuitively? The explanation on the function page isn't very clear, I'm not sure what they mean by a profile curve. And further, what would doing, say, mesh(X) produce?

Respuesta aceptada

John D'Errico
John D'Errico el 9 de Ag. de 2017
Editada: John D'Errico el 9 de Ag. de 2017
Why not try it?
r = linspace(1,5,25);
[X,Y,Z]=cylinder(r);
surf(X,Y,Z)
I won't show you the plot, because you need to try these things! Look at what came out. Think about what went in. If you never try things in MATLAB you will never learn anything.
Now try the same test, but with
r = ones(10,1);
...
Does this look like a more traditional cylinder?
Now, what would you expect to see for this case:
r = sqrt(linspace(0,10,100));
...
Is there a name for that general class of surface? What do all of these surfaces tell you about the behavior of the cylinder function? Now go back and re-read the help.
  1 comentario
Vivek Puduri
Vivek Puduri el 15 de Oct. de 2019
this is great! I'm able to use this code to change the base and top radius, however how would I change the height of the cylinder past 1?

Iniciar sesión para comentar.

Más respuestas (1)

Manuel Cornejo Muñoz
Manuel Cornejo Muñoz el 22 de Oct. de 2019
But the example that provides Mathworks in Getting Started is not so obvious. Take a look at subplot z. You see:
t = 0:pi/10:2*pi;
[X,Y,Z] = cylinder(4*cos(t));
subplot(2,2,1); mesh(X); title('X');
subplot(2,2,2); mesh(Y); title('Y');
subplot(2,2,3); mesh(Z); title('Z');
subplot(2,2,4); mesh(X,Y,Z); title('X,Y,Z');

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by