Saturday 29 August 2015

DETERMINANT OF A MATRIX USING MATLAB

determinant of a matrix is used to check the singularity
 singular  if det value is 0
non singular if det value is not zero
it is also used to say about invertibility of a matrix

code for determinant:
a = [ 1 5 7 ; 2 3 4 ; 5 7 3] 
det(a)
The output is

  Screenshot (18)

by this we can find the determinant of matrix

No comments:

Post a Comment