How to calculate the highest degree term with its coefficient in this expression with respect to t?
20 views (last 30 days)
Show older comments
syms t x;
expression = ((49*t^2 - 82600*t + 35060000)^(1/2)/550)*x;
0 Comments
Accepted Answer
Star Strider
on 22 Dec 2023
I am not certain that what you want to do is possible.
syms t x;
expression = ((49*t^2 - 82600*t + 35060000)^(1/2)/550)*x;
ts = taylor(expression, t, 'Order',3)
[coef,term] = coeffs(ts)
coef(1)
vpa(coef(1), 7)
term(1)
ps = series(expression, t, 'Order',3)
The Puiseux series expansion produces the same result (as would be expected in this instance).
.
0 Comments
See Also
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

