Polynomials in different variables addition.

I wanted to add two or more polynomials with which are functions of different variables like 2x^2+3x+5 and 5y^2+8y+6 in matlab. i just need the answer for optimization purposes. i am aware that the constant part will only add up , but that's all i need. any help would be very much appreciated

댓글 수: 2

Is using symbolic calculation allowed?
syms x y
f1 = 2*x^2+3*x+5 ;
f2 = 5*y^2+8*y+6 ;
f = f1+f2
Guillaume
Guillaume 2017년 4월 13일
And if symbolic is not allowed, then it's not clear what's even being asked.
The sum of two independent functions of independent variables, f(x) and g(y) is ... drumroll ... f(x)+g(y). That f and g are polynomial functions does not matter. There's nothing to simplify.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

도움말 센터File Exchange에서 Polynomials에 대해 자세히 알아보기

질문:

2017년 4월 13일

댓글:

2017년 4월 13일

Community Treasure Hunt

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

Start Hunting!

Translated by