2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2011 - Scilab Enterprises - Adeline CARNIS
5 * This file must be used under the terms of the CeCILL.
6 * This source file is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at
9 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
12 /*--------------------------------------------------------------------------*/
13 #ifndef __RTIMESRprime_H__
14 #define __RTIMESRprime_H__
15 #include "doublecomplex.h"
32 void RtimesRprime(double* result, double* R, double* Rprime, int N);
43 void invR_times_A_times_invRprime(double* result, double* R, double* A, double* Rprime, int N);
54 void invU_times_invL_times_E(double* result, double* U, double* L, double* E, int N);
64 void RCtimesRCprime(doublecomplex* result, doublecomplex* R, doublecomplex* Rprime, int N);
75 void invRC_times_AC_times_invRCprime(doublecomplex* result, doublecomplex* R, doublecomplex* A, doublecomplex* Rprime, int N);
86 void invUC_times_invLC_times_EC(doublecomplex* result, doublecomplex* U, doublecomplex* L, doublecomplex* E, int N);
88 #endif /* __RTIMESRprime_H__ */
89 /*--------------------------------------------------------------------------*/