Adding two polynomial(anonymous)
20 views (last 30 days)
Show older comments
How do I add two anonymous function to define the polynomials.
a=@(x) x.^3 + 6*x.^2 + 11*x +6;
>> b=@(x) x.^2 - 2*x +1;
>> syms a, syms b
>> a+b
ans=
a + b
0 Comments
Accepted Answer
James Tursa
on 4 Feb 2017
Edited: James Tursa
on 4 Feb 2017
E.g., using your original "a" and "b" functions, simply:
syms x
a(x) + b(x)
More Answers (0)
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!