Solving a cubic equation

7 visualizaciones (últimos 30 días)
Inbanathan Govender
Inbanathan Govender el 18 de Dic. de 2013
Respondida: John D'Errico el 18 de Dic. de 2013
Hi,
I have the following equation to solve
Z^3 - (1-B)Z^2 + Z(A-3B-2B^2) - (AB-B^2-B^3)
A and B are vectors. Can the solve function be used to output the roots in an nx3 matrix?

Respuestas (2)

Matt J
Matt J el 18 de Dic. de 2013
Editada: Matt J el 18 de Dic. de 2013
I would just use ROOTS in a loop.

John D'Errico
John D'Errico el 18 de Dic. de 2013
As Matt says, roots in a loop will work. Often the simplest is best, as why expend programming time on something so simple.
If you really want it to be vectorized, you COULD convert the array into a cell array. The use cellfun, with @roots to solve all the problems at once.
If you REALLY want it vectorized and fast as blazes, then since this is a cubic polynomial, use the classic solution for the roots of a cubic given the coefficients. That formula can be used in a vectorized form. Trivial really. This is in fact what we did when we had to solve that same problem, and we wanted pure speed.

Categorías

Más información sobre Mathematics en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by