how to get Zm

3 views (last 30 days)
ravi teja
ravi teja on 12 Oct 2021
Commented: KSSV on 12 Oct 2021
syms Km Zm Ym [2 2]
syms Z R S L
Z=R+S*L
Km=[1 Z; 0 1]
Zm
% Relation between Km and Zm
Zm1_1=(Km1_1/Km2_1)
Zm1_2=(det(Km)/Km2_1)
Zm2_1=(1/Km2_1)
Zm2_2=(Km2_2/Km2_1)
  1 Comment
ravi teja
ravi teja on 12 Oct 2021
Zm result in matrix form. which command should be used?

Sign in to comment.

Accepted Answer

KSSV
KSSV on 12 Oct 2021
syms Km Zm Ym [2 2]
syms Z R S L
Z=R+S*L ;
Km=[1 Z; 0 1] ;
Zm = sym('Zm',[2 2]) ;
% Relation between Km and Zm
Zm(1,1)=(Km1_1/Km2_1) ;
Zm(1,2)=(det(Km)/Km2_1) ;
Zm(2,1)=(1/Km2_1) ;
Zm(2,2)=(Km2_2/Km2_1) ;
Zm
Zm = 
  2 Comments
ravi teja
ravi teja on 12 Oct 2021
thankyou for the answer but i need the Zm matrix with final result performing the calculations. that is Zm is infinite matrix
KSSV
KSSV on 12 Oct 2021
syms Km Zm Ym [2 2]
syms Z R S L
Z=R+S*L ;
Km=[1 Z; 0 1] ;
Zm = sym('Zm',[2 2]) ;
% Relation between Km and Zm
for i = 1:2
for j = 1:2
Zm(i,j) = Km(i,j)/Km(2,1) ;
end
end

Sign in to comment.

More Answers (0)

Tags

Products

Community Treasure Hunt

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

Start Hunting!