예제 #1
0
inline bool inv(const mat&A, mat &out){
  out = A.inverse();
  return true;
}
예제 #2
0
inline mat inv(const mat&A){
  return A.inverse();
}