Can we calculate the roots of polynomials with matrix coefficients?
2 次查看(过去 30 天)
显示 更早的评论
Dear All,
I have a polynomial which has matrix coefficients. For example, I have the following equation:
[1 0;0 1]*[x_1^2; x_2^2] + [2 0;0 2]*[x_1; x_2] + [1 0; 0 1] = [0; 0]
It is obvious that that solution is x_1 = -1; x_2 = -1.
But if the coefficient matrices are general, how can we obtain the solution in Matlab?
Thanks a lot.
Benson
2 个评论
the cyclist
2019-8-30
When you say the coefficient matrices are "general", do you mean that they are not necessarily diagonal?
回答(1 个)
Nikhil Sonavane
2019-9-6
You can use solve function to solve the system of equation in two variables. You may refer to its documentation for more information.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Polynomials 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!