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 Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by