Mercurial > hgweb > octave
view liboctave/array/Array-fC.cc @ 34642:954358d9ce6f
maint: Rename "lo-mappers.[h|cc]" to "mappers.[h|cc]"
Add new files with old name that issue cpp warning during compilation if used
that points to new files. Update .cc files to use new names and
sort #includes.
* mappers.cc, mappers.h: New files in Mercurial without "lo-" prefix.
* liboctave/numeric/module.mk: Add new files names to build system.
* lo-mappers.h: Old file is now shell with #warning for compilation and
#include of relevant header file.
* lo-mappers.cc: Deleted.
* make_int.cc, bsxfun.cc, cellfun.cc, colloc.cc, dasrt.cc, fft.cc, fft2.cc,
fftn.cc, gcd.cc, gl-render.cc, gl2ps-print.cc, load-save.cc, ls-hdf5.cc,
ls-mat-ascii.cc, ls-mat4.cc, ls-mat5.cc, ls-oct-binary.cc, ls-oct-text.cc,
lsode.cc, mappers.cc, max.cc, oct-hist.cc, oct-procbuf.cc, oct-stream.cc,
pr-output.cc, quad.cc, rand.cc, sqrtm.cc, sysdep.cc, url-handle-manager.h,
utils.cc, ov-base-scalar.h, ov-base.cc, ov-class.cc, ov-complex.cc,
ov-cx-mat.cc, ov-cx-sparse.cc, ov-float.cc, ov-float.h, ov-flt-complex.cc,
ov-flt-cx-mat.cc, ov-flt-re-mat.cc, ov-legacy-range.h, ov-magic-int.cc,
ov-range.h, ov-re-mat.cc, ov-re-sparse.cc, ov-scalar.cc, ov-scalar.h, lex.ll,
Array-C.cc, Array-base.cc, Array-d.cc, Array-f.cc, Array-fC.cc, CMatrix.cc,
CNDArray.cc, CSparse.cc, Range.cc, Sparse-C.cc, Sparse-d.cc, boolSparse.cc,
chNDArray.cc, dMatrix.cc, dNDArray.cc, dSparse.cc, fCMatrix.cc, fCNDArray.cc,
fMatrix.cc, fNDArray.cc, idx-vector.cc, CollocWt.cc, DET.h, lo-specfun.cc,
oct-norm.cc, oct-rand.cc, randgamma.cc, randpoisson.cc, sparse-lu.cc,
lo-utils.cc, oct-inttypes.h, oct-sort.cc, oct-string.cc: Alphabetize list of
#includes.
author | Rik <rik@octave.org> |
---|---|
date | Fri, 13 Jun 2025 17:33:42 -0700 |
parents | f173757807b0 |
children |
line wrap: on
line source
//////////////////////////////////////////////////////////////////////// // // Copyright (C) 1994-2025 The Octave Project Developers // // See the file COPYRIGHT.md in the top-level directory of this // distribution or <https://octave.org/copyright/>. // // This file is part of Octave. // // Octave is free software: you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Octave is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Octave; see the file COPYING. If not, see // <https://www.gnu.org/licenses/>. // //////////////////////////////////////////////////////////////////////// #if defined (HAVE_CONFIG_H) # include "config.h" #endif // Instantiate Arrays of FloatComplex values. #include "mappers.h" #include "oct-cmplx.h" #define OCTAVE_EXTERN_TEMPLATE_ARRAY #include "Array-oct.h" // Prevent implicit instantiations on some systems (Windows, others?) // that can lead to duplicate definitions of static data members. extern template class OCTAVE_EXTERN_TEMPLATE_API Array<octave::idx_vector>; extern template class Array<octave_idx_type>; #include "Array-base.cc" #include "oct-sort.cc" template <> inline bool sort_isnan<FloatComplex> (const FloatComplex& x) { return octave::math::isnan (x); } // Sort Criteria: 1) isnan, 2) magnitude of z, 3) phase of z in range (-pi, pi] static bool nan_ascending_compare (const FloatComplex& x, const FloatComplex& y) { return octave::math::isnan (y) ? ! octave::math::isnan (x) : x < y; } static bool nan_descending_compare (const FloatComplex& x, const FloatComplex& y) { return octave::math::isnan (x) ? ! octave::math::isnan (y) : x > y; } Array<FloatComplex>::compare_fcn_type safe_comparator (sortmode mode, const Array<FloatComplex>& a, bool allow_chk) { Array<FloatComplex>::compare_fcn_type result = nullptr; if (allow_chk) { octave_idx_type k = 0; for (; k < a.numel () && ! octave::math::isnan (a(k)); k++) ; if (k == a.numel ()) { if (mode == ASCENDING) result = octave_sort<FloatComplex>::ascending_compare; else if (mode == DESCENDING) result = octave_sort<FloatComplex>::descending_compare; } } if (! result) { if (mode == ASCENDING) result = nan_ascending_compare; else if (mode == DESCENDING) result = nan_descending_compare; } return result; } template class octave_sort<FloatComplex>; INSTANTIATE_ARRAY (FloatComplex, OCTAVE_CLASS_TEMPLATE_INSTANTIATION_API); template OCTAVE_API std::ostream& operator << (std::ostream&, const Array<FloatComplex>&); #include "DiagArray2.h" #include "DiagArray2.cc" template class DiagArray2<FloatComplex>;