Rincón Matemático
Matemática => Matemática Discreta y Algoritmos => Métodos Numéricos => Mensaje iniciado por: Bobby Fischer en 15 Noviembre, 2019, 01:13 pm
-
Hola,
¿Cómo hacer que la gráfica sea continua?
\( f(x,y)=(1-x^6-y^6)^{\frac{1}{6}} \) (naranja)
\( g(x,y)=-(1-x^6-y^6)^{\frac{1}{6}} \) (azul)
(Mathematica)
(https://foro.rinconmatematico.com/index.php?action=dlattach;topic=111222.0;attach=21431)
-
Hola
Por ejemplo algo así:
A = ContourPlot3D[x^6 + y^6 + z^6 == 1, {x, -1, 1}, {y, -1, 1}, {z, 0, 1}, ContourStyle -> Directive[Glow[Red]]]
B = ContourPlot3D[x^6 + y^6 + z^6 == 1, {x, -1, 1}, {y, -1, 1}, {z, -1, 0},ContourStyle -> Directive[Glow[Blue]]]
Show[A, B, PlotRange -> {{-1, 1}, {-1, 1}, {-1, 1}}]
obteniendo:
(https://foro.rinconmatematico.com/index.php?action=dlattach;topic=111222.0;attach=21432)
Saludos.
-
Gracias,
Saludos.