fsurf(X,Y,exp(-2*x.^4+2*x.^2-x.y.^1-y.^2))
i try to plot but the system says:
>> matlabplot
Unrecognized function or variable 'X'.
Error in matlabplot (line 7)
fsurf(X,Y,exp(-2*x.^4+2*x.^2-x.y.^1-y.^2))

 Respuesta aceptada

KSSV
KSSV el 5 de Mayo de 2021
fun = @(x,y) exp(-2*x.^4+2*x.^2-x.*y.^1-y.^2) ;
fsurf(fun)

3 comentarios

Yuemeng Wang
Yuemeng Wang el 5 de Mayo de 2021
omg thank you so much!
Yuemeng Wang
Yuemeng Wang el 5 de Mayo de 2021
do you maybe know how to make the x y a bit amaller? as in not use the default -5~5?
thank you!!!
KSSV
KSSV el 5 de Mayo de 2021
Read about the function fsurf, there is an option to specify the intervel. Also you can generate the same using surf. Read about surf as well.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Preguntada:

el 5 de Mayo de 2021

Comentada:

el 5 de Mayo de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by