/* * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab * Copyright (C) 2008-2008 - INRIA - Bruno JOFRET * * 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 * */ /* THIS IS AN AUTOMATICALLY GENERATED FILE : DO NOT EDIT BY HAND. */ #ifndef __INT_OPPLUS_H__ #define __INT_OPPLUS_H__ /* Scalar + Scalar */ #define s0s0OpPluss0(in1,in2) sadds(in1,in2) #define d0d0OpPlusd0(in1,in2) dadds(in1,in2) #define c0c0OpPlusc0(in1,in2) cadds(in1,in2) #define z0z0OpPlusz0(in1,in2) zadds(in1,in2) #define s0c0OpPlusc0(in1,in2) cadds(FloatComplex(in1,0),in2) #define c0s0OpPlusc0(in1,in2) cadds(in1,FloatComplex(in2,0)) #define d0z0OpPlusz0(in1,in2) zadds(DoubleComplex(in1,0),in2) #define z0d0OpPlusz0(in1,in2) zadds(in1,DoubleComplex(in2,0)) /* Matrix + Scalar */ #define s2s0OpPluss2(in1,size,in2,out) {int i=0;\ for (i=0;i "-1" because '\0' of the first string must be removed. */ #define g2g2OpPlusg2(in1,size1,in2,size2,out) {int i = 0, j = 0; \ for(i = 0 ; i < size1[1]-1 ; ++i, ++j) out[j] = in1[i]; \ for(i = 0 ; i < size2[1] ; ++i, ++j) out[j] = in2[i]; \ } #endif /* !__INT_OPPLUS_H__ */