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

maint: merge stable to default
author Rik <rik@octave.org>
date Thu, 01 Dec 2022 14:28:07 -0800
parents 903fac22b29d e88a07dec498
children 5f11de0e7440
comparison
equal deleted inserted replaced
31604:9ecc95d840ca 31606:dfa5d9c3ae72
32 32
33 class SparseMatrix; 33 class SparseMatrix;
34 class SparseComplexMatrix; 34 class SparseComplexMatrix;
35 class octave_value; 35 class octave_value;
36 36
37 OCTAVE_NAMESPACE_BEGIN 37 OCTAVE_BEGIN_NAMESPACE(octave)
38 38
39 extern octave_value xpow (const SparseMatrix& a, double b); 39 extern octave_value xpow (const SparseMatrix& a, double b);
40 extern octave_value xpow (const SparseComplexMatrix& a, double b); 40 extern octave_value xpow (const SparseComplexMatrix& a, double b);
41 41
42 extern octave_value elem_xpow (double a, const SparseMatrix& b); 42 extern octave_value elem_xpow (double a, const SparseMatrix& b);
58 extern octave_value elem_xpow (const SparseComplexMatrix& a, 58 extern octave_value elem_xpow (const SparseComplexMatrix& a,
59 const Complex& b); 59 const Complex& b);
60 extern octave_value elem_xpow (const SparseComplexMatrix& a, 60 extern octave_value elem_xpow (const SparseComplexMatrix& a,
61 const SparseComplexMatrix& b); 61 const SparseComplexMatrix& b);
62 62
63 OCTAVE_NAMESPACE_END 63 OCTAVE_END_NAMESPACE(octave)
64 64
65 #endif 65 #endif