Solve system of Linear Equations with Constraints.
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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)?


0 Commenti
Risposta accettata
Matt J
il 12 Nov 2021
Modificato: Matt J
il 12 Nov 2021
[V,e]=eig(P.','vector');
[~,imin]=min(abs(e-1));
piVector=V(:,imin)/sum(V(:,imin));
1 Commento
Matt J
il 12 Nov 2021
Modificato: Matt J
il 12 Nov 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.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Symbolic Math Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!