i have problem in uses of inline or syms ordes
3 views (last 30 days)
Show older comments
xosro
on 16 May 2015
Commented: Walter Roberson
on 16 May 2015
i want have a variable like x that define on x ,f(x) function,then program does math operators on f(x) and compute the result of this operators for specified x,
for example in During the a code i want define x with syms order and obtain f=x^2+x+1, then compute f(1)^2
0 Comments
Accepted Answer
Walter Roberson
on 16 May 2015
syms x
f = x^2+x+1;
subs(f^2,x,1)
3 Comments
Walter Roberson
on 16 May 2015
The result of a computation with symbolic values is a symbolic value. If you want the closest floating point equivalent, double() the symbolic value. For example,
double(subs(f^2,x,1))
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!