Sunday 1 October 2017

INTER-RELATIONSHIP BETWEEN VARIOUS MATRICES

In this section,we will be discussing about the relationship between different matrices like incidence matrix(A),Tie-set matrix or Fundamental loop matrix(B) and Cut-set matrix(Q).

A=[At:Al]  where, At means matrix of twigs and Al  means matrix of links
B=[Bt:Bl] where , Bt means matrix of twigs and Bl means matrix of links
                 But for a fundamental loop matrix Bl =U,where U is the identity matrix.
Q=[Qt:Ql] where they have the usual meaning as stated above

RELATIONSHIP BETWEEN INCIDENCE MATRIX A AND FUNDAMENTAL LOOP MATRIX B:
We know that A and B are orthogonal.So
                                                   ABT=0
[At:Al]*BtT =0
              U


So AtBtT+Al=0   or    BtT=At-1Al

Bt= [ -At-1 Al ]T

RELATIONSHIP BETWEEN A AND Q:
AIb = 0     or      QIb = 0
From this relation,we will get
Ql = At-1 Al





No comments:

Post a Comment

Convert a square matrix to Lower and Upper Triangular Matrix

Upper and Lower triangle Matrix Using C program In this program we will be discussing on how to convert a square matrix into correspon...