Plot 2 function variables with exp and abs
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
I have to plot this 2 variables function: e^{-|(x,y)|}.
x = sym('x', [2 1]);
f = exp(-abs(x(1),x(2)));
fsurf(f)
set(gca, 'XLim', [-1 1], 'YLim', [-1 1], 'ZLim', [0 2]);
I'm using this code that work perfectly for others 2 variables function but now I have this error:
Error using sym/abs
Too many input arguments.
Error in (line 5)
f = exp(-abs(x(1),x(2)));
What can I do?
3 comentarios
What is
? Is it
?
Michele Guaragno
el 27 de Mzo. de 2022
Michele Guaragno
el 27 de Mzo. de 2022
Respuestas (0)
La pregunta está cerrada.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

