Solve system of Linear Equations with Constraints.

8 visualizaciones (últimos 30 días)
atharva aalok
atharva aalok el 12 de Nov. de 2021
Editada: Matt J el 12 de Nov. de 2021
I have the following system of equations with a constraint:
n equations with n unknowns
Here are all known. (Its a known n*n matrix of values).
How do I find all the (vector of 's)?

Respuesta aceptada

Matt J
Matt J el 12 de Nov. de 2021
Editada: Matt J el 12 de Nov. de 2021
[V,e]=eig(P.','vector');
[~,imin]=min(abs(e-1));
piVector=V(:,imin)/sum(V(:,imin));
  1 comentario
Matt J
Matt J el 12 de Nov. de 2021
Editada: Matt J el 12 de Nov. de 2021
@atharva aalok Though you haven't mentioned it, I'm assuming P is a stochastic matrix. Otherwise, there is no guarantee the equations have a solution.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by