STIR  6.3.0
determinant.h
Go to the documentation of this file.
1 //
2 //
3 /*
4  Copyright (C) 2004- 2007, Hammersmith Imanet Ltd
5  This file is part of STIR.
6 
7  SPDX-License-Identifier: Apache-2.0
8 
9  See STIR/LICENSE.txt for details
10 */
11 #ifndef __stir_numerics_determinant_H__
12 #define __stir_numerics_determinant_H__
13 
22 #include "stir/ArrayFwd.h"
23 
24 START_NAMESPACE_STIR
25 
33 template <class elemT>
34 elemT determinant(const Array<2, elemT>& m);
35 
36 END_NAMESPACE_STIR
37 #endif
forward declaration of stir::Array class for multi-dimensional (numeric) arrays
elemT determinant(const Array< 2, elemT > &m)
Compute the determinant of a matrix.
Definition: determinant.cxx:63