Find the determinant of the input matrix.  
More...
|  | 
| template<typename T > | 
| T | det (const array &in) | 
|  | C++ Interface for finding the determinant of a matrix.  More... 
 | 
|  | 
| AFAPI af_err | af_det (double *det_real, double *det_imag, const af_array in) | 
|  | C Interface for finding the determinant of a matrix.  More... 
 | 
|  | 
Find the determinant of the input matrix. 
- Note
- This function requires scratch space equal to the input array 
 
C Interface for finding the determinant of a matrix. 
- Parameters
- 
  
    | [out] | det_real | will contain the real part of the determinant of in |  | [out] | det_imag | will contain the imaginary part of the determinant of in |  | [in] | in | is input matrix |  
 
 
 
      
        
          | T af::det | ( | const array & | in | ) |  | 
      
 
C++ Interface for finding the determinant of a matrix. 
- Parameters
- 
  
  
- Returns
- the determinant of the matrix