diff liboctave/numeric/eigs-base.h @ 30898:51a3d3a69193

maint: Use "fcn" as preferred abbreviation for "function" in liboctave/. * DAEFunc.h, DASPK.cc, DASSL.cc, LSODE.cc, ODEFunc.h, eigs-base.cc, eigs-base.h, oct-norm.cc, mx-inlines.cc: Replace "func", "fun" in documentation and variable names with "fcn".
author Rik <rik@octave.org>
date Tue, 05 Apr 2022 13:20:48 -0700
parents 796f54d4ddbf
children
line wrap: on
line diff
--- a/liboctave/numeric/eigs-base.h	Tue Apr 05 08:55:38 2022 -0700
+++ b/liboctave/numeric/eigs-base.h	Tue Apr 05 13:20:48 2022 -0700
@@ -64,7 +64,7 @@
 
 template <typename M>
 OCTAVE_API octave_idx_type
-EigsRealSymmetricFunc (EigsFunc fun, octave_idx_type n,
+EigsRealSymmetricFunc (EigsFunc fcn, octave_idx_type n,
                        const std::string& _typ, double sigma,
                        octave_idx_type k, octave_idx_type p,
                        octave_idx_type& info, Matrix& eig_vec,
@@ -96,7 +96,7 @@
 
 template <typename M>
 OCTAVE_API octave_idx_type
-EigsRealNonSymmetricFunc (EigsFunc fun, octave_idx_type n,
+EigsRealNonSymmetricFunc (EigsFunc fcn, octave_idx_type n,
                           const std::string& _typ, double sigmar,
                           octave_idx_type k, octave_idx_type p,
                           octave_idx_type& info, ComplexMatrix& eig_vec,
@@ -130,7 +130,7 @@
 
 template <typename M>
 OCTAVE_API octave_idx_type
-EigsComplexNonSymmetricFunc (EigsComplexFunc fun, octave_idx_type n,
+EigsComplexNonSymmetricFunc (EigsComplexFunc fcn, octave_idx_type n,
                              const std::string& _typ, Complex sigma,
                              octave_idx_type k, octave_idx_type p,
                              octave_idx_type& info, ComplexMatrix& eig_vec,