Saturday 29 August 2015

TRANSPOSE OF MATRIX USING MATLAB

TRANSPOSE OF MATRIX: ( DONE USING 3 X 3 MATRIX)  

Matrix transpose means Interchanging Rows and columns

 code:
a = [1 2 3 ;4  5  6 ; 7 8 9] 
b = a'                                             ("  '  "  is used for transposing)
output is
  Screenshot (17)

This is how matrix transposing is done

No comments:

Post a Comment