Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

T = [ 0 . 7 5 0 . 3 3 0 . 1 0 ; 0 . 1 0 0 . 5 5 0

T =[0.750.330.10;
0.100.550.02;
0.150.120.88];
x0=[0.440.450.11];
[V,D]= eig(T);
disp('D =');
disp(D);
disp('')
disp('M^k = V*(D.^k)*inv(V)')
disp('D.^k = each element raised to power of k');
disp('As k -> Inf, eigen values in D, other than 1 goes to zero.');
D = zeros(3); D(1,1)=1;
disp('As k -> Inf, D =')
disp(D);
disp('')
disp('V*D*inv(V)=')
M_Inf = V*D/V;
disp(M_Inf);
disp('')
disp('Steady State Vector =');
ssv =[0.35320.10270.5441]';
disp(ssv);

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Inductive Databases And Constraint Based Data Mining

Authors: Saso Dzeroski ,Bart Goethals ,Pance Panov

2010th Edition

1489982175, 978-1489982179

More Books

Students also viewed these Databases questions