how to declare variable as constant without defining its value
Mostrar comentarios más antiguos
suppose u have two polynomial equations - (a*x^3+b*x^2+c*x+d , a*x^2+b*x+c) and u want to find common roots for the two equations . here u need to find roots in form of a , b , c ,d
CODE
syms x
gcd(a*x^3+b*x^2+c*x+d , a*x^2+b*x+c)
Respuestas (1)
It seems clear that they will only ever have common roots if d=0, in which case the common roots will be,
syms x a b c
solve(a*x^2+b*x+c==0)
Categorías
Más información sobre Number Theory en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
