Is the z-axis in a Sphere only positive?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
민제 강
el 5 de Sept. de 2022
Comentada: Chunru
el 5 de Sept. de 2022
[X, Y, Z] = sphere(10);
Points = [X(:), Y(:), Z(:)].';
plot3(Points(1,:), Points(2,:), Points(3,:), 'x');
I want to get points by representing only the positive z-axis.
0 comentarios
Respuesta aceptada
Chunru
el 5 de Sept. de 2022
Editada: Chunru
el 5 de Sept. de 2022
No. It consists of both positive and negative parts.
[X, Y, Z] = sphere(100);
Points = [X(:), Y(:), Z(:)].';
%plot3(Points(1,:), Points(2,:), Points(3,:), 'x');
surf(X, Y, Z)
whos
figure
idx = 51:101;
surf(X(idx, :), Y(idx, :), Z(idx, :))
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Surface and Mesh Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!