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
by this we can find the determinant of matrix
No comments:
Post a Comment