How to change this function fun = @(x)x(1)*exp(-norm(x)^2) to x^2+y^2?

30 visualizaciones (últimos 30 días)
Jakub Reczek
Jakub Reczek el 28 de Mayo de 2019
Respondida: Alex Mcaulley el 28 de Mayo de 2019
Hi
I dont know how to change fun = @(x)x(1)*exp(-norm(x)^2) to function x^2+y^2??
Thanks for answers

Respuestas (1)

Alex Mcaulley
Alex Mcaulley el 28 de Mayo de 2019
fun = @(x) (x(1)^2 + x(2)^2) %x(1) is x and x(2) is y
%or
fun = @(x,y) (x^2 + y^2)

Categorías

Más información sobre Startup and Shutdown 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