Polynomial division by system variable

1 view (last 30 days)
My code is:
syms t b1 b2 real
y = 10*b1*t^2+20*b2*t^2;
ynew = y/t^2
And I get output as:
ynew = (10*b1*t^2 + 20*b2*t^2)/t^2
But instead I want:
ynew = 10*b1 + 20*b2
How can I do this?

Accepted Answer

Torsten
Torsten on 28 Jul 2015
Edited: Azzi Abdelmalek on 28 Jul 2015
Try
simplify(ynew)
Best wishes
Torsten.

More Answers (0)

Categories

Find more on Polynomials 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!