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

 채택된 답변

James Tursa
James Tursa 2017년 2월 4일
편집: James Tursa 2017년 2월 4일

1 개 추천

E.g., using your original "a" and "b" functions, simply:
syms x
a(x) + b(x)

추가 답변 (0개)

카테고리

질문:

2017년 2월 4일

댓글:

2017년 2월 4일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by