#ifndef INVERSE_H_ #define INVERSE_H_ #include /** * @short Inverts a square matrix *
 * y[,] <- inverse(x[,])
 * 
*/ class Inverse:public Function { public: Inverse (); void evaluate (SArray & value, std::vector const &args) const; Index dim (std::vector const &args) const; bool checkParameterDim (std::vector const &args) const; }; #endif /* INVERSE_H_ */