How to change this function fun = @(x)x(1)*exp(-norm(x)^2) to x^2+y^2?
조회 수: 30 (최근 30일)
이전 댓글 표시
Hi
I dont know how to change fun = @(x)x(1)*exp(-norm(x)^2) to function x^2+y^2??
Thanks for answers
댓글 수: 0
답변 (1개)
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)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!