/* * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab * Copyright (C) 2008 - INRIA - Arnaud TORSET * * This file must be used under the terms of the CeCILL. * This source file is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms * are also available at * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt * */ #include #ifndef WITHOUT_LAPACK #include "lapack.h" #endif #include "determ.h" float sdeterma(float * in, int size){ #ifndef WITHOUT_LAPACK float out; double *inCopy; int* tmp; int info=0,i=0; /*Calculation of the determinant*/ switch (size){ case 2 : out = in[0]*in[3]-in[1]*in[2]; break; case 3 : /*regle de Sarrus*/ out = in[0]*in[4]*in[8]+in[1]*in[5]*in[6]+in[2]*in[3]*in[7] -in[0]*in[5]*in[7]-in[1]*in[3]*in[8]-in[2]*in[4]*in[6]; break; default : /*Copy the input matrix*/ inCopy=(double*)malloc((unsigned int)(size*size)*sizeof(double)); tmp=(int*)malloc((unsigned int)size*sizeof(int)); for (i=0;i