diff options
Diffstat (limited to 'src/elementaryFunctions/interfaces/int_acosh.h')
-rw-r--r-- | src/elementaryFunctions/interfaces/int_acosh.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/elementaryFunctions/interfaces/int_acosh.h b/src/elementaryFunctions/interfaces/int_acosh.h index ca0dc53d..51280aa4 100644 --- a/src/elementaryFunctions/interfaces/int_acosh.h +++ b/src/elementaryFunctions/interfaces/int_acosh.h @@ -17,16 +17,24 @@ #define s0acoshs0(in) sacoshs(in) +#define s0acoshc0(in) cacoshs(FloatComplex(in,0)) + #define d0acoshd0(in) dacoshs(in) +#define d0acoshz0(in) zacoshs(DoubleComplex(in,0)) + #define c0acoshc0(in) cacoshs(in) #define z0acoshz0(in) zacoshs(in) #define s2acoshs2(in,size,out) sacosha(in, size[0]*size[1], out) +#define s2acoshc2(in,size,out) cacosha(FloatComplexMatrix(in,0), size[0]*size[1], out) + #define d2acoshd2(in,size,out) dacosha(in, size[0]*size[1], out) +#define d2acoshz2(in,size,out) zacosha(DoubleComplexMatrix(in,0), size[0]*size[1], out) + #define c2acoshc2(in,size,out) cacosha(in, size[0]*size[1], out) #define z2acoshz2(in,size,out) zacosha(in, size[0]*size[1], out) |