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

조회 수: 30 (최근 30일)
Jakub Reczek
Jakub Reczek 2019년 5월 28일
답변: Alex Mcaulley 2019년 5월 28일
Hi
I dont know how to change fun = @(x)x(1)*exp(-norm(x)^2) to function x^2+y^2??
Thanks for answers

답변 (1개)

Alex Mcaulley
Alex Mcaulley 2019년 5월 28일
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)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by