comparison libinterp/corefcn/xpow.h @ 31606:dfa5d9c3ae72

maint: merge stable to default
author Rik <rik@octave.org>
date Thu, 01 Dec 2022 14:28:07 -0800
parents 0f968958d7d5 e88a07dec498
children 5f11de0e7440
comparison
equal deleted inserted replaced
31604:9ecc95d840ca 31606:dfa5d9c3ae72
43 class FloatNDArray; 43 class FloatNDArray;
44 class ComplexNDArray; 44 class ComplexNDArray;
45 class FloatComplexNDArray; 45 class FloatComplexNDArray;
46 class octave_value; 46 class octave_value;
47 47
48 OCTAVE_NAMESPACE_BEGIN 48 OCTAVE_BEGIN_NAMESPACE(octave)
49 49
50 extern OCTINTERP_API octave_value xpow (double a, double b); 50 extern OCTINTERP_API octave_value xpow (double a, double b);
51 extern OCTINTERP_API octave_value xpow (double a, const Matrix& b); 51 extern OCTINTERP_API octave_value xpow (double a, const Matrix& b);
52 extern OCTINTERP_API octave_value xpow (double a, const Complex& b); 52 extern OCTINTERP_API octave_value xpow (double a, const Complex& b);
53 extern OCTINTERP_API octave_value xpow (double a, const ComplexMatrix& b); 53 extern OCTINTERP_API octave_value xpow (double a, const ComplexMatrix& b);
204 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexNDArray& a, 204 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexNDArray& a,
205 const FloatComplex& b); 205 const FloatComplex& b);
206 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexNDArray& a, 206 extern OCTINTERP_API octave_value elem_xpow (const FloatComplexNDArray& a,
207 const FloatComplexNDArray& b); 207 const FloatComplexNDArray& b);
208 208
209 OCTAVE_NAMESPACE_END 209 OCTAVE_END_NAMESPACE(octave)
210 210
211 #endif 211 #endif