Solving unknown matrics to the power 20
% [P] * [TPM]^n* [R]= CR
disp(‘Create an array with seven elements in a single row:’)
disp(‘>> P = [1 0 0 0 0 0 0]’)
p = [1 0 0 0 0 0 0]
disp(‘Create an array with seven elements in a single column:’)
disp(‘>> R = [9; 8; 7; 6; 5; 4; 3]’)
R = [9; 8; 7; 6; 5; 4; 3]
CR = [0.45]
Solve (TPM)^20=CR/ (p*R)
I would like to find the matrics [TPM] with size 7*7? How to do it ?% [P] * [TPM]^n* [R]= CR
disp(‘Create an array with seven elements in a single row:’)
disp(‘>> P = [1 0 0 0 0 0 0]’)
p = [1 0 0 0 0 0 0]
disp(‘Create an array with seven elements in a single column:’)
disp(‘>> R = [9; 8; 7; 6; 5; 4; 3]’)
R = [9; 8; 7; 6; 5; 4; 3]
CR = [0.45]
Solve (TPM)^20=CR/ (p*R)
I would like to find the matrics [TPM] with size 7*7? How to do it ? % [P] * [TPM]^n* [R]= CR
disp(‘Create an array with seven elements in a single row:’)
disp(‘>> P = [1 0 0 0 0 0 0]’)
p = [1 0 0 0 0 0 0]
disp(‘Create an array with seven elements in a single column:’)
disp(‘>> R = [9; 8; 7; 6; 5; 4; 3]’)
R = [9; 8; 7; 6; 5; 4; 3]
CR = [0.45]
Solve (TPM)^20=CR/ (p*R)
I would like to find the matrics [TPM] with size 7*7? How to do it ? matrix, solve, equation, matrix manipulation, matrix array, matrices, matlab, mathematics MATLAB Answers — New Questions