how to express operators in symbolic algebra
4 次查看(过去 30 天)
显示 更早的评论
I want to express an operator, P, which is simply the differential operator. I cannot find how to do this--one failed attempt is shown--any help appreciated
Fritz
==============================================
clear all
syms x
syms P(q), q(x)
q(x)=x^2
P(q) = diff(q(x),1) +5
return
0 个评论
回答(3 个)
Walter Roberson
2023-12-17
MATLAB does not support creating operators: it only supports creating functions and expressions.
For example, P^3 to represent third derivative is not supported by MATLAB.
0 个评论
Paul
2023-12-17
编辑:Paul
2023-12-17
I'm not sure how define a function of a function. But this seems to work, at least for this simple case:
syms x t
syms q(t) v(x) % v is our dummy function
P = diff(v,argnames(v),1) + 5 % "operator" P
q(t) = t^2
P(t) % show what P(t) is
subs(P(argnames(q)),v,q) % subs the dummy function with the actual function
Or, more generally w/o needing to know the symfun buried in P
subs(P(argnames(q)),symfun(findSymType(P,'symfun'),symvar(P)),q) % subs the dummy function
I'm not sure this is the best way.
It can probably be wrapped in cleaner functionality, like
operateon = @(P,q) subs(P(argnames(q)),symfun(findSymType(P,'symfun'),symvar(P)),q); % subs the dummy function
operateon(P,q)
Exending to other operations as defined in Matlab
operateon(2*P,q)
operateon(P^3,q)
6 个评论
Dyuman Joshi
2023-12-22
Also, @Fritz Sonnichsen, if this answer solved your problem, please consider accepting the answer. The general idea is to accept the answer that is most fitting to the question asked.
Accepting an answer indicates that your problem has been solved (which can be helpful to other people in future) and it awards the volunteer with reputation points for helping you.
You can accept only 1 answer for a question, but you can vote for as many answers as you want. Voting an answer also provides reputation points.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Assumptions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!