find out dependent variables from an expression
이전 댓글 표시
syms x(t)
y=x^2+2;
symvar(y)
It gives the ans as t.
Desired output is x. How to get the desired output.
Thanks in advance
채택된 답변
추가 답변 (1개)
syms x
y=x^2+2;
symvar(y)
댓글 수: 2
Arpan Laha
2022년 4월 5일
Cris LaPierre
2022년 4월 5일
Then the symvar is t, as you see. symvar returns symbolic variables in an expression. As you have set it up, x and y are symbolic functions, not variables. t is the only symbolic variable.
카테고리
도움말 센터 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!