Polynomials in different variables addition.
Afficher commentaires plus anciens
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 commentaires
KSSV
le 13 Avr 2017
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
le 13 Avr 2017
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.
Réponses (0)
Catégories
En savoir plus sur Polynomials dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!