필터 지우기
필터 지우기

Inexplicable Symbolic Function problem

조회 수: 1 (최근 30일)
Emiliano Rosso
Emiliano Rosso 2022년 12월 8일
댓글: Walter Roberson 2022년 12월 8일
When I type :
syms xi
syms yi
syms lami
f(xi,yi,lami) = 1/2.*sum(abs((yi-xi).^2)) + lami.*sum(abs(diff(diff(xi))));
I obtain in the workspace the function " f 1x1 symfun "
but when I type in the command line " f ENTER" :
f(xi, yi, lami) =
abs(xi - yi)^2/2
What is this function I never typed and why does it not return an error?
Instead running the default example it works:
syms x y z
f(x,y,z) = 2*y*z*sin(x) + 3*x*sin(z)*cos(y);
>> f
f(x, y, z) =
2*y*z*sin(x) + 3*x*cos(y)*sin(z)
Where's my error ?
Thanks!

채택된 답변

Walter Roberson
Walter Roberson 2022년 12월 8일
편집: Walter Roberson 2022년 12월 8일
xi is not a function. diff(xi) is going to search the expression xi looking for symbolic variables, find xi, and take the derivative with respect to that variable getting 1. diff(1) is 0. So the second term becomes 0.
xi and yi are scalar so the sum() only has the single term so the sum() wrapper can be removed.
The overall calculation becomes what you see.
When you create a symbolic function with that kind of assignment, then internal mechanism is to fully evaluate the right hand side, and then to use symfun() to create a symbolic function with the parameters of the left side.
Defining a symbolic function is not like defining an anonymous function with @. The names on the left do not just act as placeholders for passing values positional. Doing the diff(xi) on the right side immediately evalutes diff(xi) that takes the derivative of scalar xi. It does not just record the sequence of steps and apply the diff to whatever gets passed in later
  댓글 수: 2
Emiliano Rosso
Emiliano Rosso 2022년 12월 8일
Thanks!
You say "Doing the diff(xi) on the right side immediately evalutes diff(xi) that takes the derivative of scalar xi. It does not just record the sequence of steps and apply the diff to whatever gets passed in later".
I only partly understand the reasons but how can I just record the sequence of steps and apply the diff to whatever gets passed in later?
Walter Roberson
Walter Roberson 2022년 12월 8일
use @() anonymous function definition.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by