00001 /******************************************************* 00002 * 00003 * Author: Shinsaku Hiura, Hirokazu Kato 00004 * 00005 * shinsaku@sys.es.osaka-u.ac.jp 00006 * kato@sys.im.hiroshima-cu.ac.jp 00007 * 00008 * Revision: 2.1 00009 * Date: 99/07/16 00010 * 00011 *******************************************************/ 00012 #include <stdio.h> 00013 #include <math.h> 00014 #include <AR/matrix.h> 00015 00016 int arMatrixInv(ARMat *dest, ARMat *source) 00017 { 00018 if(arMatrixDup(dest, source) < 0) return -1; 00019 00020 return arMatrixSelfInv(dest); 00021 }