How Can I define a Polynomial of degree n with symbolic coefficients?
    8 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
Hi guys, How can I define a polynomial of degree n with symbolic coefficients. For example, if n=2, P= ax*2+bx+c
Thanks
0 commentaires
Réponse acceptée
  John D'Errico
      
      
 le 25 Fév 2014
        
      Modifié(e) : John D'Errico
      
      
 le 25 Fév 2014
  
      Whats the problem? This seems clear.
syms x a b c
P = a*x^2+b*x+c;
Are you looking for a general solution for any n? This seems to work:
n = 3;
syms x
P = sym('a',[1,n+1])*x.^(n:-1:0).'
P = 
  a1*x^3 + a2*x^2 + a3*x + a4
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Polynomials dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!