From 7242612984d527256fbe448af9468f4d6e51bfcd Mon Sep 17 00:00:00 2001 From: David Pilger Date: Wed, 26 Nov 2025 11:04:54 -0700 Subject: [PATCH 1/5] fixed Issue #144, outer function now operates on arrays of different sizes --- docs/markdown/Building.md | 4 +-- docs/markdown/ReleaseNotes.md | 4 +++ include/NumCpp/Core/Internal/Version.hpp | 2 +- include/NumCpp/Functions/outer.hpp | 12 +++---- test/pytest/test_functions.py | 40 +++++++++++++++--------- 5 files changed, 37 insertions(+), 25 deletions(-) diff --git a/docs/markdown/Building.md b/docs/markdown/Building.md index 4390f2a5c..0d43ad450 100644 --- a/docs/markdown/Building.md +++ b/docs/markdown/Building.md @@ -32,7 +32,7 @@ project("HelloWorld" CXX) add_executable(${PROJECT_NAME} main.cpp) -find_package(NumCpp 2.14.2 REQUIRED) +find_package(NumCpp 2.15.1 REQUIRED) target_link_libraries(${PROJECT_NAME} NumCpp::NumCpp ) @@ -50,7 +50,7 @@ add_executable(${PROJECT_NAME} main.cpp) include(FetchContent) FetchContent_Declare(NumCpp GIT_REPOSITORY https://github.com/dpilger26/NumCpp - GIT_TAG Version_2.14.2) + GIT_TAG Version_2.15.1) FetchContent_MakeAvailable(NumCpp) target_link_libraries(${PROJECT_NAME} diff --git a/docs/markdown/ReleaseNotes.md b/docs/markdown/ReleaseNotes.md index e040ab04a..7a1081859 100644 --- a/docs/markdown/ReleaseNotes.md +++ b/docs/markdown/ReleaseNotes.md @@ -1,5 +1,9 @@ # Release Notes +## Version 2.15.1 + +* fixed Issue #144, `outer` function now operates on arrays of different sizes + ## Version 2.15.0 * added `fft` module for **Issue #137** diff --git a/include/NumCpp/Core/Internal/Version.hpp b/include/NumCpp/Core/Internal/Version.hpp index 016163845..1184c3698 100644 --- a/include/NumCpp/Core/Internal/Version.hpp +++ b/include/NumCpp/Core/Internal/Version.hpp @@ -30,5 +30,5 @@ namespace nc { // NOLINTNEXTLINE(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays) - constexpr char VERSION[] = "2.14.2"; ///< Current NumCpp version number + constexpr char VERSION[] = "2.15.1"; ///< Current NumCpp version number } // namespace nc diff --git a/include/NumCpp/Functions/outer.hpp b/include/NumCpp/Functions/outer.hpp index a38a5ff1a..cbd0fa20f 100644 --- a/include/NumCpp/Functions/outer.hpp +++ b/include/NumCpp/Functions/outer.hpp @@ -51,15 +51,11 @@ namespace nc { STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype); - const auto size = inArray1.size(); + const auto size1 = inArray1.size(); + const auto size2 = inArray2.size(); - if (size != inArray2.size()) - { - THROW_INVALID_ARGUMENT_ERROR("Input arrays must be the same length"); - } - - auto returnArray = NdArray(size); - for (uint32 row = 0; row < size; ++row) + auto returnArray = NdArray(size1, size2); + for (uint32 row = 0; row < size1; ++row) { const auto array1Value = inArray1[row]; diff --git a/test/pytest/test_functions.py b/test/pytest/test_functions.py index de865a78d..78fe5ea63 100644 --- a/test/pytest/test_functions.py +++ b/test/pytest/test_functions.py @@ -12858,37 +12858,49 @@ def test_ones_like(): #################################################################################### def test_outer(): - size = np.random.randint( + size1 = np.random.randint( 1, 100, [ 1, ], ).item() - shape = NumCpp.Shape(1, size) - cArray1 = NumCpp.NdArray(shape) - cArray2 = NumCpp.NdArray(shape) - data1 = np.random.randint(1, 50, [shape.rows, shape.cols], dtype=np.uint32) - data2 = np.random.randint(1, 50, [shape.rows, shape.cols], dtype=np.uint32) + size2 = np.random.randint( + 1, + 100, + [ + 1, + ], + ).item() + cArray1 = NumCpp.NdArray(NumCpp.Shape(1, size1)) + cArray2 = NumCpp.NdArray(NumCpp.Shape(1, size2)) + data1 = np.random.randint(1, 50, size1, dtype=np.uint32) + data2 = np.random.randint(1, 50, size2, dtype=np.uint32) cArray1.setArray(data1) cArray2.setArray(data2) assert np.array_equal(NumCpp.outer(cArray1, cArray2), np.outer(data1, data2)) - size = np.random.randint( + size1= np.random.randint( 1, 100, [ 1, ], ).item() - shape = NumCpp.Shape(1, size) - cArray1 = NumCpp.NdArrayComplexDouble(shape) - cArray2 = NumCpp.NdArrayComplexDouble(shape) - real1 = np.random.randint(1, 50, [shape.rows, shape.cols]) - imag1 = np.random.randint(1, 50, [shape.rows, shape.cols]) + size2 = np.random.randint( + 1, + 100, + [ + 1, + ], + ).item() + cArray1 = NumCpp.NdArrayComplexDouble(NumCpp.Shape(1, size1)) + cArray2 = NumCpp.NdArrayComplexDouble(NumCpp.Shape(1, size2)) + real1 = np.random.randint(1, 50, size1) + imag1 = np.random.randint(1, 50, size1) data1 = real1 + 1j * imag1 - real2 = np.random.randint(1, 50, [shape.rows, shape.cols]) - imag2 = np.random.randint(1, 50, [shape.rows, shape.cols]) + real2 = np.random.randint(1, 50, size2) + imag2 = np.random.randint(1, 50, size2) data2 = real2 + 1j * imag2 cArray1.setArray(data1) cArray2.setArray(data2) From 83c0761b12d47ec9b5d2dbbf97dad889820d0d19 Mon Sep 17 00:00:00 2001 From: David Pilger Date: Thu, 27 Nov 2025 22:10:46 -0700 Subject: [PATCH 2/5] added eig() and eigvalues() functions for real symmetric matrices --- docs/markdown/ReleaseNotes.md | 6 +- include/NumCpp/Linalg.hpp | 2 + include/NumCpp/Linalg/eig.hpp | 153 ++++++++++++++++++++++++++++++ include/NumCpp/Linalg/eigvals.hpp | 58 +++++++++++ test/pytest/src/Linalg.cpp | 22 ++++- test/pytest/test_linalg.py | 32 +++++++ 6 files changed, 270 insertions(+), 3 deletions(-) create mode 100644 include/NumCpp/Linalg/eig.hpp create mode 100644 include/NumCpp/Linalg/eigvals.hpp diff --git a/docs/markdown/ReleaseNotes.md b/docs/markdown/ReleaseNotes.md index 7a1081859..afb206197 100644 --- a/docs/markdown/ReleaseNotes.md +++ b/docs/markdown/ReleaseNotes.md @@ -2,7 +2,11 @@ ## Version 2.15.1 -* fixed Issue #144, `outer` function now operates on arrays of different sizes +* fixed **Issue #144**, `outer` function now operates on arrays of different sizes +* added `eig()` for **Issue #143** + * unlike NumPy, the NumCpp implementation is only suitable for real symmetric matrices +* added `eigvals()` for **Issue #143** + * unlike NumPy, the NumCpp implementation is only suitable for real symmetric matrices ## Version 2.15.0 diff --git a/include/NumCpp/Linalg.hpp b/include/NumCpp/Linalg.hpp index e030578a7..96ea4ef1a 100644 --- a/include/NumCpp/Linalg.hpp +++ b/include/NumCpp/Linalg.hpp @@ -29,6 +29,8 @@ #include "NumCpp/Linalg/cholesky.hpp" #include "NumCpp/Linalg/det.hpp" +#include "NumCpp/Linalg/eig.hpp" +#include "NumCpp/Linalg/eigvals.hpp" #include "NumCpp/Linalg/gaussNewtonNlls.hpp" #include "NumCpp/Linalg/hat.hpp" #include "NumCpp/Linalg/inv.hpp" diff --git a/include/NumCpp/Linalg/eig.hpp b/include/NumCpp/Linalg/eig.hpp new file mode 100644 index 000000000..dd250b224 --- /dev/null +++ b/include/NumCpp/Linalg/eig.hpp @@ -0,0 +1,153 @@ +/// @file +/// @author David Pilger +/// [GitHub Repository](https://github.com/dpilger26/NumCpp) +/// +/// License +/// Copyright 2018-2026 David Pilger +/// +/// Permission is hereby granted, free of charge, to any person obtaining a copy of this +/// software and associated documentation files(the "Software"), to deal in the Software +/// without restriction, including without limitation the rights to use, copy, modify, +/// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to +/// permit persons to whom the Software is furnished to do so, subject to the following +/// conditions : +/// +/// The above copyright notice and this permission notice shall be included in all copies +/// or substantial portions of the Software. +/// +/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +/// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +/// PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE +/// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +/// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +/// DEALINGS IN THE SOFTWARE. +/// +/// Description +/// linear least squares +/// +#pragma once + +#include + +#include "NumCpp/Core/Internal/StaticAsserts.hpp" +#include "NumCpp/Functions/eye.hpp" +#include "NumCpp/NdArray.hpp" +#include "NumCpp/Utils/sqr.hpp" + +namespace nc::linalg +{ + //============================================================================ + // Method Description: + /// Compute the eigen values and eigen vectors of a real symmetric matrix. + /// + /// NumPy Reference: + /// https://numpy.org/doc/stable/reference/generated/numpy.linalg.eig.html#numpy.linalg.eig + /// + /// @param inA: Matrix for which the eigen values and eigen vectors will be computed, must be a real, symmetric MxM + /// array + /// @param inTolerance (default 1e-12) + /// + /// @return std::pair, NdArray> eigen values and eigen vectors + /// + template + std::pair, NdArray> eig(const NdArray& inA, double inTolerance = 1e-12) + { + STATIC_ASSERT_ARITHMETIC(dtype); + + if (!inA.issquare()) + { + THROW_INVALID_ARGUMENT_ERROR("Input array must be square."); + } + + const auto n = inA.numRows(); + auto b = inA.template astype(); + auto eigenVectors = eye(n); + auto eigenVals = NdArray(1, n); + + constexpr auto MAX_ITERATIONS = 10000; + for (auto iter = 0u; iter < MAX_ITERATIONS; ++iter) + { + auto max_off_diag = 0.; + auto p = 0u; + auto q = 1u; + + for (auto i = 0u; i < n; i++) + { + for (auto j = i + 1; j < n; j++) + { + const auto val = std::fabs(b(i, j)); + if (val > max_off_diag) + { + max_off_diag = val; + p = i; + q = j; + } + } + } + + if (max_off_diag < inTolerance) + { + break; + } + + const auto app = b(p, p); + const auto aqq = b(q, q); + const auto apq = b(p, q); + + const auto theta = (aqq - app) / (2. * apq); + const auto onePlusThetaSqr = std::sqrt(1. + utils::sqr(theta)); + const auto t = (theta >= 0.) ? 1. / (theta + onePlusThetaSqr) : 1. / (theta - onePlusThetaSqr); + const auto c = 1.0 / std::sqrt(1. + utils::sqr(t)); + const auto s = t * c; + + for (auto i = 0u; i < n; ++i) + { + if (i != p && i != q) + { + const auto bip = b(i, p); + const auto biq = b(i, q); + b(i, p) = c * bip - s * biq; + b(p, i) = b(i, p); + b(i, q) = s * bip + c * biq; + b(q, i) = b(i, q); + } + } + + b(p, p) = c * c * app + s * s * aqq - 2. * c * s * apq; + b(q, q) = s * s * app + c * c * aqq + 2. * c * s * apq; + b(p, q) = 0.; + b(q, p) = 0.; + + for (auto i = 0u; i < n; ++i) + { + const auto vip = eigenVectors(i, p); + const auto viq = eigenVectors(i, q); + eigenVectors(i, p) = c * vip - s * viq; + eigenVectors(i, q) = s * vip + c * viq; + } + } + + for (auto i = 0u; i < n; ++i) + { + eigenVals[i] = b(i, i); + } + + for (auto i = 0u; i < n - 1; ++i) + { + for (auto j = i + 1; j < n; ++j) + { + if (eigenVals[i] < eigenVals[j]) + { + std::swap(eigenVals[i], eigenVals[j]); + + for (auto k = 0u; k < n; ++k) + { + std::swap(eigenVectors(k, i), eigenVectors(k, j)); + } + } + } + } + + return std::make_pair(eigenVals, eigenVectors); + } +} // namespace nc::linalg diff --git a/include/NumCpp/Linalg/eigvals.hpp b/include/NumCpp/Linalg/eigvals.hpp new file mode 100644 index 000000000..d1dcdb7bb --- /dev/null +++ b/include/NumCpp/Linalg/eigvals.hpp @@ -0,0 +1,58 @@ +/// @file +/// @author David Pilger +/// [GitHub Repository](https://github.com/dpilger26/NumCpp) +/// +/// License +/// Copyright 2018-2026 David Pilger +/// +/// Permission is hereby granted, free of charge, to any person obtaining a copy of this +/// software and associated documentation files(the "Software"), to deal in the Software +/// without restriction, including without limitation the rights to use, copy, modify, +/// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to +/// permit persons to whom the Software is furnished to do so, subject to the following +/// conditions : +/// +/// The above copyright notice and this permission notice shall be included in all copies +/// or substantial portions of the Software. +/// +/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +/// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +/// PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE +/// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +/// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +/// DEALINGS IN THE SOFTWARE. +/// +/// Description +/// linear least squares +/// +#pragma once + +#include "NumCpp/Core/Internal/StaticAsserts.hpp" +#include "NumCpp/Linalg/eig.hpp" +#include "NumCpp/NdArray.hpp" + +namespace nc::linalg +{ + //============================================================================ + // Method Description: + /// Compute the eigen values of a real symmetric matrix. + /// + /// NumPy Reference: + /// https://numpy.org/doc/stable/reference/generated/numpy.linalg.eigvals.html + /// + /// @param inA: Matrix for which the eigen values and will be computed, must be a real, symmetric MxM + /// array + /// @param inTolerance (default 1e-12) + /// + /// @return NdArray + /// + template + NdArray eigvals(const NdArray& inA, double inTolerance = 1e-12) + { + STATIC_ASSERT_ARITHMETIC(dtype); + + const auto& [eigenValues, _] = eig(inA, inTolerance); + + return eigenValues; + } +} // namespace nc::linalg diff --git a/test/pytest/src/Linalg.cpp b/test/pytest/src/Linalg.cpp index 31510cbae..42e5c8550 100644 --- a/test/pytest/src/Linalg.cpp +++ b/test/pytest/src/Linalg.cpp @@ -2,11 +2,27 @@ #include "BindingsIncludes.hpp" - //================================================================================ namespace LinalgInterface { + template + std::pair eig(const NdArray& inArray) + { + const auto& [eigenValues, eigenVectors] = linalg::eig(inArray); + return std::make_pair(nc2pybind(eigenValues), nc2pybind(eigenVectors)); + } + + //================================================================================ + + template + pbArrayGeneric eigvals(const NdArray& inArray) + { + return nc2pybind(linalg::eigvals(inArray)); + } + + //================================================================================ + template pbArrayGeneric hatArray(const NdArray& inArray) { @@ -53,6 +69,8 @@ void initLinalg(pb11::module& m) m.def("cholesky", &linalg::cholesky); m.def("det", &linalg::det); m.def("det", &linalg::det); + m.def("eig", &LinalgInterface::eig); + m.def("eigvals", &LinalgInterface::eigvals); m.def("hat", &LinalgInterface::hatArray); m.def("inv", &linalg::inv); m.def("lstsq", &linalg::lstsq); @@ -64,4 +82,4 @@ void initLinalg(pb11::module& m) m.def("pivotLU_decomposition", &LinalgInterface::pivotLU_decomposition); m.def("solve", &LinalgInterface::solve); m.def("svd", &linalg::svd); -} \ No newline at end of file +} diff --git a/test/pytest/test_linalg.py b/test/pytest/test_linalg.py index 2b7ca924c..e90f5aff6 100644 --- a/test/pytest/test_linalg.py +++ b/test/pytest/test_linalg.py @@ -43,6 +43,38 @@ def test_det(): assert NumCpp.det(cArray) == round(np.linalg.det(data)) +#################################################################################### +def test_eig(): + for _ in range(50): + shape = np.random.randint(5, 50, [2,]) + data = np.random.randint(0, 100, shape).astype(float) + data = np.dot(data, data.T) # real symmetric + cArray = NumCpp.NdArray() + cArray.setArray(data) + cEigenValues, cEigenVectors = NumCpp.eig(cArray) + eigenValues, eigenVectors = np.linalg.eig(data) + assert np.array_equal(np.round(np.abs(cEigenValues.flatten()), 5), np.flip(np.sort(np.round(np.abs(eigenValues), 5))).real) + + for idx, eigenValue in enumerate(cEigenValues.flatten()): + eigenVector = cEigenVectors[:, idx] + assert np.round(np.linalg.norm(eigenVector), 8) == 1.0 + aTimesV = np.round(np.linalg.norm(np.dot(data, eigenVector)), 6) + assert aTimesV == np.round(eigenValue, 6) + + +#################################################################################### +def test_eigvals(): + for _ in range(50): + size = np.random.randint(5, 50) + data = np.random.randint(0, 100, [size, size]) + data = np.dot(data, data.T) + cArray = NumCpp.NdArray() + cArray.setArray(data) + cEigenValues = NumCpp.eigvals(cArray) + eigenValues = np.linalg.eigvals(data) + assert np.array_equal(np.round(np.abs(cEigenValues.flatten()), 5), np.flip(np.sort(np.round(np.abs(eigenValues), 5))).real) + + #################################################################################### def test_hat(): shape = NumCpp.Shape(1, 3) From 522a76d1a78981fd071b076d057d1fb0864efafa Mon Sep 17 00:00:00 2001 From: David Pilger Date: Sun, 30 Nov 2025 11:31:54 -0700 Subject: [PATCH 3/5] reworked SVD class, pinv, lstsq. added svdvals() --- docs/markdown/ReleaseNotes.md | 2 + include/NumCpp/Linalg.hpp | 1 + include/NumCpp/Linalg/lstsq.hpp | 12 +- include/NumCpp/Linalg/pinv.hpp | 20 +- .../NumCpp/Linalg/pivotLU_decomposition.hpp | 2 +- include/NumCpp/Linalg/svd.hpp | 17 +- include/NumCpp/Linalg/svd/SVD.hpp | 222 ++++++ include/NumCpp/Linalg/svd/SVDClass.hpp | 646 ------------------ include/NumCpp/Linalg/svdvals.hpp | 61 ++ test/pytest/src/Linalg.cpp | 11 +- test/pytest/test_linalg.py | 105 +-- 11 files changed, 378 insertions(+), 721 deletions(-) create mode 100644 include/NumCpp/Linalg/svd/SVD.hpp delete mode 100644 include/NumCpp/Linalg/svd/SVDClass.hpp create mode 100644 include/NumCpp/Linalg/svdvals.hpp diff --git a/docs/markdown/ReleaseNotes.md b/docs/markdown/ReleaseNotes.md index afb206197..c94cc32c8 100644 --- a/docs/markdown/ReleaseNotes.md +++ b/docs/markdown/ReleaseNotes.md @@ -3,10 +3,12 @@ ## Version 2.15.1 * fixed **Issue #144**, `outer` function now operates on arrays of different sizes +* fixed **Issue #215**, `pinv` function has been corrected * added `eig()` for **Issue #143** * unlike NumPy, the NumCpp implementation is only suitable for real symmetric matrices * added `eigvals()` for **Issue #143** * unlike NumPy, the NumCpp implementation is only suitable for real symmetric matrices +* added `svdvals` ## Version 2.15.0 diff --git a/include/NumCpp/Linalg.hpp b/include/NumCpp/Linalg.hpp index 96ea4ef1a..5b7647573 100644 --- a/include/NumCpp/Linalg.hpp +++ b/include/NumCpp/Linalg.hpp @@ -42,3 +42,4 @@ #include "NumCpp/Linalg/pivotLU_decomposition.hpp" #include "NumCpp/Linalg/solve.hpp" #include "NumCpp/Linalg/svd.hpp" +#include "NumCpp/Linalg/svdvals.hpp" diff --git a/include/NumCpp/Linalg/lstsq.hpp b/include/NumCpp/Linalg/lstsq.hpp index 188db56c9..b76e6867f 100644 --- a/include/NumCpp/Linalg/lstsq.hpp +++ b/include/NumCpp/Linalg/lstsq.hpp @@ -28,7 +28,7 @@ #pragma once #include "NumCpp/Core/Internal/StaticAsserts.hpp" -#include "NumCpp/Linalg/svd/SVDClass.hpp" +#include "NumCpp/Linalg/svd/SVD.hpp" #include "NumCpp/NdArray.hpp" namespace nc::linalg @@ -50,12 +50,11 @@ namespace nc::linalg /// @param inA: coefficient matrix /// @param inB: Ordinate or "dependent variable" values. If b is two-dimensional, the least-squares solution is /// calculated for each of the K columns of b. - /// @param inTolerance (default 1e-12) /// /// @return NdArray /// template - NdArray lstsq(const NdArray& inA, const NdArray& inB, double inTolerance = 1e-12) + NdArray lstsq(const NdArray& inA, const NdArray& inB) { STATIC_ASSERT_ARITHMETIC(dtype); @@ -72,12 +71,11 @@ namespace nc::linalg THROW_INVALID_ARGUMENT_ERROR("Invalid matrix dimensions"); } - SVD svdSolver(inA.template astype()); - const double threshold = inTolerance * svdSolver.s().front(); + SVD svd(inA.template astype()); if (bIsFlat) { - return svdSolver.solve(inB.template astype(), threshold); + return svd.lstsq(inB.template astype()); } const auto bCast = inB.template astype(); @@ -88,7 +86,7 @@ namespace nc::linalg for (uint32 col = 0; col < bShape.cols; ++col) { - result.put(resultRowSlice, col, svdSolver.solve(bCast(bRowSlice, col), threshold)); + result.put(resultRowSlice, col, svd.lstsq(bCast(bRowSlice, col))); } return result; diff --git a/include/NumCpp/Linalg/pinv.hpp b/include/NumCpp/Linalg/pinv.hpp index 611fffbb2..14766cebb 100644 --- a/include/NumCpp/Linalg/pinv.hpp +++ b/include/NumCpp/Linalg/pinv.hpp @@ -31,8 +31,7 @@ #include "NumCpp/Core/Internal/StaticAsserts.hpp" #include "NumCpp/Core/Types.hpp" -#include "NumCpp/Functions/zeros.hpp" -#include "NumCpp/Linalg/svd.hpp" +#include "NumCpp/Linalg/svd/SVD.hpp" #include "NumCpp/NdArray.hpp" namespace nc::linalg @@ -51,19 +50,6 @@ namespace nc::linalg { STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype); - NdArray u; - NdArray d; - NdArray v; - svd(inArray, u, d, v); - - const auto inShape = inArray.shape(); - auto dPlus = nc::zeros(inShape.cols, inShape.rows); // transpose - - for (uint32 i = 0; i < d.shape().rows; ++i) - { - dPlus(i, i) = 1. / d(i, i); - } - - return v.transpose().dot(dPlus).dot(u.transpose()); + return SVD{ inArray }.pinv(); } -} // namespace nc::linalg \ No newline at end of file +} // namespace nc::linalg diff --git a/include/NumCpp/Linalg/pivotLU_decomposition.hpp b/include/NumCpp/Linalg/pivotLU_decomposition.hpp index 3d5299d60..61726146c 100644 --- a/include/NumCpp/Linalg/pivotLU_decomposition.hpp +++ b/include/NumCpp/Linalg/pivotLU_decomposition.hpp @@ -58,7 +58,7 @@ namespace nc::linalg { STATIC_ASSERT_ARITHMETIC(dtype); - const auto shape = inMatrix.shape(); + const auto& shape = inMatrix.shape(); if (!shape.issquare()) { diff --git a/include/NumCpp/Linalg/svd.hpp b/include/NumCpp/Linalg/svd.hpp index 8c5c1e3cd..6e048ae0b 100644 --- a/include/NumCpp/Linalg/svd.hpp +++ b/include/NumCpp/Linalg/svd.hpp @@ -31,7 +31,7 @@ #include "NumCpp/Core/Internal/StaticAsserts.hpp" #include "NumCpp/Functions/diagflat.hpp" -#include "NumCpp/Linalg/svd/SVDClass.hpp" +#include "NumCpp/Linalg/svd/SVD.hpp" #include "NumCpp/NdArray.hpp" namespace nc::linalg @@ -45,20 +45,17 @@ namespace nc::linalg /// @param inArray: NdArray to be SVDed /// @param outU: NdArray output U /// @param outS: NdArray output S - /// @param outVt: NdArray output V transpose + /// @param outVT: NdArray output V transpose /// template - void svd(const NdArray& inArray, NdArray& outU, NdArray& outS, NdArray& outVt) + void svd(const NdArray& inArray, NdArray& outU, NdArray& outS, NdArray& outVT) { STATIC_ASSERT_ARITHMETIC(dtype); - SVD svdSolver(inArray.template astype()); - outU = svdSolver.u(); + const auto svd = SVD{ inArray }; - NdArray vt = svdSolver.v().transpose(); - outVt = std::move(vt); - - NdArray s = diagflat(svdSolver.s(), 0); - outS = std::move(s); + outU = svd.u(); + outS = std::move(svd.s()[Slice(std::min(inArray.numRows(), inArray.numCols()))]); + outVT = std::move(svd.v().transpose()); } } // namespace nc::linalg diff --git a/include/NumCpp/Linalg/svd/SVD.hpp b/include/NumCpp/Linalg/svd/SVD.hpp new file mode 100644 index 000000000..bf08dca13 --- /dev/null +++ b/include/NumCpp/Linalg/svd/SVD.hpp @@ -0,0 +1,222 @@ +/// @file +/// @author David Pilger +/// [GitHub Repository](https://github.com/dpilger26/NumCpp) +/// +/// License +/// Copyright 2020 David Pilger +/// +/// Permission is hereby granted, free of charge, to any person obtaining a copy of this +/// software and associated documentation files(the "Software"), to deal in the Software +/// without restriction, including without limitation the rights to use, copy, modify, +/// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to +/// permit persons to whom the Software is furnished to do so, subject to the following +/// conditions : +/// +/// The above copyright notice and this permission notice shall be included in all copies +/// or substantial portions of the Software. +/// +/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +/// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +/// PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE +/// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +/// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +/// DEALINGS IN THE SOFTWARE. +/// +/// Description +/// Performs the singular value decomposition of a general matrix, +/// taken and adapted from Numerical Recipes Third Edition svd.h +/// +#pragma once + +#include +#include +#include + +#include "NumCpp/Core/Internal/Error.hpp" +#include "NumCpp/Core/Types.hpp" +#include "NumCpp/Functions/dot.hpp" +#include "NumCpp/Functions/norm.hpp" +#include "NumCpp/Functions/zeros.hpp" +#include "NumCpp/Linalg/eig.hpp" +#include "NumCpp/NdArray.hpp" + +namespace nc::linalg +{ + // ============================================================================= + // Class Description: + /// Performs the singular value decomposition of a general matrix + template + class SVD + { + public: + STATIC_ASSERT_ARITHMETIC(dtype); + + static constexpr auto TOLERANCE = 1e-12; + + // ============================================================================= + // Description: + /// Constructor + /// + /// @param inMatrix: matrix to perform SVD on + /// + explicit SVD(const NdArray& inMatrix) : + m_{ inMatrix.shape().rows }, + n_{ inMatrix.shape().cols }, + s_(1, m_) + { + compute(inMatrix.template astype()); + } + + // ============================================================================= + // Description: + /// the resultant u matrix + /// + /// @return u matrix + /// + const NdArray& u() const noexcept + { + return u_; + } + + // ============================================================================= + // Description: + /// the resultant v transpose matrix + /// + /// @return v matrix + /// + const NdArray& v() const noexcept + { + return v_; + } + + // ============================================================================= + // Description: + /// the resultant w matrix + /// + /// @return s matrix + /// + const NdArray& s() const noexcept + { + return s_; + } + + // ============================================================================= + // Description: + /// Returns the pseudo-inverse of the input matrix + /// + /// @return NdArray + /// + NdArray pinv() + { + // lazy evaluation + if (pinv_.isempty()) + { + auto sInverse = nc::zeros(n_, m_); // transpose + for (auto i = 0u; i < std::min(m_, n_); ++i) + { + if (s_[i] > TOLERANCE) + { + sInverse(i, i) = 1. / s_[i]; + } + } + + pinv_ = dot(v_, dot(sInverse, u_.transpose())); + } + + return pinv_; + } + + // ============================================================================= + // Description: + /// solves the linear least squares problem + /// + /// @param inInput + /// + /// @return NdArray + /// + NdArray lstsq(const NdArray& inInput) + { + if (inInput.size() != m_) + { + THROW_INVALID_ARGUMENT_ERROR("Invalid matrix dimensions"); + } + + if (inInput.numCols() == 1) + { + return dot(pinv(), inInput); + } + else + { + const auto input = inInput.copy().reshape(inInput.size(), 1); + return dot(pinv(), input); + } + } + + private: + // ============================================================================= + // Description: + /// Computes the SVD of the input matrix + /// + /// @param A: matrix to perform SVD on + /// + void compute(const NdArray& A) + { + const auto At = A.transpose(); + const auto AtA = dot(At, A); + const auto AAt = dot(A, At); + + const auto& [sigmaSquaredU, U] = eig(AAt); + const auto& [sigmaSquaredV, V] = eig(AtA); + + auto rank = 0u; + for (auto i = 0u; i < std::min(m_, n_); ++i) + { + if (sigmaSquaredV[i] > TOLERANCE) + { + s_[i] = std::sqrt(sigmaSquaredV[i]); + rank++; + } + } + + // std::cout << U.front() << ' ' << U.back() << '\n'; + // std::cout << V.front() << ' ' << V.back() << '\n'; + // std::cout << "hello world\n"; + + u_ = std::move(U); + v_ = std::move(V); + + auto Av = NdArray(m_, 1); + for (auto i = 0u; i < rank; ++i) + { + for (auto j = 0u; j < m_; ++j) + { + auto sum = 0.; + for (auto k = 0u; k < n_; ++k) + { + sum += A(j, k) * v_(k, i); + } + Av[j] = sum; + } + + const auto normalization = norm(Av).item(); + + if (normalization > TOLERANCE) + { + for (auto j = 0u; j < m_; ++j) + { + u_(j, i) = Av[j] / normalization; + } + } + } + } + + private: + // ===============================Attributes==================================== + const uint32 m_{}; + const uint32 n_{}; + NdArray u_{}; + NdArray v_{}; + NdArray s_{}; + NdArray pinv_{}; + }; +} // namespace nc::linalg diff --git a/include/NumCpp/Linalg/svd/SVDClass.hpp b/include/NumCpp/Linalg/svd/SVDClass.hpp deleted file mode 100644 index 317f6fd6d..000000000 --- a/include/NumCpp/Linalg/svd/SVDClass.hpp +++ /dev/null @@ -1,646 +0,0 @@ -/// @file -/// @author David Pilger -/// [GitHub Repository](https://github.com/dpilger26/NumCpp) -/// -/// License -/// Copyright 2020 David Pilger -/// -/// Permission is hereby granted, free of charge, to any person obtaining a copy of this -/// software and associated documentation files(the "Software"), to deal in the Software -/// without restriction, including without limitation the rights to use, copy, modify, -/// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to -/// permit persons to whom the Software is furnished to do so, subject to the following -/// conditions : -/// -/// The above copyright notice and this permission notice shall be included in all copies -/// or substantial portions of the Software. -/// -/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -/// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -/// PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE -/// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -/// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -/// DEALINGS IN THE SOFTWARE. -/// -/// Description -/// Performs the singular value decomposition of a general matrix, -/// taken and adapted from Numerical Recipes Third Edition svd.h -/// -#pragma once - -#include -#include -#include - -#include "NumCpp/Core/Internal/Error.hpp" -#include "NumCpp/Core/Types.hpp" -#include "NumCpp/NdArray.hpp" -#include "NumCpp/Utils/essentiallyEqual.hpp" - -namespace nc::linalg -{ - // ============================================================================= - // Class Description: - /// performs the singular value decomposition of a general matrix, - /// taken and adapted from Numerical Recipes Third Edition svd.h - class SVD - { - public: - // ============================================================================= - // Description: - /// Constructor - /// - /// @param inMatrix: matrix to perform SVD on - /// - explicit SVD(const NdArray& inMatrix) : - m_(inMatrix.shape().rows), - n_(inMatrix.shape().cols), - u_(inMatrix), - v_(n_, n_), - s_(1, n_), - eps_(std::numeric_limits::epsilon()) - { - decompose(); - reorder(); - tsh_ = 0.5 * std::sqrt(m_ + n_ + 1.) * s_.front() * eps_; - } - - // ============================================================================= - // Description: - /// the resultant u matrix - /// - /// @return u matrix - /// - const NdArray& u() noexcept - { - return u_; - } - - // ============================================================================= - // Description: - /// the resultant v matrix - /// - /// @return v matrix - /// - const NdArray& v() noexcept - { - return v_; - } - - // ============================================================================= - // Description: - /// the resultant w matrix - /// - /// @return s matrix - /// - const NdArray& s() noexcept - { - return s_; - } - - // ============================================================================= - // Description: - /// solves the linear least squares problem - /// - /// @param inInput - /// @param inThresh (default -1.) - /// - /// @return NdArray - /// - NdArray solve(const NdArray& inInput, double inThresh = -1.) - { - double ss{}; - - if (inInput.size() != m_) - { - THROW_INVALID_ARGUMENT_ERROR("Invalid matrix dimensions"); - } - - NdArray returnArray(1, n_); - - NdArray tmp(1, n_); - - tsh_ = (inThresh >= 0. ? inThresh : 0.5 * sqrt(m_ + n_ + 1.) * s_.front() * eps_); - - for (uint32 j = 0; j < n_; j++) - { - ss = 0.; - if (s_[j] > tsh_) - { - for (uint32 i = 0; i < m_; i++) - { - ss += u_(i, j) * inInput[i]; - } - ss /= s_[j]; - } - tmp[j] = ss; - } - - for (uint32 j = 0; j < n_; j++) - { - ss = 0.; - for (uint32 jj = 0; jj < n_; jj++) - { - ss += v_(j, jj) * tmp[jj]; - } - - returnArray[j] = ss; - } - - return returnArray; - } - - private: - // ============================================================================= - // Description: - /// returns the SIGN of two values - /// - /// @param inA - /// @param inB - /// - /// @return value - /// - static double SIGN(double inA, double inB) noexcept - { - return inB >= 0 ? (inA >= 0 ? inA : -inA) : (inA >= 0 ? -inA : inA); - } - - // ============================================================================= - // Description: - /// decomposes the input matrix - /// - void decompose() - { - bool flag{}; - uint32 i{}; - uint32 its{}; - uint32 j{}; - uint32 jj{}; - uint32 k{}; - uint32 l{}; - uint32 nm{}; - - double anorm{}; - double c{}; - double f{}; - double g{}; - double h{}; - double ss{}; - double scale{}; - double x{}; - double y{}; - double z{}; - - NdArray rv1(n_, 1); - - for (i = 0; i < n_; ++i) - { - l = i + 2; - rv1[i] = scale * g; - g = ss = scale = 0.; - - if (i < m_) - { - for (k = i; k < m_; ++k) - { - scale += std::abs(u_(k, i)); - } - - if (!utils::essentiallyEqual(scale, 0.)) - { - for (k = i; k < m_; ++k) - { - u_(k, i) /= scale; - ss += u_(k, i) * u_(k, i); - } - - f = u_(i, i); - g = -SIGN(std::sqrt(ss), f); - h = f * g - ss; - u_(i, i) = f - g; - - for (j = l - 1; j < n_; ++j) - { - for (ss = 0., k = i; k < m_; ++k) - { - ss += u_(k, i) * u_(k, j); - } - - f = ss / h; - - for (k = i; k < m_; ++k) - { - u_(k, j) += f * u_(k, i); - } - } - - for (k = i; k < m_; ++k) - { - u_(k, i) *= scale; - } - } - } - - s_[i] = scale * g; - g = ss = scale = 0.; - - if (i + 1 <= m_ && i + 1 != n_) - { - for (k = l - 1; k < n_; ++k) - { - scale += std::abs(u_(i, k)); - } - - if (!utils::essentiallyEqual(scale, 0.)) - { - for (k = l - 1; k < n_; ++k) - { - u_(i, k) /= scale; - ss += u_(i, k) * u_(i, k); - } - - f = u_(i, l - 1); - g = -SIGN(std::sqrt(ss), f); - h = f * g - ss; - u_(i, l - 1) = f - g; - - for (k = l - 1; k < n_; ++k) - { - rv1[k] = u_(i, k) / h; - } - - for (j = l - 1; j < m_; ++j) - { - for (ss = 0., k = l - 1; k < n_; ++k) - { - ss += u_(j, k) * u_(i, k); - } - - for (k = l - 1; k < n_; ++k) - { - u_(j, k) += ss * rv1[k]; - } - } - - for (k = l - 1; k < n_; ++k) - { - u_(i, k) *= scale; - } - } - } - - anorm = std::max(anorm, (std::abs(s_[i]) + std::abs(rv1[i]))); - } - - for (i = n_ - 1; i != static_cast(-1); --i) - { - if (i < n_ - 1) - { - if (!utils::essentiallyEqual(g, 0.)) - { - for (j = l; j < n_; ++j) - { - v_(j, i) = (u_(i, j) / u_(i, l)) / g; - } - - for (j = l; j < n_; ++j) - { - for (ss = 0., k = l; k < n_; ++k) - { - ss += u_(i, k) * v_(k, j); - } - - for (k = l; k < n_; ++k) - { - v_(k, j) += ss * v_(k, i); - } - } - } - - for (j = l; j < n_; ++j) - { - v_(i, j) = v_(j, i) = 0.; - } - } - - v_(i, i) = 1.; - g = rv1[i]; - l = i; - } - - for (i = std::min(m_, n_) - 1; i != static_cast(-1); --i) - { - l = i + 1; - g = s_[i]; - - for (j = l; j < n_; ++j) - { - u_(i, j) = 0.; - } - - if (!utils::essentiallyEqual(g, 0.)) - { - g = 1. / g; - - for (j = l; j < n_; ++j) - { - for (ss = 0., k = l; k < m_; ++k) - { - ss += u_(k, i) * u_(k, j); - } - - f = (ss / u_(i, i)) * g; - - for (k = i; k < m_; ++k) - { - u_(k, j) += f * u_(k, i); - } - } - - for (j = i; j < m_; ++j) - { - u_(j, i) *= g; - } - } - else - { - for (j = i; j < m_; ++j) - { - u_(j, i) = 0.; - } - } - - ++u_(i, i); - } - - for (k = n_ - 1; k != static_cast(-1); --k) - { - for (its = 0; its < 30; ++its) - { - flag = true; - for (l = k; l != static_cast(-1); --l) - { - nm = l - 1; - if (l == 0 || std::abs(rv1[l]) <= eps_ * anorm) - { - flag = false; - break; - } - - if (std::abs(s_[nm]) <= eps_ * anorm) - { - break; - } - } - - if (flag) - { - c = 0.; - ss = 1.; - for (i = l; i < k + 1; ++i) - { - f = ss * rv1[i]; - rv1[i] = c * rv1[i]; - - if (std::abs(f) <= eps_ * anorm) - { - break; - } - - g = s_[i]; - h = pythag(f, g); - s_[i] = h; - h = 1. / h; - c = g * h; - ss = -f * h; - - for (j = 0; j < m_; ++j) - { - y = u_(j, nm); - z = u_(j, i); - u_(j, nm) = y * c + z * ss; - u_(j, i) = z * c - y * ss; - } - } - } - - z = s_[k]; - if (l == k) - { - if (z < 0.) - { - s_[k] = -z; - for (j = 0; j < n_; ++j) - { - v_(j, k) = -v_(j, k); - } - } - break; - } - - if (its == 29) - { - THROW_INVALID_ARGUMENT_ERROR("no convergence in 30 svdcmp iterations"); - } - - x = s_[l]; - nm = k - 1; - y = s_[nm]; - g = rv1[nm]; - h = rv1[k]; - f = ((y - z) * (y + z) + (g - h) * (g + h)) / (2. * h * y); - g = pythag(f, 1.); - f = ((x - z) * (x + z) + h * ((y / (f + SIGN(g, f))) - h)) / x; - c = ss = 1.; - - for (j = l; j <= nm; j++) - { - i = j + 1; - g = rv1[i]; - y = s_[i]; - h = ss * g; - g = c * g; - z = pythag(f, h); - rv1[j] = z; - c = f / z; - ss = h / z; - f = x * c + g * ss; - g = g * c - x * ss; - h = y * ss; - y *= c; - - for (jj = 0; jj < n_; ++jj) - { - x = v_(jj, j); - z = v_(jj, i); - v_(jj, j) = x * c + z * ss; - v_(jj, i) = z * c - x * ss; - } - - z = pythag(f, h); - s_[j] = z; - - if (!utils::essentiallyEqual(z, 0.)) - { - z = 1. / z; - c = f * z; - ss = h * z; - } - - f = c * g + ss * y; - x = c * y - ss * g; - - for (jj = 0; jj < m_; ++jj) - { - y = u_(jj, j); - z = u_(jj, i); - u_(jj, j) = y * c + z * ss; - u_(jj, i) = z * c - y * ss; - } - } - rv1[l] = 0.; - rv1[k] = f; - s_[k] = x; - } - } - } - - // ============================================================================= - // Description: - /// reorders the input matrix - /// - void reorder() - { - uint32 i = 0; - uint32 j = 0; - uint32 k = 0; - uint32 ss = 0; - uint32 inc = 1; - - double sw{}; - NdArray su(m_, 1); - NdArray sv(n_, 1); - - do - { - inc *= 3; - ++inc; - } while (inc <= n_); - - do - { - inc /= 3; - for (i = inc; i < n_; ++i) - { - sw = s_[i]; - for (k = 0; k < m_; ++k) - { - su[k] = u_(k, i); - } - - for (k = 0; k < n_; ++k) - { - sv[k] = v_(k, i); - } - - j = i; - while (s_[j - inc] < sw) - { - s_[j] = s_[j - inc]; - - for (k = 0; k < m_; ++k) - { - u_(k, j) = u_(k, j - inc); - } - - for (k = 0; k < n_; ++k) - { - v_(k, j) = v_(k, j - inc); - } - - j -= inc; - - if (j < inc) - { - break; - } - } - - s_[j] = sw; - - for (k = 0; k < m_; ++k) - { - u_(k, j) = su[k]; - } - - for (k = 0; k < n_; ++k) - { - v_(k, j) = sv[k]; - } - } - } while (inc > 1); - - for (k = 0; k < n_; ++k) - { - ss = 0; - - for (i = 0; i < m_; i++) - { - if (u_(i, k) < 0.) - { - ss++; - } - } - - for (j = 0; j < n_; ++j) - { - if (v_(j, k) < 0.) - { - ss++; - } - } - - if (ss > (m_ + n_) / 2) - { - for (i = 0; i < m_; ++i) - { - u_(i, k) = -u_(i, k); - } - - for (j = 0; j < n_; ++j) - { - v_(j, k) = -v_(j, k); - } - } - } - } - - // ============================================================================= - // Description: - /// performs pythag of input values - /// - /// @param inA - /// @param inB - /// - /// @return resultant value - /// - static double pythag(double inA, double inB) noexcept - { - const double absa = std::abs(inA); - const double absb = std::abs(inB); - return (absa > absb - ? absa * std::sqrt(1. + utils::sqr(absb / absa)) - : (utils::essentiallyEqual(absb, 0.) ? 0. : absb * std::sqrt(1. + utils::sqr(absa / absb)))); - } - - private: - // ===============================Attributes==================================== - const uint32 m_{}; - const uint32 n_{}; - NdArray u_{}; - NdArray v_{}; - NdArray s_{}; - double eps_{}; - double tsh_{}; - }; -} // namespace nc::linalg diff --git a/include/NumCpp/Linalg/svdvals.hpp b/include/NumCpp/Linalg/svdvals.hpp new file mode 100644 index 000000000..cd77fc02c --- /dev/null +++ b/include/NumCpp/Linalg/svdvals.hpp @@ -0,0 +1,61 @@ +/// @file +/// @author David Pilger +/// [GitHub Repository](https://github.com/dpilger26/NumCpp) +/// +/// License +/// Copyright 2018-2026 David Pilger +/// +/// Permission is hereby granted, free of charge, to any person obtaining a copy of this +/// software and associated documentation files(the "Software"), to deal in the Software +/// without restriction, including without limitation the rights to use, copy, modify, +/// merge, publish, distribute, sublicense, and/or sell copies of the Software, and to +/// permit persons to whom the Software is furnished to do so, subject to the following +/// conditions : +/// +/// The above copyright notice and this permission notice shall be included in all copies +/// or substantial portions of the Software. +/// +/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, +/// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +/// PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE +/// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +/// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +/// DEALINGS IN THE SOFTWARE. +/// +/// Description +/// matrix svd +/// +#pragma once + +#include + +#include "NumCpp/Core/Internal/StaticAsserts.hpp" +#include "NumCpp/Linalg/svd.hpp" +#include "NumCpp/NdArray.hpp" + +namespace nc::linalg +{ + //============================================================================ + // Method Description: + /// Singular Value Decomposition. + /// + /// NumPy Reference: https://numpy.org/doc/stable/reference/generated/numpy.linalg.svd.html + /// + /// @param inArray: NdArray to be SVDed + /// + /// @returns array of singular values + /// + template + NdArray svdvals(const NdArray& inArray) + { + STATIC_ASSERT_ARITHMETIC(dtype); + + auto u = NdArray{}; + auto s = NdArray{}; + auto vT = NdArray{}; + + svd(inArray, u, s, vT); + + return s; + } +} // namespace nc::linalg diff --git a/test/pytest/src/Linalg.cpp b/test/pytest/src/Linalg.cpp index 42e5c8550..20282e439 100644 --- a/test/pytest/src/Linalg.cpp +++ b/test/pytest/src/Linalg.cpp @@ -55,10 +55,18 @@ namespace LinalgInterface //================================================================================ template - pbArray solve(const NdArray& inA, const NdArray& inB) + pbArrayGeneric solve(const NdArray& inA, const NdArray& inB) { return nc2pybind(linalg::solve(inA, inB)); } + + //================================================================================ + + template + pbArrayGeneric svdvals(const NdArray& inA) + { + return nc2pybind(linalg::svdvals(inA)); + } } // namespace LinalgInterface //================================================================================ @@ -82,4 +90,5 @@ void initLinalg(pb11::module& m) m.def("pivotLU_decomposition", &LinalgInterface::pivotLU_decomposition); m.def("solve", &LinalgInterface::solve); m.def("svd", &linalg::svd); + m.def("svdvals", &LinalgInterface::svdvals); } diff --git a/test/pytest/test_linalg.py b/test/pytest/test_linalg.py index e90f5aff6..327bf2064 100644 --- a/test/pytest/test_linalg.py +++ b/test/pytest/test_linalg.py @@ -49,7 +49,7 @@ def test_eig(): shape = np.random.randint(5, 50, [2,]) data = np.random.randint(0, 100, shape).astype(float) data = np.dot(data, data.T) # real symmetric - cArray = NumCpp.NdArray() + cArray = NumCpp.NdArray(*shape) cArray.setArray(data) cEigenValues, cEigenVectors = NumCpp.eig(cArray) eigenValues, eigenVectors = np.linalg.eig(data) @@ -58,8 +58,8 @@ def test_eig(): for idx, eigenValue in enumerate(cEigenValues.flatten()): eigenVector = cEigenVectors[:, idx] assert np.round(np.linalg.norm(eigenVector), 8) == 1.0 - aTimesV = np.round(np.linalg.norm(np.dot(data, eigenVector)), 6) - assert aTimesV == np.round(eigenValue, 6) + aTimesV = np.round(np.linalg.norm(np.dot(data, eigenVector)), 5) + assert aTimesV == np.round(eigenValue, 5) #################################################################################### @@ -84,6 +84,19 @@ def test_hat(): assert np.array_equal(NumCpp.hat(cArray), hat(data)) +#################################################################################### +def hat(inVec): + mat = np.zeros([3, 3]) + mat[0, 1] = -inVec[2] + mat[0, 2] = inVec[1] + mat[1, 0] = inVec[2] + mat[1, 2] = -inVec[0] + mat[2, 0] = -inVec[1] + mat[2, 1] = inVec[0] + + return mat + + #################################################################################### def test_inv(): max_order = 30 @@ -93,7 +106,7 @@ def test_inv(): cArray = NumCpp.NdArray(shape) data = np.random.randint(1, 100, [order, order]) cArray.setArray(data) - assert np.array_equal(np.round(NumCpp.inv(cArray).getNumpyArray(), 8), np.round(np.linalg.inv(data), 8)) + assert np.array_equal(np.round(NumCpp.inv(cArray).getNumpyArray(), 7), np.round(np.linalg.inv(data), 7)) # test zero on diagnol for order in range(2, max_order): @@ -103,7 +116,7 @@ def test_inv(): idx = np.random.randint(0, order) data[idx, idx] = 0 cArray.setArray(data) - assert np.array_equal(np.round(NumCpp.inv(cArray).getNumpyArray(), 8), np.round(np.linalg.inv(data), 8)) + assert np.array_equal(np.round(NumCpp.inv(cArray).getNumpyArray(), 7), np.round(np.linalg.inv(data), 7)) #################################################################################### @@ -128,8 +141,8 @@ def test_lstsq(): ) aArray.setArray(aData) bArray.setArray(bData) - x = NumCpp.lstsq(aArray, bArray, 1e-12).getNumpyArray().flatten() - assert np.array_equal(np.round(x, 8), np.round(np.linalg.lstsq(aData, bData, rcond=None)[0], 8)) + x = NumCpp.lstsq(aArray, bArray).getNumpyArray().flatten() + assert np.array_equal(np.round(x, 7), np.round(np.linalg.lstsq(aData, bData, rcond=None)[0], 7)), f"{shapeInput}" shapeInput = np.random.randint( 5, @@ -150,8 +163,8 @@ def test_lstsq(): ) aArray.setArray(aData) bArray.setArray(bData) - x = NumCpp.lstsq(aArray, bArray, 1e-12).getNumpyArray() - assert np.array_equal(np.round(x, 8), np.round(np.linalg.lstsq(aData, bData, rcond=None)[0], 8)) + x = NumCpp.lstsq(aArray, bArray).getNumpyArray() + assert np.array_equal(np.round(x, 7), np.round(np.linalg.lstsq(aData, bData, rcond=None)[0], 7)), f"{shapeInput}" #################################################################################### @@ -381,16 +394,16 @@ def test_multi_dot(): def test_pinv(): max_order = 30 - for order in range(1, max_order): + for order in range(10, max_order): shape = NumCpp.Shape(order + 5, order) cArray = NumCpp.NdArray(shape) - data = np.random.randint(1, 100, [order, order]) + data = np.random.randint(1, 100, [shape.rows, shape.cols]) cArray.setArray(data) assert np.array_equal(np.round(NumCpp.pinv(cArray).getNumpyArray(), 8), np.round(np.linalg.pinv(data), 8)) shape = NumCpp.Shape(order, order + 5) cArray = NumCpp.NdArray(shape) - data = np.random.randint(1, 100, [order, order]) + data = np.random.randint(1, 100, [shape.rows, shape.cols]) cArray.setArray(data) assert np.array_equal(np.round(NumCpp.pinv(cArray).getNumpyArray(), 8), np.round(np.linalg.pinv(data), 8)) @@ -407,24 +420,6 @@ def test_pivotLU_decomposition(): rhs = l.dot(u) assert np.array_equal(np.round(lhs, 10), np.round(rhs, 10)) - shapeInput = np.random.randint( - 5, - 50, - [ - 2, - ], - ) - shape = NumCpp.Shape(shapeInput[0].item(), shapeInput[1].item()) - cArray = NumCpp.NdArray(shape) - data = np.random.randint(1, 100, [shape.rows, shape.cols]) - cArray.setArray(data) - uArray = NumCpp.NdArray() - sArray = NumCpp.NdArray() - vArray = NumCpp.NdArray() - NumCpp.svd(cArray, uArray, sArray, vArray) - data2 = np.dot(uArray.getNumpyArray(), np.dot(sArray.getNumpyArray(), vArray.getNumpyArray())) - assert np.array_equal(np.round(data, 8), np.round(data2, 8)) - #################################################################################### def test_solve(): @@ -440,13 +435,45 @@ def test_solve(): #################################################################################### -def hat(inVec): - mat = np.zeros([3, 3]) - mat[0, 1] = -inVec[2] - mat[0, 2] = inVec[1] - mat[1, 0] = inVec[2] - mat[1, 2] = -inVec[0] - mat[2, 0] = -inVec[1] - mat[2, 1] = inVec[0] +def test_svd(): + shape = np.random.randint( + 10, + 50, + [ + 2, + ], + ) + cArray = NumCpp.NdArray(*shape) + data = np.random.randint(1, 100, shape).astype(float) + cArray.setArray(data) + uArray = NumCpp.NdArray() + sArray = NumCpp.NdArray() + vtArray = NumCpp.NdArray() + NumCpp.svd(cArray, uArray, sArray, vtArray) + + u = uArray.getNumpyArray() + s = sArray.getNumpyArray().flatten() + vt = vtArray.getNumpyArray() - return mat + ss = np.zeros(shape) + for i in range(s.size): + ss[i, i] = s[i] + + assert np.array_equal(np.round(np.linalg.multi_dot([u, ss, vt]), 8), data) + + +#################################################################################### +def test_svdvals(): + shape = np.random.randint( + 10, + 50, + [ + 2, + ], + ) + shape = np.array([3, 5]) + data = np.random.randint(1, 100, shape).astype(float) + cArray = NumCpp.NdArray(*shape) + cArray.setArray(data) + + assert np.array_equal(np.round(NumCpp.svdvals(cArray).flatten(), 8), np.round(np.linalg.svdvals(data), 8)) From 1402fd0d3bcc42bb1b5a17ea79601d040bcbf6ba Mon Sep 17 00:00:00 2001 From: David Pilger Date: Sun, 30 Nov 2025 11:33:59 -0700 Subject: [PATCH 4/5] changing version to 2.16.0 --- docs/markdown/Building.md | 4 ++-- docs/markdown/ReleaseNotes.md | 2 +- include/NumCpp/Core/Internal/Version.hpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/markdown/Building.md b/docs/markdown/Building.md index 0d43ad450..3a7f1acf9 100644 --- a/docs/markdown/Building.md +++ b/docs/markdown/Building.md @@ -32,7 +32,7 @@ project("HelloWorld" CXX) add_executable(${PROJECT_NAME} main.cpp) -find_package(NumCpp 2.15.1 REQUIRED) +find_package(NumCpp 2.16.0 REQUIRED) target_link_libraries(${PROJECT_NAME} NumCpp::NumCpp ) @@ -50,7 +50,7 @@ add_executable(${PROJECT_NAME} main.cpp) include(FetchContent) FetchContent_Declare(NumCpp GIT_REPOSITORY https://github.com/dpilger26/NumCpp - GIT_TAG Version_2.15.1) + GIT_TAG Version_2.16.0) FetchContent_MakeAvailable(NumCpp) target_link_libraries(${PROJECT_NAME} diff --git a/docs/markdown/ReleaseNotes.md b/docs/markdown/ReleaseNotes.md index c94cc32c8..4ed21d9ef 100644 --- a/docs/markdown/ReleaseNotes.md +++ b/docs/markdown/ReleaseNotes.md @@ -1,6 +1,6 @@ # Release Notes -## Version 2.15.1 +## Version 2.16.0 * fixed **Issue #144**, `outer` function now operates on arrays of different sizes * fixed **Issue #215**, `pinv` function has been corrected diff --git a/include/NumCpp/Core/Internal/Version.hpp b/include/NumCpp/Core/Internal/Version.hpp index 1184c3698..cbd732b82 100644 --- a/include/NumCpp/Core/Internal/Version.hpp +++ b/include/NumCpp/Core/Internal/Version.hpp @@ -30,5 +30,5 @@ namespace nc { // NOLINTNEXTLINE(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays) - constexpr char VERSION[] = "2.15.1"; ///< Current NumCpp version number + constexpr char VERSION[] = "2.16.0"; ///< Current NumCpp version number } // namespace nc From 03ffa2062b57993710c1f87a3daaec26f3e4d5d3 Mon Sep 17 00:00:00 2001 From: David Pilger Date: Sun, 30 Nov 2025 11:45:02 -0700 Subject: [PATCH 5/5] regenerated docs --- docs/doxygen/html/_a_e_r_8hpp.html | 2 +- docs/doxygen/html/_a_e_r_8hpp_source.html | 2 +- docs/doxygen/html/_a_e_rto_e_c_e_f_8hpp.html | 2 +- .../html/_a_e_rto_e_c_e_f_8hpp_source.html | 2 +- docs/doxygen/html/_a_e_rto_e_n_u_8hpp.html | 2 +- .../html/_a_e_rto_e_n_u_8hpp_source.html | 2 +- docs/doxygen/html/_a_e_rto_l_l_a_8hpp.html | 2 +- .../html/_a_e_rto_l_l_a_8hpp_source.html | 2 +- docs/doxygen/html/_a_e_rto_n_e_d_8hpp.html | 2 +- .../html/_a_e_rto_n_e_d_8hpp_source.html | 2 +- docs/doxygen/html/_binary_logger_8hpp.html | 2 +- .../html/_binary_logger_8hpp_source.html | 2 +- docs/doxygen/html/_bisection_8hpp.html | 2 +- docs/doxygen/html/_bisection_8hpp_source.html | 2 +- docs/doxygen/html/_boost_interface_8hpp.html | 2 +- .../html/_boost_interface_8hpp_source.html | 2 +- .../_boost_numpy_ndarray_helper_8hpp.html | 2 +- ...oost_numpy_ndarray_helper_8hpp_source.html | 2 +- docs/doxygen/html/_boundary_8hpp.html | 2 +- docs/doxygen/html/_boundary_8hpp_source.html | 2 +- docs/doxygen/html/_brent_8hpp.html | 2 +- docs/doxygen/html/_brent_8hpp_source.html | 2 +- docs/doxygen/html/_building_8md.html | 2 +- docs/doxygen/html/_cartesian_8hpp.html | 2 +- docs/doxygen/html/_cartesian_8hpp_source.html | 2 +- docs/doxygen/html/_celestial_8hpp.html | 2 +- docs/doxygen/html/_celestial_8hpp_source.html | 2 +- docs/doxygen/html/_centroid_8hpp.html | 2 +- docs/doxygen/html/_centroid_8hpp_source.html | 2 +- docs/doxygen/html/_clock_8hpp.html | 2 +- docs/doxygen/html/_clock_8hpp_source.html | 2 +- docs/doxygen/html/_cluster_8hpp.html | 2 +- docs/doxygen/html/_cluster_8hpp_source.html | 2 +- docs/doxygen/html/_cluster_maker_8hpp.html | 2 +- .../html/_cluster_maker_8hpp_source.html | 2 +- docs/doxygen/html/_compiler_flags_8md.html | 2 +- ...s_2_reference_frames_2_constants_8hpp.html | 2 +- ...erence_frames_2_constants_8hpp_source.html | 2 +- docs/doxygen/html/_coordinates_8hpp.html | 2 +- .../html/_coordinates_8hpp_source.html | 2 +- docs/doxygen/html/_core_2_constants_8hpp.html | 2 +- .../html/_core_2_constants_8hpp_source.html | 2 +- docs/doxygen/html/_core_2shape_8hpp.html | 2 +- .../html/_core_2shape_8hpp_source.html | 2 +- docs/doxygen/html/_core_8hpp.html | 2 +- docs/doxygen/html/_core_8hpp_source.html | 2 +- docs/doxygen/html/_d_c_m_8hpp.html | 2 +- docs/doxygen/html/_d_c_m_8hpp_source.html | 2 +- docs/doxygen/html/_data_cube_8hpp.html | 2 +- docs/doxygen/html/_data_cube_8hpp_source.html | 2 +- .../html/_date_time_2_date_time_8hpp.html | 2 +- .../_date_time_2_date_time_8hpp_source.html | 2 +- docs/doxygen/html/_date_time_8hpp.html | 2 +- docs/doxygen/html/_date_time_8hpp_source.html | 2 +- docs/doxygen/html/_dekker_8hpp.html | 2 +- docs/doxygen/html/_dekker_8hpp_source.html | 2 +- docs/doxygen/html/_dtype_info_8hpp.html | 2 +- .../doxygen/html/_dtype_info_8hpp_source.html | 2 +- docs/doxygen/html/_e_c_e_f_8hpp.html | 2 +- docs/doxygen/html/_e_c_e_f_8hpp_source.html | 2 +- ..._f_euler_to_e_n_u_roll_pitch_yaw_8hpp.html | 2 +- ...r_to_e_n_u_roll_pitch_yaw_8hpp_source.html | 2 +- ..._f_euler_to_n_e_d_roll_pitch_yaw_8hpp.html | 2 +- ...r_to_n_e_d_roll_pitch_yaw_8hpp_source.html | 2 +- docs/doxygen/html/_e_c_e_fto_a_e_r_8hpp.html | 2 +- .../html/_e_c_e_fto_a_e_r_8hpp_source.html | 2 +- docs/doxygen/html/_e_c_e_fto_e_n_u_8hpp.html | 2 +- .../html/_e_c_e_fto_e_n_u_8hpp_source.html | 2 +- docs/doxygen/html/_e_c_e_fto_l_l_a_8hpp.html | 2 +- .../html/_e_c_e_fto_l_l_a_8hpp_source.html | 2 +- docs/doxygen/html/_e_c_e_fto_n_e_d_8hpp.html | 2 +- .../html/_e_c_e_fto_n_e_d_8hpp_source.html | 2 +- docs/doxygen/html/_e_n_u_8hpp.html | 2 +- docs/doxygen/html/_e_n_u_8hpp_source.html | 2 +- ..._roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html | 2 +- ...itch_yaw_to_e_c_e_f_euler_8hpp_source.html | 2 +- .../_e_n_u_unit_vecs_in_e_c_e_f_8hpp.html | 2 +- ..._n_u_unit_vecs_in_e_c_e_f_8hpp_source.html | 2 +- docs/doxygen/html/_e_n_uto_a_e_r_8hpp.html | 2 +- .../html/_e_n_uto_a_e_r_8hpp_source.html | 2 +- docs/doxygen/html/_e_n_uto_e_c_e_f_8hpp.html | 2 +- .../html/_e_n_uto_e_c_e_f_8hpp_source.html | 2 +- docs/doxygen/html/_e_n_uto_l_l_a_8hpp.html | 2 +- .../html/_e_n_uto_l_l_a_8hpp_source.html | 2 +- docs/doxygen/html/_e_n_uto_n_e_d_8hpp.html | 2 +- .../html/_e_n_uto_n_e_d_8hpp_source.html | 2 +- docs/doxygen/html/_endian_8hpp.html | 2 +- docs/doxygen/html/_endian_8hpp_source.html | 2 +- docs/doxygen/html/_enums_8hpp.html | 2 +- docs/doxygen/html/_enums_8hpp_source.html | 2 +- docs/doxygen/html/_error_8hpp.html | 2 +- docs/doxygen/html/_error_8hpp_source.html | 2 +- docs/doxygen/html/_euler_8hpp.html | 2 +- docs/doxygen/html/_euler_8hpp_source.html | 2 +- docs/doxygen/html/_f_f_t_2_f_f_t_8hpp.html | 2 +- .../html/_f_f_t_2_f_f_t_8hpp_source.html | 2 +- docs/doxygen/html/_f_f_t_8hpp.html | 2 +- docs/doxygen/html/_f_f_t_8hpp_source.html | 2 +- ...r_2_filters_2_filters2d_2laplace_8hpp.html | 2 +- ...ters_2_filters2d_2laplace_8hpp_source.html | 2 +- docs/doxygen/html/_filter_8hpp.html | 2 +- docs/doxygen/html/_filter_8hpp_source.html | 2 +- docs/doxygen/html/_functions_2cube_8hpp.html | 2 +- .../html/_functions_2cube_8hpp_source.html | 2 +- .../doxygen/html/_functions_2interp_8hpp.html | 2 +- .../html/_functions_2interp_8hpp_source.html | 2 +- docs/doxygen/html/_functions_2power_8hpp.html | 2 +- .../html/_functions_2power_8hpp_source.html | 2 +- .../doxygen/html/_functions_2powerf_8hpp.html | 2 +- .../html/_functions_2powerf_8hpp_source.html | 2 +- docs/doxygen/html/_functions_2shape_8hpp.html | 2 +- .../html/_functions_2shape_8hpp_source.html | 2 +- docs/doxygen/html/_functions_8hpp.html | 2 +- docs/doxygen/html/_functions_8hpp_source.html | 2 +- .../html/_gauss_newton_nlls_8cpp-example.html | 2 +- docs/doxygen/html/_geocentric_8hpp.html | 2 +- .../doxygen/html/_geocentric_8hpp_source.html | 2 +- docs/doxygen/html/_image_processing_8hpp.html | 2 +- .../html/_image_processing_8hpp_source.html | 2 +- docs/doxygen/html/_installation_8md.html | 2 +- docs/doxygen/html/_integrate_8hpp.html | 2 +- docs/doxygen/html/_integrate_8hpp_source.html | 2 +- .../_interface_with_eigen_8cpp-example.html | 2 +- ..._interface_with_open_c_v_8cpp-example.html | 2 +- docs/doxygen/html/_iteration_8hpp.html | 2 +- docs/doxygen/html/_iteration_8hpp_source.html | 2 +- docs/doxygen/html/_l_l_a_8hpp.html | 2 +- docs/doxygen/html/_l_l_a_8hpp_source.html | 2 +- docs/doxygen/html/_l_l_ato_a_e_r_8hpp.html | 2 +- .../html/_l_l_ato_a_e_r_8hpp_source.html | 2 +- docs/doxygen/html/_l_l_ato_e_c_e_f_8hpp.html | 2 +- .../html/_l_l_ato_e_c_e_f_8hpp_source.html | 2 +- docs/doxygen/html/_l_l_ato_e_n_u_8hpp.html | 2 +- .../html/_l_l_ato_e_n_u_8hpp_source.html | 2 +- .../html/_l_l_ato_geocentric_8hpp.html | 2 +- .../html/_l_l_ato_geocentric_8hpp_source.html | 2 +- docs/doxygen/html/_l_l_ato_n_e_d_8hpp.html | 2 +- .../html/_l_l_ato_n_e_d_8hpp_source.html | 2 +- docs/doxygen/html/_linalg_8hpp.html | 5 +- docs/doxygen/html/_linalg_8hpp_source.html | 30 +- docs/doxygen/html/_logger_8hpp.html | 2 +- docs/doxygen/html/_logger_8hpp_source.html | 2 +- docs/doxygen/html/_logging_8hpp.html | 2 +- docs/doxygen/html/_logging_8hpp_source.html | 2 +- docs/doxygen/html/_n_e_d_8hpp.html | 2 +- docs/doxygen/html/_n_e_d_8hpp_source.html | 2 +- ..._roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html | 2 +- ...itch_yaw_to_e_c_e_f_euler_8hpp_source.html | 2 +- .../_n_e_d_unit_vecs_in_e_c_e_f_8hpp.html | 2 +- ..._e_d_unit_vecs_in_e_c_e_f_8hpp_source.html | 2 +- docs/doxygen/html/_n_e_dto_a_e_r_8hpp.html | 2 +- .../html/_n_e_dto_a_e_r_8hpp_source.html | 2 +- docs/doxygen/html/_n_e_dto_e_c_e_f_8hpp.html | 2 +- .../html/_n_e_dto_e_c_e_f_8hpp_source.html | 2 +- docs/doxygen/html/_n_e_dto_e_n_u_8hpp.html | 2 +- .../html/_n_e_dto_e_n_u_8hpp_source.html | 2 +- docs/doxygen/html/_n_e_dto_l_l_a_8hpp.html | 2 +- .../html/_n_e_dto_l_l_a_8hpp_source.html | 2 +- docs/doxygen/html/_nd_array_8hpp.html | 2 +- docs/doxygen/html/_nd_array_8hpp_source.html | 2 +- .../html/_nd_array_broadcast_8hpp.html | 2 +- .../html/_nd_array_broadcast_8hpp_source.html | 2 +- docs/doxygen/html/_nd_array_core_8hpp.html | 2 +- .../html/_nd_array_core_8hpp_source.html | 2 +- .../html/_nd_array_iterators_8hpp.html | 2 +- .../html/_nd_array_iterators_8hpp_source.html | 2 +- .../html/_nd_array_operators_8hpp.html | 2 +- .../html/_nd_array_operators_8hpp_source.html | 2 +- docs/doxygen/html/_newton_8hpp.html | 2 +- docs/doxygen/html/_newton_8hpp_source.html | 2 +- docs/doxygen/html/_num_cpp_8hpp.html | 2 +- docs/doxygen/html/_num_cpp_8hpp_source.html | 2 +- docs/doxygen/html/_orientation_8hpp.html | 2 +- .../html/_orientation_8hpp_source.html | 2 +- docs/doxygen/html/_pixel_8hpp.html | 2 +- docs/doxygen/html/_pixel_8hpp_source.html | 2 +- docs/doxygen/html/_poly1d_8hpp.html | 2 +- docs/doxygen/html/_poly1d_8hpp_source.html | 2 +- docs/doxygen/html/_polynomial_8hpp.html | 2 +- .../doxygen/html/_polynomial_8hpp_source.html | 2 +- docs/doxygen/html/_pybind_interface_8hpp.html | 2 +- .../html/_pybind_interface_8hpp_source.html | 2 +- docs/doxygen/html/_python_interface_8hpp.html | 2 +- .../html/_python_interface_8hpp_source.html | 2 +- docs/doxygen/html/_quaternion_8hpp.html | 2 +- .../doxygen/html/_quaternion_8hpp_source.html | 2 +- docs/doxygen/html/_r_e_a_d_m_e_8md.html | 2 +- docs/doxygen/html/_r_n_g_8hpp.html | 2 +- docs/doxygen/html/_r_n_g_8hpp_source.html | 2 +- .../doxygen/html/_random_2bernoulli_8hpp.html | 2 +- .../html/_random_2bernoulli_8hpp_source.html | 2 +- docs/doxygen/html/_random_2beta_8hpp.html | 2 +- .../html/_random_2beta_8hpp_source.html | 2 +- docs/doxygen/html/_random_2gamma_8hpp.html | 2 +- .../html/_random_2gamma_8hpp_source.html | 2 +- docs/doxygen/html/_random_2laplace_8hpp.html | 2 +- .../html/_random_2laplace_8hpp_source.html | 2 +- docs/doxygen/html/_random_8hpp.html | 2 +- docs/doxygen/html/_random_8hpp_source.html | 2 +- docs/doxygen/html/_read_me_8cpp-example.html | 10 +- docs/doxygen/html/_reference_frames_8hpp.html | 2 +- .../html/_reference_frames_8hpp_source.html | 2 +- docs/doxygen/html/_release_notes_8md.html | 2 +- docs/doxygen/html/_roots_8hpp.html | 2 +- docs/doxygen/html/_roots_8hpp_source.html | 2 +- docs/doxygen/html/_rotations_8hpp.html | 2 +- docs/doxygen/html/_rotations_8hpp_source.html | 2 +- docs/doxygen/html/_s_v_d_class_8hpp.js | 4 - .../html/_s_v_d_class_8hpp_source.html | 746 ------------------ docs/doxygen/html/_secant_8hpp.html | 2 +- docs/doxygen/html/_secant_8hpp_source.html | 2 +- docs/doxygen/html/_slice_8hpp.html | 2 +- docs/doxygen/html/_slice_8hpp_source.html | 2 +- .../html/_special_2bernoulli_8hpp.html | 2 +- .../html/_special_2bernoulli_8hpp_source.html | 2 +- docs/doxygen/html/_special_2beta_8hpp.html | 2 +- .../html/_special_2beta_8hpp_source.html | 2 +- docs/doxygen/html/_special_2gamma_8hpp.html | 2 +- .../html/_special_2gamma_8hpp_source.html | 2 +- docs/doxygen/html/_special_8hpp.html | 2 +- docs/doxygen/html/_special_8hpp_source.html | 2 +- docs/doxygen/html/_static_asserts_8hpp.html | 2 +- .../html/_static_asserts_8hpp_source.html | 2 +- .../html/_std_complex_operators_8hpp.html | 2 +- .../_std_complex_operators_8hpp_source.html | 2 +- docs/doxygen/html/_stl_algorithms_8hpp.html | 2 +- .../html/_stl_algorithms_8hpp_source.html | 2 +- docs/doxygen/html/_timer_8hpp.html | 2 +- docs/doxygen/html/_timer_8hpp_source.html | 2 +- docs/doxygen/html/_transforms_8hpp.html | 2 +- .../doxygen/html/_transforms_8hpp_source.html | 2 +- docs/doxygen/html/_type_traits_8hpp.html | 2 +- .../html/_type_traits_8hpp_source.html | 2 +- docs/doxygen/html/_types_8hpp.html | 2 +- docs/doxygen/html/_types_8hpp_source.html | 2 +- docs/doxygen/html/_utils_2cube_8hpp.html | 2 +- .../html/_utils_2cube_8hpp_source.html | 2 +- docs/doxygen/html/_utils_2interp_8hpp.html | 2 +- .../html/_utils_2interp_8hpp_source.html | 2 +- docs/doxygen/html/_utils_2power_8hpp.html | 2 +- .../html/_utils_2power_8hpp_source.html | 2 +- docs/doxygen/html/_utils_2powerf_8hpp.html | 2 +- .../html/_utils_2powerf_8hpp_source.html | 2 +- docs/doxygen/html/_utils_8hpp.html | 2 +- docs/doxygen/html/_utils_8hpp_source.html | 2 +- docs/doxygen/html/_vec2_8hpp.html | 2 +- docs/doxygen/html/_vec2_8hpp_source.html | 2 +- docs/doxygen/html/_vec3_8hpp.html | 2 +- docs/doxygen/html/_vec3_8hpp_source.html | 2 +- docs/doxygen/html/_vector_8hpp.html | 2 +- docs/doxygen/html/_vector_8hpp_source.html | 2 +- docs/doxygen/html/_version_8hpp.html | 4 +- docs/doxygen/html/_version_8hpp_source.html | 4 +- docs/doxygen/html/abs_8hpp.html | 2 +- docs/doxygen/html/abs_8hpp_source.html | 2 +- docs/doxygen/html/add_8hpp.html | 2 +- docs/doxygen/html/add_8hpp_source.html | 2 +- docs/doxygen/html/add_boundary1d_8hpp.html | 2 +- .../html/add_boundary1d_8hpp_source.html | 2 +- docs/doxygen/html/add_boundary2d_8hpp.html | 2 +- .../html/add_boundary2d_8hpp_source.html | 2 +- docs/doxygen/html/airy__ai_8hpp.html | 2 +- docs/doxygen/html/airy__ai_8hpp_source.html | 2 +- docs/doxygen/html/airy__ai__prime_8hpp.html | 2 +- .../html/airy__ai__prime_8hpp_source.html | 2 +- docs/doxygen/html/airy__bi_8hpp.html | 2 +- docs/doxygen/html/airy__bi_8hpp_source.html | 2 +- docs/doxygen/html/airy__bi__prime_8hpp.html | 2 +- .../html/airy__bi__prime_8hpp_source.html | 2 +- docs/doxygen/html/alen_8hpp.html | 2 +- docs/doxygen/html/alen_8hpp_source.html | 2 +- docs/doxygen/html/all_8hpp.html | 2 +- docs/doxygen/html/all_8hpp_source.html | 2 +- docs/doxygen/html/allclose_8hpp.html | 2 +- docs/doxygen/html/allclose_8hpp_source.html | 2 +- docs/doxygen/html/amax_8hpp.html | 2 +- docs/doxygen/html/amax_8hpp_source.html | 2 +- docs/doxygen/html/amin_8hpp.html | 2 +- docs/doxygen/html/amin_8hpp_source.html | 2 +- docs/doxygen/html/angle_8hpp.html | 2 +- docs/doxygen/html/angle_8hpp_source.html | 2 +- docs/doxygen/html/annotated.html | 4 +- docs/doxygen/html/any_8hpp.html | 2 +- docs/doxygen/html/any_8hpp_source.html | 2 +- docs/doxygen/html/append_8hpp.html | 2 +- docs/doxygen/html/append_8hpp_source.html | 2 +- docs/doxygen/html/apply_function_8hpp.html | 2 +- .../html/apply_function_8hpp_source.html | 2 +- docs/doxygen/html/apply_poly1d_8hpp.html | 2 +- .../html/apply_poly1d_8hpp_source.html | 2 +- docs/doxygen/html/apply_threshold_8hpp.html | 2 +- .../html/apply_threshold_8hpp_source.html | 2 +- docs/doxygen/html/arange_8hpp.html | 2 +- docs/doxygen/html/arange_8hpp_source.html | 2 +- docs/doxygen/html/arccos_8hpp.html | 2 +- docs/doxygen/html/arccos_8hpp_source.html | 2 +- docs/doxygen/html/arccosh_8hpp.html | 2 +- docs/doxygen/html/arccosh_8hpp_source.html | 2 +- docs/doxygen/html/arcsin_8hpp.html | 2 +- docs/doxygen/html/arcsin_8hpp_source.html | 2 +- docs/doxygen/html/arcsinh_8hpp.html | 2 +- docs/doxygen/html/arcsinh_8hpp_source.html | 2 +- docs/doxygen/html/arctan2_8hpp.html | 2 +- docs/doxygen/html/arctan2_8hpp_source.html | 2 +- docs/doxygen/html/arctan_8hpp.html | 2 +- docs/doxygen/html/arctan_8hpp_source.html | 2 +- docs/doxygen/html/arctanh_8hpp.html | 2 +- docs/doxygen/html/arctanh_8hpp_source.html | 2 +- docs/doxygen/html/argmax_8hpp.html | 2 +- docs/doxygen/html/argmax_8hpp_source.html | 2 +- docs/doxygen/html/argmin_8hpp.html | 2 +- docs/doxygen/html/argmin_8hpp_source.html | 2 +- docs/doxygen/html/argpartition_8hpp.html | 2 +- .../html/argpartition_8hpp_source.html | 2 +- docs/doxygen/html/argsort_8hpp.html | 2 +- docs/doxygen/html/argsort_8hpp_source.html | 2 +- docs/doxygen/html/argwhere_8hpp.html | 2 +- docs/doxygen/html/argwhere_8hpp_source.html | 2 +- docs/doxygen/html/around_8hpp.html | 2 +- docs/doxygen/html/around_8hpp_source.html | 2 +- docs/doxygen/html/array__equal_8hpp.html | 2 +- .../html/array__equal_8hpp_source.html | 2 +- docs/doxygen/html/array__equiv_8hpp.html | 2 +- .../html/array__equiv_8hpp_source.html | 2 +- docs/doxygen/html/asarray_8hpp.html | 2 +- docs/doxygen/html/asarray_8hpp_source.html | 2 +- docs/doxygen/html/astype_8hpp.html | 2 +- docs/doxygen/html/astype_8hpp_source.html | 2 +- docs/doxygen/html/average_8hpp.html | 2 +- docs/doxygen/html/average_8hpp_source.html | 2 +- docs/doxygen/html/bartlett_8hpp.html | 2 +- docs/doxygen/html/bartlett_8hpp_source.html | 2 +- docs/doxygen/html/bessel__in_8hpp.html | 2 +- docs/doxygen/html/bessel__in_8hpp_source.html | 2 +- docs/doxygen/html/bessel__in__prime_8hpp.html | 2 +- .../html/bessel__in__prime_8hpp_source.html | 2 +- docs/doxygen/html/bessel__jn_8hpp.html | 2 +- docs/doxygen/html/bessel__jn_8hpp_source.html | 2 +- docs/doxygen/html/bessel__jn__prime_8hpp.html | 2 +- .../html/bessel__jn__prime_8hpp_source.html | 2 +- docs/doxygen/html/bessel__kn_8hpp.html | 2 +- docs/doxygen/html/bessel__kn_8hpp_source.html | 2 +- docs/doxygen/html/bessel__kn__prime_8hpp.html | 2 +- .../html/bessel__kn__prime_8hpp_source.html | 2 +- docs/doxygen/html/bessel__yn_8hpp.html | 2 +- docs/doxygen/html/bessel__yn_8hpp_source.html | 2 +- docs/doxygen/html/bessel__yn__prime_8hpp.html | 2 +- .../html/bessel__yn__prime_8hpp_source.html | 2 +- docs/doxygen/html/binary_repr_8hpp.html | 2 +- .../doxygen/html/binary_repr_8hpp_source.html | 2 +- docs/doxygen/html/bincount_8hpp.html | 2 +- docs/doxygen/html/bincount_8hpp_source.html | 2 +- docs/doxygen/html/binomial_8hpp.html | 2 +- docs/doxygen/html/binomial_8hpp_source.html | 2 +- docs/doxygen/html/bit__count_8hpp.html | 2 +- docs/doxygen/html/bit__count_8hpp_source.html | 2 +- docs/doxygen/html/bitwise__and_8hpp.html | 2 +- .../html/bitwise__and_8hpp_source.html | 2 +- docs/doxygen/html/bitwise__not_8hpp.html | 2 +- .../html/bitwise__not_8hpp_source.html | 2 +- docs/doxygen/html/bitwise__or_8hpp.html | 2 +- .../doxygen/html/bitwise__or_8hpp_source.html | 2 +- docs/doxygen/html/bitwise__xor_8hpp.html | 2 +- .../html/bitwise__xor_8hpp_source.html | 2 +- docs/doxygen/html/blackman_8hpp.html | 2 +- docs/doxygen/html/blackman_8hpp_source.html | 2 +- docs/doxygen/html/byteswap_8hpp.html | 2 +- docs/doxygen/html/byteswap_8hpp_source.html | 2 +- docs/doxygen/html/cauchy_8hpp.html | 2 +- docs/doxygen/html/cauchy_8hpp_source.html | 2 +- docs/doxygen/html/cbrt_8hpp.html | 2 +- docs/doxygen/html/cbrt_8hpp_source.html | 2 +- docs/doxygen/html/ceil_8hpp.html | 2 +- docs/doxygen/html/ceil_8hpp_source.html | 2 +- docs/doxygen/html/center_of_mass_8hpp.html | 2 +- .../html/center_of_mass_8hpp_source.html | 2 +- docs/doxygen/html/centroid_clusters_8hpp.html | 2 +- .../html/centroid_clusters_8hpp_source.html | 2 +- docs/doxygen/html/chebyshev__t_8hpp.html | 2 +- .../html/chebyshev__t_8hpp_source.html | 2 +- docs/doxygen/html/chebyshev__u_8hpp.html | 2 +- .../html/chebyshev__u_8hpp_source.html | 2 +- docs/doxygen/html/chi_square_8hpp.html | 2 +- docs/doxygen/html/chi_square_8hpp_source.html | 2 +- docs/doxygen/html/choice_8hpp.html | 2 +- docs/doxygen/html/choice_8hpp_source.html | 2 +- docs/doxygen/html/cholesky_8hpp.html | 2 +- docs/doxygen/html/cholesky_8hpp_source.html | 2 +- docs/doxygen/html/classes.html | 2 +- docs/doxygen/html/classnc_1_1_data_cube.html | 2 +- docs/doxygen/html/classnc_1_1_date_time.html | 2 +- docs/doxygen/html/classnc_1_1_dtype_info.html | 2 +- ..._01std_1_1complex_3_01dtype_01_4_01_4.html | 2 +- docs/doxygen/html/classnc_1_1_nd_array.html | 2 +- .../classnc_1_1_nd_array_column_iterator.html | 2 +- ...nc_1_1_nd_array_const_column_iterator.html | 2 +- .../classnc_1_1_nd_array_const_iterator.html | 2 +- .../html/classnc_1_1_nd_array_iterator.html | 2 +- docs/doxygen/html/classnc_1_1_shape.html | 2 +- docs/doxygen/html/classnc_1_1_slice.html | 2 +- docs/doxygen/html/classnc_1_1_timer.html | 2 +- docs/doxygen/html/classnc_1_1_vec2.html | 2 +- docs/doxygen/html/classnc_1_1_vec3.html | 2 +- .../classnc_1_1coordinates_1_1_cartesian.html | 2 +- .../classnc_1_1coordinates_1_1_euler.html | 2 +- ...lassnc_1_1coordinates_1_1_orientation.html | 2 +- ...inates_1_1reference__frames_1_1_a_e_r.html | 2 +- ...es_1_1reference__frames_1_1_celestial.html | 2 +- ...rdinates_1_1reference__frames_1_1_dec.html | 2 +- ...ates_1_1reference__frames_1_1_e_c_e_f.html | 2 +- ...inates_1_1reference__frames_1_1_e_n_u.html | 2 +- ...s_1_1reference__frames_1_1_geocentric.html | 2 +- ...inates_1_1reference__frames_1_1_l_l_a.html | 2 +- ...inates_1_1reference__frames_1_1_n_e_d.html | 2 +- ...rdinates_1_1reference__frames_1_1_r_a.html | 2 +- ...ssnc_1_1image_processing_1_1_centroid.html | 2 +- ...assnc_1_1image_processing_1_1_cluster.html | 2 +- ...1_1image_processing_1_1_cluster_maker.html | 2 +- ...classnc_1_1image_processing_1_1_pixel.html | 2 +- ..._1_1integrate_1_1_legendre_polynomial.html | 2 +- .../html/classnc_1_1linalg_1_1_s_v_d.html | 207 +++-- .../html/classnc_1_1linalg_1_1_s_v_d.js | 13 +- .../classnc_1_1logger_1_1_binary_logger.html | 2 +- ...gger_1_1detail_1_1_binary_data_logger.html | 2 +- ...ail_1_1type__traits_1_1has__serialize.html | 2 +- ...id__te6ccce939d7e8d93862519645c528e31.html | 2 +- .../classnc_1_1polynomial_1_1_poly1d.html | 2 +- .../html/classnc_1_1random_1_1_r_n_g.html | 2 +- .../html/classnc_1_1roots_1_1_bisection.html | 2 +- .../html/classnc_1_1roots_1_1_brent.html | 2 +- .../html/classnc_1_1roots_1_1_dekker.html | 2 +- .../html/classnc_1_1roots_1_1_iteration.html | 2 +- .../html/classnc_1_1roots_1_1_newton.html | 2 +- .../html/classnc_1_1roots_1_1_secant.html | 2 +- .../html/classnc_1_1rotations_1_1_d_c_m.html | 2 +- .../classnc_1_1rotations_1_1_quaternion.html | 2 +- docs/doxygen/html/clip_8hpp.html | 2 +- docs/doxygen/html/clip_8hpp_source.html | 2 +- docs/doxygen/html/cluster_pixels_8hpp.html | 2 +- .../html/cluster_pixels_8hpp_source.html | 2 +- docs/doxygen/html/cnr_8hpp.html | 2 +- docs/doxygen/html/cnr_8hpp_source.html | 2 +- docs/doxygen/html/column__stack_8hpp.html | 2 +- .../html/column__stack_8hpp_source.html | 2 +- docs/doxygen/html/comp__ellint__1_8hpp.html | 2 +- .../html/comp__ellint__1_8hpp_source.html | 2 +- docs/doxygen/html/comp__ellint__2_8hpp.html | 2 +- .../html/comp__ellint__2_8hpp_source.html | 2 +- docs/doxygen/html/comp__ellint__3_8hpp.html | 2 +- .../html/comp__ellint__3_8hpp_source.html | 2 +- .../complementary_mean_filter1d_8hpp.html | 2 +- ...mplementary_mean_filter1d_8hpp_source.html | 2 +- .../html/complementary_mean_filter_8hpp.html | 2 +- ...complementary_mean_filter_8hpp_source.html | 2 +- .../complementary_median_filter1d_8hpp.html | 2 +- ...lementary_median_filter1d_8hpp_source.html | 2 +- .../complementary_median_filter_8hpp.html | 2 +- ...mplementary_median_filter_8hpp_source.html | 2 +- docs/doxygen/html/complex_8hpp.html | 2 +- docs/doxygen/html/complex_8hpp_source.html | 2 +- docs/doxygen/html/concatenate_8hpp.html | 2 +- .../doxygen/html/concatenate_8hpp_source.html | 2 +- docs/doxygen/html/conj_8hpp.html | 2 +- docs/doxygen/html/conj_8hpp_source.html | 2 +- docs/doxygen/html/constant1d_8hpp.html | 2 +- docs/doxygen/html/constant1d_8hpp_source.html | 2 +- docs/doxygen/html/constant2d_8hpp.html | 2 +- docs/doxygen/html/constant2d_8hpp_source.html | 2 +- docs/doxygen/html/contains_8hpp.html | 2 +- docs/doxygen/html/contains_8hpp_source.html | 2 +- docs/doxygen/html/convolve1d_8hpp.html | 2 +- docs/doxygen/html/convolve1d_8hpp_source.html | 2 +- docs/doxygen/html/convolve_8hpp.html | 2 +- docs/doxygen/html/convolve_8hpp_source.html | 2 +- docs/doxygen/html/copy_8hpp.html | 2 +- docs/doxygen/html/copy_8hpp_source.html | 2 +- docs/doxygen/html/copy_sign_8hpp.html | 2 +- docs/doxygen/html/copy_sign_8hpp_source.html | 2 +- docs/doxygen/html/copyto_8hpp.html | 2 +- docs/doxygen/html/copyto_8hpp_source.html | 2 +- docs/doxygen/html/corrcoef_8hpp.html | 2 +- docs/doxygen/html/corrcoef_8hpp_source.html | 2 +- docs/doxygen/html/cos_8hpp.html | 2 +- docs/doxygen/html/cos_8hpp_source.html | 2 +- docs/doxygen/html/cosh_8hpp.html | 2 +- docs/doxygen/html/cosh_8hpp_source.html | 2 +- docs/doxygen/html/count__nonzero_8hpp.html | 2 +- .../html/count__nonzero_8hpp_source.html | 2 +- docs/doxygen/html/cov_8hpp.html | 2 +- docs/doxygen/html/cov_8hpp_source.html | 2 +- docs/doxygen/html/cov__inv_8hpp.html | 2 +- docs/doxygen/html/cov__inv_8hpp_source.html | 2 +- docs/doxygen/html/cross_8hpp.html | 2 +- docs/doxygen/html/cross_8hpp_source.html | 2 +- docs/doxygen/html/cumprod_8hpp.html | 2 +- docs/doxygen/html/cumprod_8hpp_source.html | 2 +- docs/doxygen/html/cumsum_8hpp.html | 2 +- docs/doxygen/html/cumsum_8hpp_source.html | 2 +- docs/doxygen/html/cyclic__hankel__1_8hpp.html | 2 +- .../html/cyclic__hankel__1_8hpp_source.html | 2 +- docs/doxygen/html/cyclic__hankel__2_8hpp.html | 2 +- .../html/cyclic__hankel__2_8hpp_source.html | 2 +- docs/doxygen/html/deg2rad_8hpp.html | 2 +- docs/doxygen/html/deg2rad_8hpp_source.html | 2 +- docs/doxygen/html/degrees_8hpp.html | 2 +- docs/doxygen/html/degrees_8hpp_source.html | 2 +- docs/doxygen/html/delete_indices_8hpp.html | 2 +- .../html/delete_indices_8hpp_source.html | 2 +- docs/doxygen/html/det_8hpp.html | 2 +- docs/doxygen/html/det_8hpp_source.html | 2 +- docs/doxygen/html/diag_8hpp.html | 2 +- docs/doxygen/html/diag_8hpp_source.html | 2 +- docs/doxygen/html/diagflat_8hpp.html | 2 +- docs/doxygen/html/diagflat_8hpp_source.html | 2 +- docs/doxygen/html/diagonal_8hpp.html | 2 +- docs/doxygen/html/diagonal_8hpp_source.html | 2 +- docs/doxygen/html/diff_8hpp.html | 2 +- docs/doxygen/html/diff_8hpp_source.html | 2 +- docs/doxygen/html/digamma_8hpp.html | 2 +- docs/doxygen/html/digamma_8hpp_source.html | 2 +- docs/doxygen/html/digitize_8hpp.html | 2 +- docs/doxygen/html/digitize_8hpp_source.html | 2 +- .../dir_093b14450e434accd2cde91cedff0d18.html | 4 +- .../dir_093b14450e434accd2cde91cedff0d18.js | 2 +- .../dir_0d1ba73aea39371457827a684d239ae8.html | 2 +- .../dir_10b69f38d52e59bd23d9fc1937bea22a.html | 2 +- .../dir_135bbb5e4eb4ddbda27ac0540001f7fd.html | 2 +- .../dir_22368e90b3593b912515c50bf54c969c.html | 2 +- .../dir_2e8552338a5fe196f81c9ab4a461b773.html | 2 +- .../dir_34171bd951b13a53aa9f237277a18e40.html | 2 +- .../dir_3762e5d1d8eae0347117ff18be7f517d.html | 2 +- .../dir_49e56c817e5e54854c35e136979f97ca.html | 2 +- .../dir_5cccc998a857696e320833db04811b65.html | 2 +- .../dir_5de075070a423c280ad6ed943802bf75.html | 2 +- .../dir_6282b7c0ec828c4b60830a3c405ff9e8.html | 2 +- .../dir_812c63cdb45b3d369433603c764d8ca4.html | 2 +- .../dir_821f0d92e31f34ac47de77ab611d6024.html | 2 +- .../dir_8e10c5302eb28a2724f15da9a6fa6b15.html | 2 +- .../dir_9051d82ec7b39b1c992f5bf2868571ca.html | 2 +- .../dir_953ac13dcbfb3e70ef6edb1a0956b929.html | 2 +- .../dir_a0b3eef1c4a290b815c33ad6e7027cf3.html | 2 +- .../dir_ad9a75b0e29f8223a99c87bd9504b7c3.html | 2 +- .../dir_b095eef7754acf39fdbf777c56c024ce.html | 2 +- .../dir_b6a8313716ea291fbd26120862b344bc.html | 2 +- .../dir_cac3062759fc9841f0966ab05282555a.html | 2 +- .../dir_ccac4f9986402d0375bdb0274c573e10.html | 2 +- .../dir_d4391026049f7aede16e9c18d53d30b9.html | 2 +- .../dir_d44c64559bbebec7f509842c48db8b23.html | 2 +- .../dir_d784f51d362276329e5940df711baf3d.html | 8 +- .../dir_d784f51d362276329e5940df711baf3d.js | 5 +- .../dir_e70e3c350b58629b2f80cdf8725e71de.html | 2 +- .../dir_f27b6096a19b08ebde950a57474879cd.html | 2 +- .../dir_f7abd548f101bada8968797392787ec9.html | 2 +- .../dir_f80dee9f889b1b78f4bee16631eb7d22.html | 2 +- .../dir_f90046d65afb3a2155c6821b6375e74f.html | 2 +- .../dir_fd15cf3044ef18c575a802718b3c6ac6.html | 2 +- .../dir_fda794c261a16a342ab8761046b335b7.html | 2 +- docs/doxygen/html/discrete_8hpp.html | 2 +- docs/doxygen/html/discrete_8hpp_source.html | 2 +- docs/doxygen/html/divide_8hpp.html | 2 +- docs/doxygen/html/divide_8hpp_source.html | 2 +- docs/doxygen/html/divmod_8hpp.html | 2 +- docs/doxygen/html/divmod_8hpp_source.html | 2 +- docs/doxygen/html/dot_8hpp.html | 2 +- docs/doxygen/html/dot_8hpp_source.html | 2 +- docs/doxygen/html/dump_8hpp.html | 2 +- docs/doxygen/html/dump_8hpp_source.html | 2 +- docs/doxygen/html/eig_8hpp.html | 161 ++++ docs/doxygen/html/eig_8hpp.js | 4 + docs/doxygen/html/eig_8hpp_source.html | 264 +++++++ docs/doxygen/html/eigvals_8hpp.html | 159 ++++ docs/doxygen/html/eigvals_8hpp.js | 4 + docs/doxygen/html/eigvals_8hpp_source.html | 167 ++++ docs/doxygen/html/ellint__1_8hpp.html | 2 +- docs/doxygen/html/ellint__1_8hpp_source.html | 2 +- docs/doxygen/html/ellint__2_8hpp.html | 2 +- docs/doxygen/html/ellint__2_8hpp_source.html | 2 +- docs/doxygen/html/ellint__3_8hpp.html | 2 +- docs/doxygen/html/ellint__3_8hpp_source.html | 2 +- docs/doxygen/html/empty_8hpp.html | 2 +- docs/doxygen/html/empty_8hpp_source.html | 2 +- docs/doxygen/html/empty__like_8hpp.html | 2 +- .../doxygen/html/empty__like_8hpp_source.html | 2 +- docs/doxygen/html/endianess_8hpp.html | 2 +- docs/doxygen/html/endianess_8hpp_source.html | 2 +- docs/doxygen/html/equal_8hpp.html | 2 +- docs/doxygen/html/equal_8hpp_source.html | 2 +- docs/doxygen/html/erf_8hpp.html | 2 +- docs/doxygen/html/erf_8hpp_source.html | 2 +- docs/doxygen/html/erf__inv_8hpp.html | 2 +- docs/doxygen/html/erf__inv_8hpp_source.html | 2 +- docs/doxygen/html/erfc_8hpp.html | 2 +- docs/doxygen/html/erfc_8hpp_source.html | 2 +- docs/doxygen/html/erfc__inv_8hpp.html | 2 +- docs/doxygen/html/erfc__inv_8hpp_source.html | 2 +- docs/doxygen/html/essentially_equal_8hpp.html | 2 +- .../html/essentially_equal_8hpp_source.html | 2 +- .../html/essentially_equal_complex_8hpp.html | 2 +- ...essentially_equal_complex_8hpp_source.html | 2 +- docs/doxygen/html/examples.html | 2 +- docs/doxygen/html/exp2_8hpp.html | 2 +- docs/doxygen/html/exp2_8hpp_source.html | 2 +- docs/doxygen/html/exp_8hpp.html | 2 +- docs/doxygen/html/exp_8hpp_source.html | 2 +- docs/doxygen/html/expint_8hpp.html | 2 +- docs/doxygen/html/expint_8hpp_source.html | 2 +- docs/doxygen/html/expm1_8hpp.html | 2 +- docs/doxygen/html/expm1_8hpp_source.html | 2 +- docs/doxygen/html/exponential_8hpp.html | 2 +- .../doxygen/html/exponential_8hpp_source.html | 2 +- docs/doxygen/html/extract_8hpp.html | 2 +- docs/doxygen/html/extract_8hpp_source.html | 2 +- docs/doxygen/html/extreme_value_8hpp.html | 2 +- .../html/extreme_value_8hpp_source.html | 2 +- docs/doxygen/html/eye_8hpp.html | 2 +- docs/doxygen/html/eye_8hpp_source.html | 2 +- docs/doxygen/html/f_8hpp.html | 2 +- docs/doxygen/html/f_8hpp_source.html | 2 +- docs/doxygen/html/factorial_8hpp.html | 2 +- docs/doxygen/html/factorial_8hpp_source.html | 2 +- docs/doxygen/html/fft2_8hpp.html | 2 +- docs/doxygen/html/fft2_8hpp_source.html | 2 +- docs/doxygen/html/fftfreq_8hpp.html | 2 +- docs/doxygen/html/fftfreq_8hpp_source.html | 2 +- docs/doxygen/html/fftshift_8hpp.html | 2 +- docs/doxygen/html/fftshift_8hpp_source.html | 2 +- docs/doxygen/html/files.html | 29 +- docs/doxygen/html/fill_corners_8hpp.html | 2 +- .../html/fill_corners_8hpp_source.html | 2 +- docs/doxygen/html/fill_diagnol_8hpp.html | 2 +- .../html/fill_diagnol_8hpp_source.html | 2 +- docs/doxygen/html/find_8hpp.html | 2 +- docs/doxygen/html/find_8hpp_source.html | 2 +- docs/doxygen/html/find__duplicates_8hpp.html | 2 +- .../html/find__duplicates_8hpp_source.html | 2 +- docs/doxygen/html/fix_8hpp.html | 2 +- docs/doxygen/html/fix_8hpp_source.html | 2 +- docs/doxygen/html/flatnonzero_8hpp.html | 2 +- .../doxygen/html/flatnonzero_8hpp_source.html | 2 +- docs/doxygen/html/flatten_8hpp.html | 2 +- docs/doxygen/html/flatten_8hpp_source.html | 2 +- docs/doxygen/html/flip_8hpp.html | 2 +- docs/doxygen/html/flip_8hpp_source.html | 2 +- docs/doxygen/html/fliplr_8hpp.html | 2 +- docs/doxygen/html/fliplr_8hpp_source.html | 2 +- docs/doxygen/html/flipud_8hpp.html | 2 +- docs/doxygen/html/flipud_8hpp_source.html | 2 +- docs/doxygen/html/floor_8hpp.html | 2 +- docs/doxygen/html/floor_8hpp_source.html | 2 +- docs/doxygen/html/floor__divide_8hpp.html | 2 +- .../html/floor__divide_8hpp_source.html | 2 +- docs/doxygen/html/fmax_8hpp.html | 2 +- docs/doxygen/html/fmax_8hpp_source.html | 2 +- docs/doxygen/html/fmin_8hpp.html | 2 +- docs/doxygen/html/fmin_8hpp_source.html | 2 +- docs/doxygen/html/fmod_8hpp.html | 2 +- docs/doxygen/html/fmod_8hpp_source.html | 2 +- docs/doxygen/html/frombuffer_8hpp.html | 2 +- docs/doxygen/html/frombuffer_8hpp_source.html | 2 +- docs/doxygen/html/fromfile_8hpp.html | 2 +- docs/doxygen/html/fromfile_8hpp_source.html | 2 +- docs/doxygen/html/fromfunction_8hpp.html | 2 +- .../html/fromfunction_8hpp_source.html | 2 +- docs/doxygen/html/fromiter_8hpp.html | 2 +- docs/doxygen/html/fromiter_8hpp_source.html | 2 +- docs/doxygen/html/fromstring_8hpp.html | 2 +- docs/doxygen/html/fromstring_8hpp_source.html | 2 +- docs/doxygen/html/full_8hpp.html | 2 +- docs/doxygen/html/full_8hpp_source.html | 2 +- docs/doxygen/html/full__like_8hpp.html | 2 +- docs/doxygen/html/full__like_8hpp_source.html | 2 +- docs/doxygen/html/functions.html | 2 +- docs/doxygen/html/functions_b.html | 2 +- docs/doxygen/html/functions_c.html | 2 +- docs/doxygen/html/functions_d.html | 2 +- docs/doxygen/html/functions_e.html | 2 +- docs/doxygen/html/functions_enum.html | 2 +- docs/doxygen/html/functions_f.html | 2 +- docs/doxygen/html/functions_func.html | 2 +- docs/doxygen/html/functions_func_b.html | 2 +- docs/doxygen/html/functions_func_c.html | 2 +- docs/doxygen/html/functions_func_d.html | 2 +- docs/doxygen/html/functions_func_e.html | 2 +- docs/doxygen/html/functions_func_f.html | 2 +- docs/doxygen/html/functions_func_g.html | 2 +- docs/doxygen/html/functions_func_h.html | 2 +- docs/doxygen/html/functions_func_i.html | 2 +- docs/doxygen/html/functions_func_j.html | 2 +- docs/doxygen/html/functions_func_k.html | 2 +- docs/doxygen/html/functions_func_l.html | 3 +- docs/doxygen/html/functions_func_m.html | 2 +- docs/doxygen/html/functions_func_n.html | 2 +- docs/doxygen/html/functions_func_o.html | 2 +- docs/doxygen/html/functions_func_p.html | 5 +- docs/doxygen/html/functions_func_q.html | 2 +- docs/doxygen/html/functions_func_r.html | 4 +- docs/doxygen/html/functions_func_s.html | 11 +- docs/doxygen/html/functions_func_t.html | 2 +- docs/doxygen/html/functions_func_u.html | 4 +- docs/doxygen/html/functions_func_v.html | 4 +- docs/doxygen/html/functions_func_w.html | 2 +- docs/doxygen/html/functions_func_x.html | 2 +- docs/doxygen/html/functions_func_y.html | 2 +- docs/doxygen/html/functions_func_z.html | 2 +- docs/doxygen/html/functions_func_~.html | 2 +- docs/doxygen/html/functions_g.html | 2 +- docs/doxygen/html/functions_h.html | 2 +- docs/doxygen/html/functions_i.html | 2 +- docs/doxygen/html/functions_j.html | 2 +- docs/doxygen/html/functions_k.html | 2 +- docs/doxygen/html/functions_l.html | 3 +- docs/doxygen/html/functions_m.html | 2 +- docs/doxygen/html/functions_n.html | 2 +- docs/doxygen/html/functions_o.html | 2 +- docs/doxygen/html/functions_p.html | 3 +- docs/doxygen/html/functions_q.html | 2 +- docs/doxygen/html/functions_r.html | 4 +- docs/doxygen/html/functions_rela.html | 2 +- docs/doxygen/html/functions_s.html | 15 +- docs/doxygen/html/functions_t.html | 3 +- docs/doxygen/html/functions_type.html | 2 +- docs/doxygen/html/functions_u.html | 4 +- docs/doxygen/html/functions_v.html | 4 +- docs/doxygen/html/functions_vars.html | 3 +- docs/doxygen/html/functions_w.html | 2 +- docs/doxygen/html/functions_x.html | 2 +- docs/doxygen/html/functions_y.html | 2 +- docs/doxygen/html/functions_z.html | 2 +- docs/doxygen/html/functions_~.html | 2 +- docs/doxygen/html/gamma1pm1_8hpp.html | 2 +- docs/doxygen/html/gamma1pm1_8hpp_source.html | 2 +- docs/doxygen/html/gauss__legendre_8hpp.html | 2 +- .../html/gauss__legendre_8hpp_source.html | 2 +- docs/doxygen/html/gauss_newton_nlls_8hpp.html | 2 +- .../html/gauss_newton_nlls_8hpp_source.html | 2 +- docs/doxygen/html/gaussian1d_8hpp.html | 2 +- docs/doxygen/html/gaussian1d_8hpp_source.html | 2 +- docs/doxygen/html/gaussian_8hpp.html | 2 +- docs/doxygen/html/gaussian_8hpp_source.html | 2 +- docs/doxygen/html/gaussian_filter1d_8hpp.html | 2 +- .../html/gaussian_filter1d_8hpp_source.html | 2 +- docs/doxygen/html/gaussian_filter_8hpp.html | 2 +- .../html/gaussian_filter_8hpp_source.html | 2 +- docs/doxygen/html/gcd_8hpp.html | 2 +- docs/doxygen/html/gcd_8hpp_source.html | 2 +- .../doxygen/html/generate_centroids_8hpp.html | 2 +- .../html/generate_centroids_8hpp_source.html | 2 +- .../doxygen/html/generate_threshold_8hpp.html | 2 +- .../html/generate_threshold_8hpp_source.html | 2 +- docs/doxygen/html/generator_8hpp.html | 2 +- docs/doxygen/html/generator_8hpp_source.html | 2 +- docs/doxygen/html/geocentric_radius_8hpp.html | 2 +- .../html/geocentric_radius_8hpp_source.html | 2 +- .../html/geocentric_to_l_l_a_8hpp.html | 2 +- .../html/geocentric_to_l_l_a_8hpp_source.html | 2 +- docs/doxygen/html/geometric_8hpp.html | 2 +- docs/doxygen/html/geometric_8hpp_source.html | 2 +- docs/doxygen/html/geomspace_8hpp.html | 2 +- docs/doxygen/html/geomspace_8hpp_source.html | 2 +- docs/doxygen/html/globals.html | 2 +- docs/doxygen/html/globals_defs.html | 2 +- docs/doxygen/html/gradient_8hpp.html | 2 +- docs/doxygen/html/gradient_8hpp_source.html | 2 +- docs/doxygen/html/greater_8hpp.html | 2 +- docs/doxygen/html/greater_8hpp_source.html | 2 +- docs/doxygen/html/greater__equal_8hpp.html | 2 +- .../html/greater__equal_8hpp_source.html | 2 +- docs/doxygen/html/hamming_8hpp.html | 2 +- docs/doxygen/html/hamming_8hpp_source.html | 2 +- docs/doxygen/html/hamming_encode_8hpp.html | 2 +- .../html/hamming_encode_8hpp_source.html | 2 +- docs/doxygen/html/hanning_8hpp.html | 2 +- docs/doxygen/html/hanning_8hpp_source.html | 2 +- docs/doxygen/html/hat_8hpp.html | 2 +- docs/doxygen/html/hat_8hpp_source.html | 2 +- docs/doxygen/html/hermite_8hpp.html | 2 +- docs/doxygen/html/hermite_8hpp_source.html | 2 +- docs/doxygen/html/hierarchy.html | 4 +- docs/doxygen/html/hierarchy.js | 2 +- docs/doxygen/html/histogram_8hpp.html | 2 +- docs/doxygen/html/histogram_8hpp_source.html | 2 +- docs/doxygen/html/hsplit_8hpp.html | 2 +- docs/doxygen/html/hsplit_8hpp_source.html | 2 +- docs/doxygen/html/hstack_8hpp.html | 2 +- docs/doxygen/html/hstack_8hpp_source.html | 2 +- docs/doxygen/html/hypot_8hpp.html | 2 +- docs/doxygen/html/hypot_8hpp_source.html | 2 +- docs/doxygen/html/identity_8hpp.html | 2 +- docs/doxygen/html/identity_8hpp_source.html | 2 +- docs/doxygen/html/ifft2_8hpp.html | 2 +- docs/doxygen/html/ifft2_8hpp_source.html | 2 +- docs/doxygen/html/ifft_8hpp.html | 2 +- docs/doxygen/html/ifft_8hpp_source.html | 2 +- docs/doxygen/html/ifftshift_8hpp.html | 2 +- docs/doxygen/html/ifftshift_8hpp_source.html | 2 +- docs/doxygen/html/imag_8hpp.html | 2 +- docs/doxygen/html/imag_8hpp_source.html | 2 +- docs/doxygen/html/index.html | 2 +- docs/doxygen/html/inner_8hpp.html | 2 +- docs/doxygen/html/inner_8hpp_source.html | 2 +- docs/doxygen/html/insert_8hpp.html | 2 +- docs/doxygen/html/insert_8hpp_source.html | 2 +- docs/doxygen/html/intersect1d_8hpp.html | 2 +- .../doxygen/html/intersect1d_8hpp_source.html | 2 +- docs/doxygen/html/inv_8hpp.html | 2 +- docs/doxygen/html/inv_8hpp_source.html | 2 +- docs/doxygen/html/invert_8hpp.html | 2 +- docs/doxygen/html/invert_8hpp_source.html | 2 +- docs/doxygen/html/irfft2_8hpp.html | 2 +- docs/doxygen/html/irfft2_8hpp_source.html | 2 +- docs/doxygen/html/irfft_8hpp.html | 2 +- docs/doxygen/html/irfft_8hpp_source.html | 2 +- docs/doxygen/html/isclose_8hpp.html | 2 +- docs/doxygen/html/isclose_8hpp_source.html | 2 +- docs/doxygen/html/isinf_8hpp.html | 2 +- docs/doxygen/html/isinf_8hpp_source.html | 2 +- docs/doxygen/html/isnan_8hpp.html | 2 +- docs/doxygen/html/isnan_8hpp_source.html | 2 +- docs/doxygen/html/isneginf_8hpp.html | 2 +- docs/doxygen/html/isneginf_8hpp_source.html | 2 +- docs/doxygen/html/isposinf_8hpp.html | 2 +- docs/doxygen/html/isposinf_8hpp_source.html | 2 +- docs/doxygen/html/kaiser_8hpp.html | 2 +- docs/doxygen/html/kaiser_8hpp_source.html | 2 +- docs/doxygen/html/laguerre_8hpp.html | 2 +- docs/doxygen/html/laguerre_8hpp_source.html | 2 +- docs/doxygen/html/lcm_8hpp.html | 2 +- docs/doxygen/html/lcm_8hpp_source.html | 2 +- docs/doxygen/html/ldexp_8hpp.html | 2 +- docs/doxygen/html/ldexp_8hpp_source.html | 2 +- docs/doxygen/html/left__shift_8hpp.html | 2 +- .../doxygen/html/left__shift_8hpp_source.html | 2 +- docs/doxygen/html/legendre__p_8hpp.html | 2 +- .../doxygen/html/legendre__p_8hpp_source.html | 2 +- docs/doxygen/html/legendre__q_8hpp.html | 2 +- .../doxygen/html/legendre__q_8hpp_source.html | 2 +- docs/doxygen/html/less_8hpp.html | 2 +- docs/doxygen/html/less_8hpp_source.html | 2 +- docs/doxygen/html/less__equal_8hpp.html | 2 +- .../doxygen/html/less__equal_8hpp_source.html | 2 +- docs/doxygen/html/linspace_8hpp.html | 2 +- docs/doxygen/html/linspace_8hpp_source.html | 2 +- docs/doxygen/html/load_8hpp.html | 2 +- docs/doxygen/html/load_8hpp_source.html | 2 +- docs/doxygen/html/log10_8hpp.html | 2 +- docs/doxygen/html/log10_8hpp_source.html | 2 +- docs/doxygen/html/log1p_8hpp.html | 2 +- docs/doxygen/html/log1p_8hpp_source.html | 2 +- docs/doxygen/html/log2_8hpp.html | 2 +- docs/doxygen/html/log2_8hpp_source.html | 2 +- docs/doxygen/html/log_8hpp.html | 2 +- docs/doxygen/html/log_8hpp_source.html | 2 +- docs/doxygen/html/log__gamma_8hpp.html | 2 +- docs/doxygen/html/log__gamma_8hpp_source.html | 2 +- docs/doxygen/html/logaddexp2_8hpp.html | 2 +- docs/doxygen/html/logaddexp2_8hpp_source.html | 2 +- docs/doxygen/html/logaddexp_8hpp.html | 2 +- docs/doxygen/html/logaddexp_8hpp_source.html | 2 +- docs/doxygen/html/logb_8hpp.html | 2 +- docs/doxygen/html/logb_8hpp_source.html | 2 +- docs/doxygen/html/logical__and_8hpp.html | 2 +- .../html/logical__and_8hpp_source.html | 2 +- docs/doxygen/html/logical__not_8hpp.html | 2 +- .../html/logical__not_8hpp_source.html | 2 +- docs/doxygen/html/logical__or_8hpp.html | 2 +- .../doxygen/html/logical__or_8hpp_source.html | 2 +- docs/doxygen/html/logical__xor_8hpp.html | 2 +- .../html/logical__xor_8hpp_source.html | 2 +- docs/doxygen/html/lognormal_8hpp.html | 2 +- docs/doxygen/html/lognormal_8hpp_source.html | 2 +- docs/doxygen/html/logspace_8hpp.html | 2 +- docs/doxygen/html/logspace_8hpp_source.html | 2 +- docs/doxygen/html/lstsq_8hpp.html | 10 +- docs/doxygen/html/lstsq_8hpp.js | 2 +- docs/doxygen/html/lstsq_8hpp_source.html | 92 +-- docs/doxygen/html/lu__decomposition_8hpp.html | 2 +- .../html/lu__decomposition_8hpp_source.html | 2 +- docs/doxygen/html/matmul_8hpp.html | 2 +- docs/doxygen/html/matmul_8hpp_source.html | 2 +- docs/doxygen/html/matrix__power_8hpp.html | 2 +- .../html/matrix__power_8hpp_source.html | 2 +- docs/doxygen/html/max_8hpp.html | 2 +- docs/doxygen/html/max_8hpp_source.html | 2 +- docs/doxygen/html/maximum_8hpp.html | 2 +- docs/doxygen/html/maximum_8hpp_source.html | 2 +- docs/doxygen/html/maximum_filter1d_8hpp.html | 2 +- .../html/maximum_filter1d_8hpp_source.html | 2 +- docs/doxygen/html/maximum_filter_8hpp.html | 2 +- .../html/maximum_filter_8hpp_source.html | 2 +- ..._2_num_cpp_2docs_2markdown_2_building.html | 6 +- ..._cpp_2docs_2markdown_2_compiler_flags.html | 2 +- ...um_cpp_2docs_2markdown_2_installation.html | 2 +- ...m_cpp_2docs_2markdown_2_release_notes.html | 18 +- docs/doxygen/html/mean_8hpp.html | 2 +- docs/doxygen/html/mean_8hpp_source.html | 2 +- docs/doxygen/html/mean_filter1d_8hpp.html | 2 +- .../html/mean_filter1d_8hpp_source.html | 2 +- docs/doxygen/html/mean_filter_8hpp.html | 2 +- .../doxygen/html/mean_filter_8hpp_source.html | 2 +- docs/doxygen/html/median_8hpp.html | 2 +- docs/doxygen/html/median_8hpp_source.html | 2 +- docs/doxygen/html/median_filter1d_8hpp.html | 2 +- .../html/median_filter1d_8hpp_source.html | 2 +- docs/doxygen/html/median_filter_8hpp.html | 2 +- .../html/median_filter_8hpp_source.html | 2 +- docs/doxygen/html/meshgrid_8hpp.html | 2 +- docs/doxygen/html/meshgrid_8hpp_source.html | 2 +- docs/doxygen/html/min_8hpp.html | 2 +- docs/doxygen/html/min_8hpp_source.html | 2 +- docs/doxygen/html/minimum_8hpp.html | 2 +- docs/doxygen/html/minimum_8hpp_source.html | 2 +- docs/doxygen/html/minimum_filter1d_8hpp.html | 2 +- .../html/minimum_filter1d_8hpp_source.html | 2 +- docs/doxygen/html/minimum_filter_8hpp.html | 2 +- .../html/minimum_filter_8hpp_source.html | 2 +- docs/doxygen/html/mirror1d_8hpp.html | 2 +- docs/doxygen/html/mirror1d_8hpp_source.html | 2 +- docs/doxygen/html/mirror2d_8hpp.html | 2 +- docs/doxygen/html/mirror2d_8hpp_source.html | 2 +- docs/doxygen/html/mod_8hpp.html | 2 +- docs/doxygen/html/mod_8hpp_source.html | 2 +- docs/doxygen/html/mode_8hpp.html | 2 +- docs/doxygen/html/mode_8hpp_source.html | 2 +- docs/doxygen/html/multi__dot_8hpp.html | 2 +- docs/doxygen/html/multi__dot_8hpp_source.html | 2 +- docs/doxygen/html/multiply_8hpp.html | 2 +- docs/doxygen/html/multiply_8hpp_source.html | 2 +- docs/doxygen/html/namespacemembers.html | 2 +- docs/doxygen/html/namespacemembers_b.html | 2 +- docs/doxygen/html/namespacemembers_c.html | 2 +- docs/doxygen/html/namespacemembers_d.html | 2 +- docs/doxygen/html/namespacemembers_e.html | 6 +- docs/doxygen/html/namespacemembers_enum.html | 2 +- docs/doxygen/html/namespacemembers_f.html | 2 +- docs/doxygen/html/namespacemembers_func.html | 2 +- .../doxygen/html/namespacemembers_func_b.html | 2 +- .../doxygen/html/namespacemembers_func_c.html | 2 +- .../doxygen/html/namespacemembers_func_d.html | 2 +- .../doxygen/html/namespacemembers_func_e.html | 8 +- .../doxygen/html/namespacemembers_func_f.html | 2 +- .../doxygen/html/namespacemembers_func_g.html | 2 +- .../doxygen/html/namespacemembers_func_h.html | 2 +- .../doxygen/html/namespacemembers_func_i.html | 2 +- .../doxygen/html/namespacemembers_func_k.html | 2 +- .../doxygen/html/namespacemembers_func_l.html | 4 +- .../doxygen/html/namespacemembers_func_m.html | 2 +- .../doxygen/html/namespacemembers_func_n.html | 2 +- .../doxygen/html/namespacemembers_func_o.html | 2 +- .../doxygen/html/namespacemembers_func_p.html | 2 +- .../doxygen/html/namespacemembers_func_r.html | 2 +- .../doxygen/html/namespacemembers_func_s.html | 5 +- .../doxygen/html/namespacemembers_func_t.html | 2 +- .../doxygen/html/namespacemembers_func_u.html | 2 +- .../doxygen/html/namespacemembers_func_v.html | 2 +- .../doxygen/html/namespacemembers_func_w.html | 2 +- .../doxygen/html/namespacemembers_func_z.html | 2 +- docs/doxygen/html/namespacemembers_g.html | 2 +- docs/doxygen/html/namespacemembers_h.html | 2 +- docs/doxygen/html/namespacemembers_i.html | 2 +- docs/doxygen/html/namespacemembers_j.html | 2 +- docs/doxygen/html/namespacemembers_k.html | 2 +- docs/doxygen/html/namespacemembers_l.html | 4 +- docs/doxygen/html/namespacemembers_m.html | 2 +- docs/doxygen/html/namespacemembers_n.html | 2 +- docs/doxygen/html/namespacemembers_o.html | 2 +- docs/doxygen/html/namespacemembers_p.html | 2 +- docs/doxygen/html/namespacemembers_r.html | 2 +- docs/doxygen/html/namespacemembers_s.html | 5 +- docs/doxygen/html/namespacemembers_t.html | 2 +- docs/doxygen/html/namespacemembers_type.html | 2 +- docs/doxygen/html/namespacemembers_u.html | 2 +- docs/doxygen/html/namespacemembers_v.html | 2 +- docs/doxygen/html/namespacemembers_vars.html | 2 +- docs/doxygen/html/namespacemembers_w.html | 2 +- docs/doxygen/html/namespacemembers_z.html | 2 +- docs/doxygen/html/namespacenc.html | 6 +- .../html/namespacenc_1_1broadcast.html | 2 +- .../html/namespacenc_1_1constants.html | 2 +- .../html/namespacenc_1_1coordinates.html | 2 +- ...c_1_1coordinates_1_1reference__frames.html | 2 +- ...tes_1_1reference__frames_1_1constants.html | 2 +- ...espacenc_1_1coordinates_1_1transforms.html | 2 +- docs/doxygen/html/namespacenc_1_1detail.html | 2 +- docs/doxygen/html/namespacenc_1_1edac.html | 2 +- .../html/namespacenc_1_1edac_1_1detail.html | 2 +- docs/doxygen/html/namespacenc_1_1endian.html | 2 +- docs/doxygen/html/namespacenc_1_1error.html | 2 +- docs/doxygen/html/namespacenc_1_1fft.html | 2 +- .../html/namespacenc_1_1fft_1_1detail.html | 2 +- docs/doxygen/html/namespacenc_1_1filter.html | 2 +- .../namespacenc_1_1filter_1_1boundary.html | 2 +- .../html/namespacenc_1_1image_processing.html | 2 +- .../html/namespacenc_1_1integrate.html | 2 +- docs/doxygen/html/namespacenc_1_1linalg.html | 156 +++- docs/doxygen/html/namespacenc_1_1linalg.js | 7 +- .../html/namespacenc_1_1linalg_1_1detail.html | 2 +- docs/doxygen/html/namespacenc_1_1logger.html | 2 +- .../html/namespacenc_1_1logger_1_1detail.html | 2 +- ...c_1_1logger_1_1detail_1_1type__traits.html | 2 +- .../html/namespacenc_1_1polynomial.html | 2 +- docs/doxygen/html/namespacenc_1_1random.html | 2 +- .../html/namespacenc_1_1random_1_1detail.html | 2 +- docs/doxygen/html/namespacenc_1_1roots.html | 2 +- .../html/namespacenc_1_1rotations.html | 2 +- docs/doxygen/html/namespacenc_1_1special.html | 2 +- .../html/namespacenc_1_1stl__algorithms.html | 2 +- .../html/namespacenc_1_1type__traits.html | 2 +- docs/doxygen/html/namespacenc_1_1utils.html | 2 +- ...amespacenc_1_1utils_1_1timeit__detail.html | 2 +- docs/doxygen/html/namespaces.html | 4 +- docs/doxygen/html/nan__to__num_8hpp.html | 2 +- .../html/nan__to__num_8hpp_source.html | 2 +- docs/doxygen/html/nanargmax_8hpp.html | 2 +- docs/doxygen/html/nanargmax_8hpp_source.html | 2 +- docs/doxygen/html/nanargmin_8hpp.html | 2 +- docs/doxygen/html/nanargmin_8hpp_source.html | 2 +- docs/doxygen/html/nancumprod_8hpp.html | 2 +- docs/doxygen/html/nancumprod_8hpp_source.html | 2 +- docs/doxygen/html/nancumsum_8hpp.html | 2 +- docs/doxygen/html/nancumsum_8hpp_source.html | 2 +- docs/doxygen/html/nanmax_8hpp.html | 2 +- docs/doxygen/html/nanmax_8hpp_source.html | 2 +- docs/doxygen/html/nanmean_8hpp.html | 2 +- docs/doxygen/html/nanmean_8hpp_source.html | 2 +- docs/doxygen/html/nanmedian_8hpp.html | 2 +- docs/doxygen/html/nanmedian_8hpp_source.html | 2 +- docs/doxygen/html/nanmin_8hpp.html | 2 +- docs/doxygen/html/nanmin_8hpp_source.html | 2 +- docs/doxygen/html/nanpercentile_8hpp.html | 2 +- .../html/nanpercentile_8hpp_source.html | 2 +- docs/doxygen/html/nanprod_8hpp.html | 2 +- docs/doxygen/html/nanprod_8hpp_source.html | 2 +- docs/doxygen/html/nans_8hpp.html | 2 +- docs/doxygen/html/nans_8hpp_source.html | 2 +- docs/doxygen/html/nans__like_8hpp.html | 2 +- docs/doxygen/html/nans__like_8hpp_source.html | 2 +- docs/doxygen/html/nanstdev_8hpp.html | 2 +- docs/doxygen/html/nanstdev_8hpp_source.html | 2 +- docs/doxygen/html/nansum_8hpp.html | 2 +- docs/doxygen/html/nansum_8hpp_source.html | 2 +- docs/doxygen/html/nanvar_8hpp.html | 2 +- docs/doxygen/html/nanvar_8hpp_source.html | 2 +- docs/doxygen/html/navtreedata.js | 42 +- docs/doxygen/html/navtreeindex10.js | 160 ++-- docs/doxygen/html/navtreeindex11.js | 120 +-- docs/doxygen/html/navtreeindex12.js | 28 +- docs/doxygen/html/navtreeindex13.js | 22 +- docs/doxygen/html/navtreeindex14.js | 44 +- docs/doxygen/html/navtreeindex15.js | 46 +- docs/doxygen/html/navtreeindex16.js | 22 +- docs/doxygen/html/navtreeindex17.js | 22 +- docs/doxygen/html/navtreeindex18.js | 22 +- docs/doxygen/html/navtreeindex19.js | 54 +- docs/doxygen/html/navtreeindex2.js | 6 +- docs/doxygen/html/navtreeindex20.js | 28 +- docs/doxygen/html/navtreeindex21.js | 40 +- docs/doxygen/html/navtreeindex22.js | 94 +-- docs/doxygen/html/navtreeindex23.js | 18 + docs/doxygen/html/navtreeindex3.js | 40 +- docs/doxygen/html/navtreeindex4.js | 138 ++-- docs/doxygen/html/navtreeindex5.js | 136 ++-- docs/doxygen/html/navtreeindex6.js | 116 +-- docs/doxygen/html/navtreeindex7.js | 136 ++-- docs/doxygen/html/navtreeindex8.js | 126 +-- docs/doxygen/html/navtreeindex9.js | 124 +-- docs/doxygen/html/nbytes_8hpp.html | 2 +- docs/doxygen/html/nbytes_8hpp_source.html | 2 +- docs/doxygen/html/nearest1d_8hpp.html | 2 +- docs/doxygen/html/nearest1d_8hpp_source.html | 2 +- docs/doxygen/html/nearest2d_8hpp.html | 2 +- docs/doxygen/html/nearest2d_8hpp_source.html | 2 +- docs/doxygen/html/negative_8hpp.html | 2 +- docs/doxygen/html/negative_8hpp_source.html | 2 +- docs/doxygen/html/negative_binomial_8hpp.html | 2 +- .../html/negative_binomial_8hpp_source.html | 2 +- docs/doxygen/html/newbyteorder_8hpp.html | 2 +- .../html/newbyteorder_8hpp_source.html | 2 +- .../html/non_central_chi_squared_8hpp.html | 2 +- .../non_central_chi_squared_8hpp_source.html | 2 +- docs/doxygen/html/none_8hpp.html | 2 +- docs/doxygen/html/none_8hpp_source.html | 2 +- docs/doxygen/html/nonzero_8hpp.html | 2 +- docs/doxygen/html/nonzero_8hpp_source.html | 2 +- docs/doxygen/html/norm_8hpp.html | 2 +- docs/doxygen/html/norm_8hpp_source.html | 2 +- docs/doxygen/html/normal_8hpp.html | 2 +- docs/doxygen/html/normal_8hpp_source.html | 2 +- docs/doxygen/html/normalize_8hpp.html | 2 +- docs/doxygen/html/normalize_8hpp_source.html | 2 +- docs/doxygen/html/not__equal_8hpp.html | 2 +- docs/doxygen/html/not__equal_8hpp_source.html | 2 +- docs/doxygen/html/nth__root_8hpp.html | 2 +- docs/doxygen/html/nth__root_8hpp_source.html | 2 +- docs/doxygen/html/num2str_8hpp.html | 2 +- docs/doxygen/html/num2str_8hpp_source.html | 2 +- docs/doxygen/html/ones_8hpp.html | 2 +- docs/doxygen/html/ones_8hpp_source.html | 2 +- docs/doxygen/html/ones__like_8hpp.html | 2 +- docs/doxygen/html/ones__like_8hpp_source.html | 2 +- docs/doxygen/html/outer_8hpp.html | 2 +- docs/doxygen/html/outer_8hpp_source.html | 42 +- docs/doxygen/html/packbits_8hpp.html | 2 +- docs/doxygen/html/packbits_8hpp_source.html | 2 +- docs/doxygen/html/pad_8hpp.html | 2 +- docs/doxygen/html/pad_8hpp_source.html | 2 +- docs/doxygen/html/pages.html | 2 +- docs/doxygen/html/partition_8hpp.html | 2 +- docs/doxygen/html/partition_8hpp_source.html | 2 +- docs/doxygen/html/percentile_8hpp.html | 2 +- docs/doxygen/html/percentile_8hpp_source.html | 2 +- .../html/percentile_filter1d_8hpp.html | 2 +- .../html/percentile_filter1d_8hpp_source.html | 2 +- docs/doxygen/html/percentile_filter_8hpp.html | 2 +- .../html/percentile_filter_8hpp_source.html | 2 +- docs/doxygen/html/permutation_8hpp.html | 2 +- .../doxygen/html/permutation_8hpp_source.html | 2 +- docs/doxygen/html/pinv_8hpp.html | 5 +- docs/doxygen/html/pinv_8hpp_source.html | 59 +- .../html/pivot_l_u__decomposition_8hpp.html | 2 +- .../pivot_l_u__decomposition_8hpp_source.html | 4 +- docs/doxygen/html/place_8hpp.html | 2 +- docs/doxygen/html/place_8hpp_source.html | 2 +- docs/doxygen/html/pnr_8hpp.html | 2 +- docs/doxygen/html/pnr_8hpp_source.html | 2 +- docs/doxygen/html/poisson_8hpp.html | 2 +- docs/doxygen/html/poisson_8hpp_source.html | 2 +- docs/doxygen/html/polar_8hpp.html | 2 +- docs/doxygen/html/polar_8hpp_source.html | 2 +- docs/doxygen/html/polygamma_8hpp.html | 2 +- docs/doxygen/html/polygamma_8hpp_source.html | 2 +- docs/doxygen/html/prime_8hpp.html | 2 +- docs/doxygen/html/prime_8hpp_source.html | 2 +- docs/doxygen/html/print_8hpp.html | 2 +- docs/doxygen/html/print_8hpp_source.html | 2 +- docs/doxygen/html/prod_8hpp.html | 2 +- docs/doxygen/html/prod_8hpp_source.html | 2 +- docs/doxygen/html/proj_8hpp.html | 2 +- docs/doxygen/html/proj_8hpp_source.html | 2 +- docs/doxygen/html/ptp_8hpp.html | 2 +- docs/doxygen/html/ptp_8hpp_source.html | 2 +- docs/doxygen/html/put_8hpp.html | 2 +- docs/doxygen/html/put_8hpp_source.html | 2 +- docs/doxygen/html/putmask_8hpp.html | 2 +- docs/doxygen/html/putmask_8hpp_source.html | 2 +- docs/doxygen/html/rad2deg_8hpp.html | 2 +- docs/doxygen/html/rad2deg_8hpp_source.html | 2 +- docs/doxygen/html/radians_8hpp.html | 2 +- docs/doxygen/html/radians_8hpp_source.html | 2 +- docs/doxygen/html/rand_8hpp.html | 2 +- docs/doxygen/html/rand_8hpp_source.html | 2 +- docs/doxygen/html/rand_float_8hpp.html | 2 +- docs/doxygen/html/rand_float_8hpp_source.html | 2 +- docs/doxygen/html/rand_int_8hpp.html | 2 +- docs/doxygen/html/rand_int_8hpp_source.html | 2 +- docs/doxygen/html/rand_n_8hpp.html | 2 +- docs/doxygen/html/rand_n_8hpp_source.html | 2 +- docs/doxygen/html/rank_filter1d_8hpp.html | 2 +- .../html/rank_filter1d_8hpp_source.html | 2 +- docs/doxygen/html/rank_filter_8hpp.html | 2 +- .../doxygen/html/rank_filter_8hpp_source.html | 2 +- docs/doxygen/html/ravel_8hpp.html | 2 +- docs/doxygen/html/ravel_8hpp_source.html | 2 +- docs/doxygen/html/real_8hpp.html | 2 +- docs/doxygen/html/real_8hpp_source.html | 2 +- docs/doxygen/html/reciprocal_8hpp.html | 2 +- docs/doxygen/html/reciprocal_8hpp_source.html | 2 +- docs/doxygen/html/reflect1d_8hpp.html | 2 +- docs/doxygen/html/reflect1d_8hpp_source.html | 2 +- docs/doxygen/html/reflect2d_8hpp.html | 2 +- docs/doxygen/html/reflect2d_8hpp_source.html | 2 +- docs/doxygen/html/remainder_8hpp.html | 2 +- docs/doxygen/html/remainder_8hpp_source.html | 2 +- docs/doxygen/html/repeat_8hpp.html | 2 +- docs/doxygen/html/repeat_8hpp_source.html | 2 +- docs/doxygen/html/replace_8hpp.html | 2 +- docs/doxygen/html/replace_8hpp_source.html | 2 +- docs/doxygen/html/reshape_8hpp.html | 2 +- docs/doxygen/html/reshape_8hpp_source.html | 2 +- docs/doxygen/html/resize_fast_8hpp.html | 2 +- .../doxygen/html/resize_fast_8hpp_source.html | 2 +- docs/doxygen/html/resize_slow_8hpp.html | 2 +- .../doxygen/html/resize_slow_8hpp_source.html | 2 +- docs/doxygen/html/rfft2_8hpp.html | 2 +- docs/doxygen/html/rfft2_8hpp_source.html | 2 +- docs/doxygen/html/rfft_8hpp.html | 2 +- docs/doxygen/html/rfft_8hpp_source.html | 2 +- docs/doxygen/html/rfftfreq_8hpp.html | 2 +- docs/doxygen/html/rfftfreq_8hpp_source.html | 2 +- docs/doxygen/html/riemann__zeta_8hpp.html | 2 +- .../html/riemann__zeta_8hpp_source.html | 2 +- docs/doxygen/html/right__shift_8hpp.html | 2 +- .../html/right__shift_8hpp_source.html | 2 +- docs/doxygen/html/rint_8hpp.html | 2 +- docs/doxygen/html/rint_8hpp_source.html | 2 +- docs/doxygen/html/rms_8hpp.html | 2 +- docs/doxygen/html/rms_8hpp_source.html | 2 +- .../doxygen/html/rodrigues_rotation_8hpp.html | 2 +- .../html/rodrigues_rotation_8hpp_source.html | 2 +- docs/doxygen/html/roll_8hpp.html | 2 +- docs/doxygen/html/roll_8hpp_source.html | 2 +- docs/doxygen/html/romberg_8hpp.html | 2 +- docs/doxygen/html/romberg_8hpp_source.html | 2 +- docs/doxygen/html/rot90_8hpp.html | 2 +- docs/doxygen/html/rot90_8hpp_source.html | 2 +- docs/doxygen/html/round_8hpp.html | 2 +- docs/doxygen/html/round_8hpp_source.html | 2 +- docs/doxygen/html/row__stack_8hpp.html | 2 +- docs/doxygen/html/row__stack_8hpp_source.html | 2 +- docs/doxygen/html/search/all_11.js | 2 +- docs/doxygen/html/search/all_12.js | 74 +- docs/doxygen/html/search/all_13.js | 69 +- docs/doxygen/html/search/all_14.js | 2 +- docs/doxygen/html/search/all_15.js | 2 +- docs/doxygen/html/search/all_2.js | 2 +- docs/doxygen/html/search/all_3.js | 2 +- docs/doxygen/html/search/all_4.js | 150 ++-- docs/doxygen/html/search/all_b.js | 12 +- docs/doxygen/html/search/all_d.js | 2 +- docs/doxygen/html/search/all_f.js | 24 +- docs/doxygen/html/search/files_11.js | 11 +- docs/doxygen/html/search/files_4.js | 66 +- docs/doxygen/html/search/functions_11.js | 2 +- docs/doxygen/html/search/functions_12.js | 34 +- docs/doxygen/html/search/functions_14.js | 2 +- docs/doxygen/html/search/functions_15.js | 2 +- docs/doxygen/html/search/functions_3.js | 2 +- docs/doxygen/html/search/functions_4.js | 76 +- docs/doxygen/html/search/functions_b.js | 16 +- docs/doxygen/html/search/functions_f.js | 4 +- docs/doxygen/html/search/variables_f.js | 3 +- docs/doxygen/html/searchsorted_8hpp.html | 2 +- .../html/searchsorted_8hpp_source.html | 2 +- docs/doxygen/html/select_8hpp.html | 2 +- docs/doxygen/html/select_8hpp_source.html | 2 +- docs/doxygen/html/setdiff1d_8hpp.html | 2 +- docs/doxygen/html/setdiff1d_8hpp_source.html | 2 +- docs/doxygen/html/shuffle_8hpp.html | 2 +- docs/doxygen/html/shuffle_8hpp_source.html | 2 +- docs/doxygen/html/sign_8hpp.html | 2 +- docs/doxygen/html/sign_8hpp_source.html | 2 +- docs/doxygen/html/signbit_8hpp.html | 2 +- docs/doxygen/html/signbit_8hpp_source.html | 2 +- docs/doxygen/html/simpson_8hpp.html | 2 +- docs/doxygen/html/simpson_8hpp_source.html | 2 +- docs/doxygen/html/sin_8hpp.html | 2 +- docs/doxygen/html/sin_8hpp_source.html | 2 +- docs/doxygen/html/sinc_8hpp.html | 2 +- docs/doxygen/html/sinc_8hpp_source.html | 2 +- docs/doxygen/html/sinh_8hpp.html | 2 +- docs/doxygen/html/sinh_8hpp_source.html | 2 +- docs/doxygen/html/size_8hpp.html | 2 +- docs/doxygen/html/size_8hpp_source.html | 2 +- docs/doxygen/html/softmax_8hpp.html | 2 +- docs/doxygen/html/softmax_8hpp_source.html | 2 +- docs/doxygen/html/solve_8hpp.html | 2 +- docs/doxygen/html/solve_8hpp_source.html | 2 +- docs/doxygen/html/sort_8hpp.html | 2 +- docs/doxygen/html/sort_8hpp_source.html | 2 +- .../html/spherical__bessel__jn_8hpp.html | 2 +- .../spherical__bessel__jn_8hpp_source.html | 2 +- .../html/spherical__bessel__yn_8hpp.html | 2 +- .../spherical__bessel__yn_8hpp_source.html | 2 +- .../html/spherical__hankel__1_8hpp.html | 2 +- .../spherical__hankel__1_8hpp_source.html | 2 +- .../html/spherical__hankel__2_8hpp.html | 2 +- .../spherical__hankel__2_8hpp_source.html | 2 +- .../html/spherical__harmonic_8hpp.html | 2 +- .../html/spherical__harmonic_8hpp_source.html | 2 +- docs/doxygen/html/split_8hpp.html | 2 +- docs/doxygen/html/split_8hpp_source.html | 2 +- docs/doxygen/html/sqr_8hpp.html | 2 +- docs/doxygen/html/sqr_8hpp_source.html | 2 +- docs/doxygen/html/sqrt_8hpp.html | 2 +- docs/doxygen/html/sqrt_8hpp_source.html | 2 +- docs/doxygen/html/square_8hpp.html | 2 +- docs/doxygen/html/square_8hpp_source.html | 2 +- docs/doxygen/html/stack_8hpp.html | 2 +- docs/doxygen/html/stack_8hpp_source.html | 2 +- docs/doxygen/html/standard_normal_8hpp.html | 2 +- .../html/standard_normal_8hpp_source.html | 2 +- docs/doxygen/html/stdev_8hpp.html | 2 +- docs/doxygen/html/stdev_8hpp_source.html | 2 +- .../html/structnc_1_1_complex_hash.html | 2 +- .../html/structnc_1_1all__arithmetic.html | 2 +- ...metic_3_01_head_00_01_tail_8_8_8_01_4.html | 2 +- ...ructnc_1_1all__arithmetic_3_01_t_01_4.html | 2 +- docs/doxygen/html/structnc_1_1all__same.html | 2 +- ...1_t1_00_01_head_00_01_tail_8_8_8_01_4.html | 2 +- ...nc_1_1all__same_3_01_t1_00_01_t2_01_4.html | 2 +- .../html/structnc_1_1greater_than.html | 2 +- .../doxygen/html/structnc_1_1is__complex.html | 2 +- ...x_3_01std_1_1complex_3_01_t_01_4_01_4.html | 2 +- .../html/structnc_1_1is__ndarray__int.html | 2 +- ...y_3_01dtype_00_01_allocator_01_4_01_4.html | 2 +- .../html/structnc_1_1is__valid__dtype.html | 2 +- ...c_1_1type__traits_1_1is__ndarray__int.html | 2 +- ...y_3_01dtype_00_01_allocator_01_4_01_4.html | 2 +- ...e__traits_1_1is__ndarray__signed__int.html | 2 +- ...y_3_01dtype_00_01_allocator_01_4_01_4.html | 2 +- ...1_1utils_1_1timeit__detail_1_1_result.html | 2 +- docs/doxygen/html/student_t_8hpp.html | 2 +- docs/doxygen/html/student_t_8hpp_source.html | 2 +- docs/doxygen/html/subtract_8hpp.html | 2 +- docs/doxygen/html/subtract_8hpp_source.html | 2 +- docs/doxygen/html/sum_8hpp.html | 2 +- docs/doxygen/html/sum_8hpp_source.html | 2 +- ...v_d_class_8hpp.html => svd_2svd_8hpp.html} | 20 +- docs/doxygen/html/svd_2svd_8hpp.js | 4 + docs/doxygen/html/svd_2svd_8hpp_source.html | 343 ++++++++ docs/doxygen/html/svd_8hpp.html | 10 +- docs/doxygen/html/svd_8hpp.js | 2 +- docs/doxygen/html/svd_8hpp_source.html | 33 +- docs/doxygen/html/svdvals_8hpp.html | 160 ++++ docs/doxygen/html/svdvals_8hpp.js | 4 + docs/doxygen/html/svdvals_8hpp_source.html | 173 ++++ docs/doxygen/html/swap_8hpp.html | 2 +- docs/doxygen/html/swap_8hpp_source.html | 2 +- docs/doxygen/html/swap_cols_8hpp.html | 2 +- docs/doxygen/html/swap_cols_8hpp_source.html | 2 +- docs/doxygen/html/swap_rows_8hpp.html | 2 +- docs/doxygen/html/swap_rows_8hpp_source.html | 2 +- docs/doxygen/html/swapaxes_8hpp.html | 2 +- docs/doxygen/html/swapaxes_8hpp_source.html | 2 +- docs/doxygen/html/take_8hpp.html | 2 +- docs/doxygen/html/take_8hpp_source.html | 2 +- docs/doxygen/html/tan_8hpp.html | 2 +- docs/doxygen/html/tan_8hpp_source.html | 2 +- docs/doxygen/html/tanh_8hpp.html | 2 +- docs/doxygen/html/tanh_8hpp_source.html | 2 +- docs/doxygen/html/tile_8hpp.html | 2 +- docs/doxygen/html/tile_8hpp_source.html | 2 +- docs/doxygen/html/timeit_8hpp.html | 2 +- docs/doxygen/html/timeit_8hpp_source.html | 2 +- docs/doxygen/html/to_stl_vector_8hpp.html | 2 +- .../html/to_stl_vector_8hpp_source.html | 2 +- docs/doxygen/html/tofile_8hpp.html | 2 +- docs/doxygen/html/tofile_8hpp_source.html | 2 +- docs/doxygen/html/trace_8hpp.html | 2 +- docs/doxygen/html/trace_8hpp_source.html | 2 +- docs/doxygen/html/transpose_8hpp.html | 2 +- docs/doxygen/html/transpose_8hpp_source.html | 2 +- docs/doxygen/html/trapazoidal_8hpp.html | 2 +- .../doxygen/html/trapazoidal_8hpp_source.html | 2 +- docs/doxygen/html/trapz_8hpp.html | 2 +- docs/doxygen/html/trapz_8hpp_source.html | 2 +- docs/doxygen/html/tri_8hpp.html | 2 +- docs/doxygen/html/tri_8hpp_source.html | 2 +- docs/doxygen/html/triangle_8hpp.html | 2 +- docs/doxygen/html/triangle_8hpp_source.html | 2 +- docs/doxygen/html/trigamma_8hpp.html | 2 +- docs/doxygen/html/trigamma_8hpp_source.html | 2 +- docs/doxygen/html/trim__zeros_8hpp.html | 2 +- .../doxygen/html/trim__zeros_8hpp_source.html | 2 +- docs/doxygen/html/trim_boundary1d_8hpp.html | 2 +- .../html/trim_boundary1d_8hpp_source.html | 2 +- docs/doxygen/html/trim_boundary2d_8hpp.html | 2 +- .../html/trim_boundary2d_8hpp_source.html | 2 +- docs/doxygen/html/trunc_8hpp.html | 2 +- docs/doxygen/html/trunc_8hpp_source.html | 2 +- docs/doxygen/html/uniform_8hpp.html | 2 +- docs/doxygen/html/uniform_8hpp_source.html | 2 +- docs/doxygen/html/uniform_filter1d_8hpp.html | 2 +- .../html/uniform_filter1d_8hpp_source.html | 2 +- docs/doxygen/html/uniform_filter_8hpp.html | 2 +- .../html/uniform_filter_8hpp_source.html | 2 +- docs/doxygen/html/uniform_on_sphere_8hpp.html | 2 +- .../html/uniform_on_sphere_8hpp_source.html | 2 +- docs/doxygen/html/union1d_8hpp.html | 2 +- docs/doxygen/html/union1d_8hpp_source.html | 2 +- docs/doxygen/html/unique_8hpp.html | 2 +- docs/doxygen/html/unique_8hpp_source.html | 2 +- docs/doxygen/html/unpackbits_8hpp.html | 2 +- docs/doxygen/html/unpackbits_8hpp_source.html | 2 +- docs/doxygen/html/unwrap_8hpp.html | 2 +- docs/doxygen/html/unwrap_8hpp_source.html | 2 +- docs/doxygen/html/value2str_8hpp.html | 2 +- docs/doxygen/html/value2str_8hpp_source.html | 2 +- docs/doxygen/html/vander_8hpp.html | 2 +- docs/doxygen/html/vander_8hpp_source.html | 2 +- docs/doxygen/html/var_8hpp.html | 2 +- docs/doxygen/html/var_8hpp_source.html | 2 +- docs/doxygen/html/vsplit_8hpp.html | 2 +- docs/doxygen/html/vsplit_8hpp_source.html | 2 +- docs/doxygen/html/vstack_8hpp.html | 2 +- docs/doxygen/html/vstack_8hpp_source.html | 2 +- docs/doxygen/html/wahbas_problem_8hpp.html | 2 +- .../html/wahbas_problem_8hpp_source.html | 6 +- docs/doxygen/html/weibull_8hpp.html | 2 +- docs/doxygen/html/weibull_8hpp_source.html | 2 +- docs/doxygen/html/where_8hpp.html | 2 +- docs/doxygen/html/where_8hpp_source.html | 2 +- .../doxygen/html/window_exceedances_8hpp.html | 2 +- .../html/window_exceedances_8hpp_source.html | 2 +- docs/doxygen/html/wrap1d_8hpp.html | 2 +- docs/doxygen/html/wrap1d_8hpp_source.html | 2 +- docs/doxygen/html/wrap2_pi_8hpp.html | 2 +- docs/doxygen/html/wrap2_pi_8hpp_source.html | 2 +- docs/doxygen/html/wrap2d_8hpp.html | 2 +- docs/doxygen/html/wrap2d_8hpp_source.html | 2 +- docs/doxygen/html/wrap_8hpp.html | 2 +- docs/doxygen/html/wrap_8hpp_source.html | 2 +- docs/doxygen/html/zeros_8hpp.html | 2 +- docs/doxygen/html/zeros_8hpp_source.html | 2 +- docs/doxygen/html/zeros__like_8hpp.html | 2 +- .../doxygen/html/zeros__like_8hpp_source.html | 2 +- docs/markdown/ReleaseNotes.md | 2 +- 1406 files changed, 4399 insertions(+), 3442 deletions(-) delete mode 100644 docs/doxygen/html/_s_v_d_class_8hpp.js delete mode 100644 docs/doxygen/html/_s_v_d_class_8hpp_source.html create mode 100644 docs/doxygen/html/eig_8hpp.html create mode 100644 docs/doxygen/html/eig_8hpp.js create mode 100644 docs/doxygen/html/eig_8hpp_source.html create mode 100644 docs/doxygen/html/eigvals_8hpp.html create mode 100644 docs/doxygen/html/eigvals_8hpp.js create mode 100644 docs/doxygen/html/eigvals_8hpp_source.html rename docs/doxygen/html/{_s_v_d_class_8hpp.html => svd_2svd_8hpp.html} (89%) create mode 100644 docs/doxygen/html/svd_2svd_8hpp.js create mode 100644 docs/doxygen/html/svd_2svd_8hpp_source.html create mode 100644 docs/doxygen/html/svdvals_8hpp.html create mode 100644 docs/doxygen/html/svdvals_8hpp.js create mode 100644 docs/doxygen/html/svdvals_8hpp_source.html diff --git a/docs/doxygen/html/_a_e_r_8hpp.html b/docs/doxygen/html/_a_e_r_8hpp.html index 610dca6e9..2b1692632 100644 --- a/docs/doxygen/html/_a_e_r_8hpp.html +++ b/docs/doxygen/html/_a_e_r_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_a_e_r_8hpp_source.html b/docs/doxygen/html/_a_e_r_8hpp_source.html index 096d4c924..23cbb3fe6 100644 --- a/docs/doxygen/html/_a_e_r_8hpp_source.html +++ b/docs/doxygen/html/_a_e_r_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_a_e_rto_e_c_e_f_8hpp.html b/docs/doxygen/html/_a_e_rto_e_c_e_f_8hpp.html index 2366ad11f..e86d9b83a 100644 --- a/docs/doxygen/html/_a_e_rto_e_c_e_f_8hpp.html +++ b/docs/doxygen/html/_a_e_rto_e_c_e_f_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_a_e_rto_e_c_e_f_8hpp_source.html b/docs/doxygen/html/_a_e_rto_e_c_e_f_8hpp_source.html index 7140177d3..396aa49f7 100644 --- a/docs/doxygen/html/_a_e_rto_e_c_e_f_8hpp_source.html +++ b/docs/doxygen/html/_a_e_rto_e_c_e_f_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_a_e_rto_e_n_u_8hpp.html b/docs/doxygen/html/_a_e_rto_e_n_u_8hpp.html index fa22acf2a..c7d65e46c 100644 --- a/docs/doxygen/html/_a_e_rto_e_n_u_8hpp.html +++ b/docs/doxygen/html/_a_e_rto_e_n_u_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_a_e_rto_e_n_u_8hpp_source.html b/docs/doxygen/html/_a_e_rto_e_n_u_8hpp_source.html index b304eb99d..f97471544 100644 --- a/docs/doxygen/html/_a_e_rto_e_n_u_8hpp_source.html +++ b/docs/doxygen/html/_a_e_rto_e_n_u_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_a_e_rto_l_l_a_8hpp.html b/docs/doxygen/html/_a_e_rto_l_l_a_8hpp.html index dbe4cd9fb..560a4c52c 100644 --- a/docs/doxygen/html/_a_e_rto_l_l_a_8hpp.html +++ b/docs/doxygen/html/_a_e_rto_l_l_a_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_a_e_rto_l_l_a_8hpp_source.html b/docs/doxygen/html/_a_e_rto_l_l_a_8hpp_source.html index f54d0a6a0..59aaaecb6 100644 --- a/docs/doxygen/html/_a_e_rto_l_l_a_8hpp_source.html +++ b/docs/doxygen/html/_a_e_rto_l_l_a_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_a_e_rto_n_e_d_8hpp.html b/docs/doxygen/html/_a_e_rto_n_e_d_8hpp.html index 3d221e9c3..dd453a3f8 100644 --- a/docs/doxygen/html/_a_e_rto_n_e_d_8hpp.html +++ b/docs/doxygen/html/_a_e_rto_n_e_d_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_a_e_rto_n_e_d_8hpp_source.html b/docs/doxygen/html/_a_e_rto_n_e_d_8hpp_source.html index 604638f8a..0ec33427c 100644 --- a/docs/doxygen/html/_a_e_rto_n_e_d_8hpp_source.html +++ b/docs/doxygen/html/_a_e_rto_n_e_d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_binary_logger_8hpp.html b/docs/doxygen/html/_binary_logger_8hpp.html index 8d834c779..ca7c15d8a 100644 --- a/docs/doxygen/html/_binary_logger_8hpp.html +++ b/docs/doxygen/html/_binary_logger_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_binary_logger_8hpp_source.html b/docs/doxygen/html/_binary_logger_8hpp_source.html index f3b630c14..0c90a33a4 100644 --- a/docs/doxygen/html/_binary_logger_8hpp_source.html +++ b/docs/doxygen/html/_binary_logger_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_bisection_8hpp.html b/docs/doxygen/html/_bisection_8hpp.html index dbd658387..e5fcce68e 100644 --- a/docs/doxygen/html/_bisection_8hpp.html +++ b/docs/doxygen/html/_bisection_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_bisection_8hpp_source.html b/docs/doxygen/html/_bisection_8hpp_source.html index 6df5e06fa..790f11b34 100644 --- a/docs/doxygen/html/_bisection_8hpp_source.html +++ b/docs/doxygen/html/_bisection_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_boost_interface_8hpp.html b/docs/doxygen/html/_boost_interface_8hpp.html index cdb32e7e0..1a9e5a18b 100644 --- a/docs/doxygen/html/_boost_interface_8hpp.html +++ b/docs/doxygen/html/_boost_interface_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_boost_interface_8hpp_source.html b/docs/doxygen/html/_boost_interface_8hpp_source.html index 8011cdc17..5ce3601f2 100644 --- a/docs/doxygen/html/_boost_interface_8hpp_source.html +++ b/docs/doxygen/html/_boost_interface_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_boost_numpy_ndarray_helper_8hpp.html b/docs/doxygen/html/_boost_numpy_ndarray_helper_8hpp.html index e625bd8cc..17b8ab62e 100644 --- a/docs/doxygen/html/_boost_numpy_ndarray_helper_8hpp.html +++ b/docs/doxygen/html/_boost_numpy_ndarray_helper_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_boost_numpy_ndarray_helper_8hpp_source.html b/docs/doxygen/html/_boost_numpy_ndarray_helper_8hpp_source.html index f07c2c875..42997c28a 100644 --- a/docs/doxygen/html/_boost_numpy_ndarray_helper_8hpp_source.html +++ b/docs/doxygen/html/_boost_numpy_ndarray_helper_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_boundary_8hpp.html b/docs/doxygen/html/_boundary_8hpp.html index 49fb86b61..eec70b1e8 100644 --- a/docs/doxygen/html/_boundary_8hpp.html +++ b/docs/doxygen/html/_boundary_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_boundary_8hpp_source.html b/docs/doxygen/html/_boundary_8hpp_source.html index 70b042f85..dda702eb2 100644 --- a/docs/doxygen/html/_boundary_8hpp_source.html +++ b/docs/doxygen/html/_boundary_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_brent_8hpp.html b/docs/doxygen/html/_brent_8hpp.html index 31f7240b6..eb34a7069 100644 --- a/docs/doxygen/html/_brent_8hpp.html +++ b/docs/doxygen/html/_brent_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_brent_8hpp_source.html b/docs/doxygen/html/_brent_8hpp_source.html index 754dd825d..af79e286f 100644 --- a/docs/doxygen/html/_brent_8hpp_source.html +++ b/docs/doxygen/html/_brent_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_building_8md.html b/docs/doxygen/html/_building_8md.html index 1baa375c2..f25a9c5c4 100644 --- a/docs/doxygen/html/_building_8md.html +++ b/docs/doxygen/html/_building_8md.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_cartesian_8hpp.html b/docs/doxygen/html/_cartesian_8hpp.html index d3f0feb5f..63dabdbb0 100644 --- a/docs/doxygen/html/_cartesian_8hpp.html +++ b/docs/doxygen/html/_cartesian_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_cartesian_8hpp_source.html b/docs/doxygen/html/_cartesian_8hpp_source.html index 83b65c2a2..4ea1737c4 100644 --- a/docs/doxygen/html/_cartesian_8hpp_source.html +++ b/docs/doxygen/html/_cartesian_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_celestial_8hpp.html b/docs/doxygen/html/_celestial_8hpp.html index 21abbb701..d0b28247a 100644 --- a/docs/doxygen/html/_celestial_8hpp.html +++ b/docs/doxygen/html/_celestial_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_celestial_8hpp_source.html b/docs/doxygen/html/_celestial_8hpp_source.html index 2aeb95c14..2c4f94d42 100644 --- a/docs/doxygen/html/_celestial_8hpp_source.html +++ b/docs/doxygen/html/_celestial_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_centroid_8hpp.html b/docs/doxygen/html/_centroid_8hpp.html index bbbf6ae9b..8c4addf54 100644 --- a/docs/doxygen/html/_centroid_8hpp.html +++ b/docs/doxygen/html/_centroid_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_centroid_8hpp_source.html b/docs/doxygen/html/_centroid_8hpp_source.html index 5414ae57b..7ecefa84b 100644 --- a/docs/doxygen/html/_centroid_8hpp_source.html +++ b/docs/doxygen/html/_centroid_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_clock_8hpp.html b/docs/doxygen/html/_clock_8hpp.html index 46022c859..a32832285 100644 --- a/docs/doxygen/html/_clock_8hpp.html +++ b/docs/doxygen/html/_clock_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_clock_8hpp_source.html b/docs/doxygen/html/_clock_8hpp_source.html index c6320a269..c31662f11 100644 --- a/docs/doxygen/html/_clock_8hpp_source.html +++ b/docs/doxygen/html/_clock_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_cluster_8hpp.html b/docs/doxygen/html/_cluster_8hpp.html index 57857dd6c..5a3106db2 100644 --- a/docs/doxygen/html/_cluster_8hpp.html +++ b/docs/doxygen/html/_cluster_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_cluster_8hpp_source.html b/docs/doxygen/html/_cluster_8hpp_source.html index 4b7dbefd8..f5162b1f9 100644 --- a/docs/doxygen/html/_cluster_8hpp_source.html +++ b/docs/doxygen/html/_cluster_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_cluster_maker_8hpp.html b/docs/doxygen/html/_cluster_maker_8hpp.html index 7e14e781f..3cb1a3034 100644 --- a/docs/doxygen/html/_cluster_maker_8hpp.html +++ b/docs/doxygen/html/_cluster_maker_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_cluster_maker_8hpp_source.html b/docs/doxygen/html/_cluster_maker_8hpp_source.html index 424a1c335..338b79e6f 100644 --- a/docs/doxygen/html/_cluster_maker_8hpp_source.html +++ b/docs/doxygen/html/_cluster_maker_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_compiler_flags_8md.html b/docs/doxygen/html/_compiler_flags_8md.html index 6f21420ff..8391e873e 100644 --- a/docs/doxygen/html/_compiler_flags_8md.html +++ b/docs/doxygen/html/_compiler_flags_8md.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_coordinates_2_reference_frames_2_constants_8hpp.html b/docs/doxygen/html/_coordinates_2_reference_frames_2_constants_8hpp.html index b25528c20..7b8fc9683 100644 --- a/docs/doxygen/html/_coordinates_2_reference_frames_2_constants_8hpp.html +++ b/docs/doxygen/html/_coordinates_2_reference_frames_2_constants_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_coordinates_2_reference_frames_2_constants_8hpp_source.html b/docs/doxygen/html/_coordinates_2_reference_frames_2_constants_8hpp_source.html index 30952001b..1f0625a9a 100644 --- a/docs/doxygen/html/_coordinates_2_reference_frames_2_constants_8hpp_source.html +++ b/docs/doxygen/html/_coordinates_2_reference_frames_2_constants_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_coordinates_8hpp.html b/docs/doxygen/html/_coordinates_8hpp.html index 3dfeaf323..f3c31b840 100644 --- a/docs/doxygen/html/_coordinates_8hpp.html +++ b/docs/doxygen/html/_coordinates_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_coordinates_8hpp_source.html b/docs/doxygen/html/_coordinates_8hpp_source.html index a318d9002..ff07709b1 100644 --- a/docs/doxygen/html/_coordinates_8hpp_source.html +++ b/docs/doxygen/html/_coordinates_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_core_2_constants_8hpp.html b/docs/doxygen/html/_core_2_constants_8hpp.html index 9097138d7..e8e68e11e 100644 --- a/docs/doxygen/html/_core_2_constants_8hpp.html +++ b/docs/doxygen/html/_core_2_constants_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_core_2_constants_8hpp_source.html b/docs/doxygen/html/_core_2_constants_8hpp_source.html index cf4f9ccbd..3d4aac022 100644 --- a/docs/doxygen/html/_core_2_constants_8hpp_source.html +++ b/docs/doxygen/html/_core_2_constants_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_core_2shape_8hpp.html b/docs/doxygen/html/_core_2shape_8hpp.html index 933bd1b16..24176bee6 100644 --- a/docs/doxygen/html/_core_2shape_8hpp.html +++ b/docs/doxygen/html/_core_2shape_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_core_2shape_8hpp_source.html b/docs/doxygen/html/_core_2shape_8hpp_source.html index 8c2ccced0..8ce6b50cb 100644 --- a/docs/doxygen/html/_core_2shape_8hpp_source.html +++ b/docs/doxygen/html/_core_2shape_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_core_8hpp.html b/docs/doxygen/html/_core_8hpp.html index a21132fdc..fb38b1f1b 100644 --- a/docs/doxygen/html/_core_8hpp.html +++ b/docs/doxygen/html/_core_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_core_8hpp_source.html b/docs/doxygen/html/_core_8hpp_source.html index 09ce765e2..b0edbfe48 100644 --- a/docs/doxygen/html/_core_8hpp_source.html +++ b/docs/doxygen/html/_core_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_d_c_m_8hpp.html b/docs/doxygen/html/_d_c_m_8hpp.html index 71ddfaf54..8cff5cdee 100644 --- a/docs/doxygen/html/_d_c_m_8hpp.html +++ b/docs/doxygen/html/_d_c_m_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_d_c_m_8hpp_source.html b/docs/doxygen/html/_d_c_m_8hpp_source.html index db3efe112..6c6b3b791 100644 --- a/docs/doxygen/html/_d_c_m_8hpp_source.html +++ b/docs/doxygen/html/_d_c_m_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_data_cube_8hpp.html b/docs/doxygen/html/_data_cube_8hpp.html index 79a512ffd..568a335c2 100644 --- a/docs/doxygen/html/_data_cube_8hpp.html +++ b/docs/doxygen/html/_data_cube_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_data_cube_8hpp_source.html b/docs/doxygen/html/_data_cube_8hpp_source.html index 0b8616b21..50094a7ea 100644 --- a/docs/doxygen/html/_data_cube_8hpp_source.html +++ b/docs/doxygen/html/_data_cube_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_date_time_2_date_time_8hpp.html b/docs/doxygen/html/_date_time_2_date_time_8hpp.html index a8ab519b6..afbc41564 100644 --- a/docs/doxygen/html/_date_time_2_date_time_8hpp.html +++ b/docs/doxygen/html/_date_time_2_date_time_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_date_time_2_date_time_8hpp_source.html b/docs/doxygen/html/_date_time_2_date_time_8hpp_source.html index 90636f124..ce611b6a9 100644 --- a/docs/doxygen/html/_date_time_2_date_time_8hpp_source.html +++ b/docs/doxygen/html/_date_time_2_date_time_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_date_time_8hpp.html b/docs/doxygen/html/_date_time_8hpp.html index 5a12ee226..25cd8d731 100644 --- a/docs/doxygen/html/_date_time_8hpp.html +++ b/docs/doxygen/html/_date_time_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_date_time_8hpp_source.html b/docs/doxygen/html/_date_time_8hpp_source.html index 2ea2e2128..0d745750e 100644 --- a/docs/doxygen/html/_date_time_8hpp_source.html +++ b/docs/doxygen/html/_date_time_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_dekker_8hpp.html b/docs/doxygen/html/_dekker_8hpp.html index 91b26cb36..97f8a0b4c 100644 --- a/docs/doxygen/html/_dekker_8hpp.html +++ b/docs/doxygen/html/_dekker_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_dekker_8hpp_source.html b/docs/doxygen/html/_dekker_8hpp_source.html index a52981009..19802b373 100644 --- a/docs/doxygen/html/_dekker_8hpp_source.html +++ b/docs/doxygen/html/_dekker_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_dtype_info_8hpp.html b/docs/doxygen/html/_dtype_info_8hpp.html index b5594b6f3..1e5ca6d0a 100644 --- a/docs/doxygen/html/_dtype_info_8hpp.html +++ b/docs/doxygen/html/_dtype_info_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_dtype_info_8hpp_source.html b/docs/doxygen/html/_dtype_info_8hpp_source.html index c758ac4c8..da296693b 100644 --- a/docs/doxygen/html/_dtype_info_8hpp_source.html +++ b/docs/doxygen/html/_dtype_info_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_f_8hpp.html b/docs/doxygen/html/_e_c_e_f_8hpp.html index 1b05b531d..f4b6f6331 100644 --- a/docs/doxygen/html/_e_c_e_f_8hpp.html +++ b/docs/doxygen/html/_e_c_e_f_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_f_8hpp_source.html b/docs/doxygen/html/_e_c_e_f_8hpp_source.html index b965473a8..1a16affa4 100644 --- a/docs/doxygen/html/_e_c_e_f_8hpp_source.html +++ b/docs/doxygen/html/_e_c_e_f_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp.html b/docs/doxygen/html/_e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp.html index f0dd50f68..19fe9bfa7 100644 --- a/docs/doxygen/html/_e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp.html +++ b/docs/doxygen/html/_e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp_source.html b/docs/doxygen/html/_e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp_source.html index fdfa66b5f..6b3911009 100644 --- a/docs/doxygen/html/_e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp_source.html +++ b/docs/doxygen/html/_e_c_e_f_euler_to_e_n_u_roll_pitch_yaw_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp.html b/docs/doxygen/html/_e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp.html index 4044ffe0f..301f69048 100644 --- a/docs/doxygen/html/_e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp.html +++ b/docs/doxygen/html/_e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp_source.html b/docs/doxygen/html/_e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp_source.html index 13f45e567..33f116d53 100644 --- a/docs/doxygen/html/_e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp_source.html +++ b/docs/doxygen/html/_e_c_e_f_euler_to_n_e_d_roll_pitch_yaw_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_fto_a_e_r_8hpp.html b/docs/doxygen/html/_e_c_e_fto_a_e_r_8hpp.html index da265eaae..b3c57092a 100644 --- a/docs/doxygen/html/_e_c_e_fto_a_e_r_8hpp.html +++ b/docs/doxygen/html/_e_c_e_fto_a_e_r_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_fto_a_e_r_8hpp_source.html b/docs/doxygen/html/_e_c_e_fto_a_e_r_8hpp_source.html index d66695b8e..259b02acb 100644 --- a/docs/doxygen/html/_e_c_e_fto_a_e_r_8hpp_source.html +++ b/docs/doxygen/html/_e_c_e_fto_a_e_r_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_fto_e_n_u_8hpp.html b/docs/doxygen/html/_e_c_e_fto_e_n_u_8hpp.html index a78abdb69..f28f4cddd 100644 --- a/docs/doxygen/html/_e_c_e_fto_e_n_u_8hpp.html +++ b/docs/doxygen/html/_e_c_e_fto_e_n_u_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_fto_e_n_u_8hpp_source.html b/docs/doxygen/html/_e_c_e_fto_e_n_u_8hpp_source.html index a1e789c68..9378b6526 100644 --- a/docs/doxygen/html/_e_c_e_fto_e_n_u_8hpp_source.html +++ b/docs/doxygen/html/_e_c_e_fto_e_n_u_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_fto_l_l_a_8hpp.html b/docs/doxygen/html/_e_c_e_fto_l_l_a_8hpp.html index 0bdbdfddf..4082868d4 100644 --- a/docs/doxygen/html/_e_c_e_fto_l_l_a_8hpp.html +++ b/docs/doxygen/html/_e_c_e_fto_l_l_a_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_fto_l_l_a_8hpp_source.html b/docs/doxygen/html/_e_c_e_fto_l_l_a_8hpp_source.html index 01911a128..7f3d2dd1e 100644 --- a/docs/doxygen/html/_e_c_e_fto_l_l_a_8hpp_source.html +++ b/docs/doxygen/html/_e_c_e_fto_l_l_a_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_fto_n_e_d_8hpp.html b/docs/doxygen/html/_e_c_e_fto_n_e_d_8hpp.html index 049d5cf16..5e9bd4847 100644 --- a/docs/doxygen/html/_e_c_e_fto_n_e_d_8hpp.html +++ b/docs/doxygen/html/_e_c_e_fto_n_e_d_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_c_e_fto_n_e_d_8hpp_source.html b/docs/doxygen/html/_e_c_e_fto_n_e_d_8hpp_source.html index 93ea152aa..147a8b65f 100644 --- a/docs/doxygen/html/_e_c_e_fto_n_e_d_8hpp_source.html +++ b/docs/doxygen/html/_e_c_e_fto_n_e_d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_u_8hpp.html b/docs/doxygen/html/_e_n_u_8hpp.html index 7311377b7..1b5aa35af 100644 --- a/docs/doxygen/html/_e_n_u_8hpp.html +++ b/docs/doxygen/html/_e_n_u_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_u_8hpp_source.html b/docs/doxygen/html/_e_n_u_8hpp_source.html index dd45efb32..7ebada926 100644 --- a/docs/doxygen/html/_e_n_u_8hpp_source.html +++ b/docs/doxygen/html/_e_n_u_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html b/docs/doxygen/html/_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html index e07924925..b24a0ebec 100644 --- a/docs/doxygen/html/_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html +++ b/docs/doxygen/html/_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp_source.html b/docs/doxygen/html/_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp_source.html index c5b40f285..edf733fc9 100644 --- a/docs/doxygen/html/_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp_source.html +++ b/docs/doxygen/html/_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_u_unit_vecs_in_e_c_e_f_8hpp.html b/docs/doxygen/html/_e_n_u_unit_vecs_in_e_c_e_f_8hpp.html index a29bbe80a..ef5828c6a 100644 --- a/docs/doxygen/html/_e_n_u_unit_vecs_in_e_c_e_f_8hpp.html +++ b/docs/doxygen/html/_e_n_u_unit_vecs_in_e_c_e_f_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_u_unit_vecs_in_e_c_e_f_8hpp_source.html b/docs/doxygen/html/_e_n_u_unit_vecs_in_e_c_e_f_8hpp_source.html index 83579981b..b60916879 100644 --- a/docs/doxygen/html/_e_n_u_unit_vecs_in_e_c_e_f_8hpp_source.html +++ b/docs/doxygen/html/_e_n_u_unit_vecs_in_e_c_e_f_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_uto_a_e_r_8hpp.html b/docs/doxygen/html/_e_n_uto_a_e_r_8hpp.html index 6192933b8..8bfece096 100644 --- a/docs/doxygen/html/_e_n_uto_a_e_r_8hpp.html +++ b/docs/doxygen/html/_e_n_uto_a_e_r_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_uto_a_e_r_8hpp_source.html b/docs/doxygen/html/_e_n_uto_a_e_r_8hpp_source.html index e08daf923..efd8ac07c 100644 --- a/docs/doxygen/html/_e_n_uto_a_e_r_8hpp_source.html +++ b/docs/doxygen/html/_e_n_uto_a_e_r_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_uto_e_c_e_f_8hpp.html b/docs/doxygen/html/_e_n_uto_e_c_e_f_8hpp.html index 0bdfdc579..17ac7a1ef 100644 --- a/docs/doxygen/html/_e_n_uto_e_c_e_f_8hpp.html +++ b/docs/doxygen/html/_e_n_uto_e_c_e_f_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_uto_e_c_e_f_8hpp_source.html b/docs/doxygen/html/_e_n_uto_e_c_e_f_8hpp_source.html index cf6480894..2f3c6eb11 100644 --- a/docs/doxygen/html/_e_n_uto_e_c_e_f_8hpp_source.html +++ b/docs/doxygen/html/_e_n_uto_e_c_e_f_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_uto_l_l_a_8hpp.html b/docs/doxygen/html/_e_n_uto_l_l_a_8hpp.html index 17c987fe4..315f208bf 100644 --- a/docs/doxygen/html/_e_n_uto_l_l_a_8hpp.html +++ b/docs/doxygen/html/_e_n_uto_l_l_a_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_uto_l_l_a_8hpp_source.html b/docs/doxygen/html/_e_n_uto_l_l_a_8hpp_source.html index e5b1aeee6..ecd4c231e 100644 --- a/docs/doxygen/html/_e_n_uto_l_l_a_8hpp_source.html +++ b/docs/doxygen/html/_e_n_uto_l_l_a_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_uto_n_e_d_8hpp.html b/docs/doxygen/html/_e_n_uto_n_e_d_8hpp.html index f6ca1a854..85f710b15 100644 --- a/docs/doxygen/html/_e_n_uto_n_e_d_8hpp.html +++ b/docs/doxygen/html/_e_n_uto_n_e_d_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_e_n_uto_n_e_d_8hpp_source.html b/docs/doxygen/html/_e_n_uto_n_e_d_8hpp_source.html index 7bbb1469b..9b94e7b7d 100644 --- a/docs/doxygen/html/_e_n_uto_n_e_d_8hpp_source.html +++ b/docs/doxygen/html/_e_n_uto_n_e_d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_endian_8hpp.html b/docs/doxygen/html/_endian_8hpp.html index f76213fc9..f3ac05bc3 100644 --- a/docs/doxygen/html/_endian_8hpp.html +++ b/docs/doxygen/html/_endian_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_endian_8hpp_source.html b/docs/doxygen/html/_endian_8hpp_source.html index 45d32a989..88435b121 100644 --- a/docs/doxygen/html/_endian_8hpp_source.html +++ b/docs/doxygen/html/_endian_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_enums_8hpp.html b/docs/doxygen/html/_enums_8hpp.html index 4d3d58648..580a55476 100644 --- a/docs/doxygen/html/_enums_8hpp.html +++ b/docs/doxygen/html/_enums_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_enums_8hpp_source.html b/docs/doxygen/html/_enums_8hpp_source.html index 02a9a657a..e14e0a361 100644 --- a/docs/doxygen/html/_enums_8hpp_source.html +++ b/docs/doxygen/html/_enums_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_error_8hpp.html b/docs/doxygen/html/_error_8hpp.html index 32d5282af..7ba0de007 100644 --- a/docs/doxygen/html/_error_8hpp.html +++ b/docs/doxygen/html/_error_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_error_8hpp_source.html b/docs/doxygen/html/_error_8hpp_source.html index 2d1cc533e..de277ae73 100644 --- a/docs/doxygen/html/_error_8hpp_source.html +++ b/docs/doxygen/html/_error_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_euler_8hpp.html b/docs/doxygen/html/_euler_8hpp.html index 631485787..7f93aac4b 100644 --- a/docs/doxygen/html/_euler_8hpp.html +++ b/docs/doxygen/html/_euler_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_euler_8hpp_source.html b/docs/doxygen/html/_euler_8hpp_source.html index 5483eaab2..0e61b22c4 100644 --- a/docs/doxygen/html/_euler_8hpp_source.html +++ b/docs/doxygen/html/_euler_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_f_f_t_2_f_f_t_8hpp.html b/docs/doxygen/html/_f_f_t_2_f_f_t_8hpp.html index 967cb70f2..65639e118 100644 --- a/docs/doxygen/html/_f_f_t_2_f_f_t_8hpp.html +++ b/docs/doxygen/html/_f_f_t_2_f_f_t_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_f_f_t_2_f_f_t_8hpp_source.html b/docs/doxygen/html/_f_f_t_2_f_f_t_8hpp_source.html index e43b31da5..239f77919 100644 --- a/docs/doxygen/html/_f_f_t_2_f_f_t_8hpp_source.html +++ b/docs/doxygen/html/_f_f_t_2_f_f_t_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_f_f_t_8hpp.html b/docs/doxygen/html/_f_f_t_8hpp.html index 723d6347c..178852d41 100644 --- a/docs/doxygen/html/_f_f_t_8hpp.html +++ b/docs/doxygen/html/_f_f_t_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_f_f_t_8hpp_source.html b/docs/doxygen/html/_f_f_t_8hpp_source.html index c7eaa4dbb..3b15ff6ec 100644 --- a/docs/doxygen/html/_f_f_t_8hpp_source.html +++ b/docs/doxygen/html/_f_f_t_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_filter_2_filters_2_filters2d_2laplace_8hpp.html b/docs/doxygen/html/_filter_2_filters_2_filters2d_2laplace_8hpp.html index 317a7a7dc..73314a310 100644 --- a/docs/doxygen/html/_filter_2_filters_2_filters2d_2laplace_8hpp.html +++ b/docs/doxygen/html/_filter_2_filters_2_filters2d_2laplace_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_filter_2_filters_2_filters2d_2laplace_8hpp_source.html b/docs/doxygen/html/_filter_2_filters_2_filters2d_2laplace_8hpp_source.html index 0357e8935..19a56b444 100644 --- a/docs/doxygen/html/_filter_2_filters_2_filters2d_2laplace_8hpp_source.html +++ b/docs/doxygen/html/_filter_2_filters_2_filters2d_2laplace_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_filter_8hpp.html b/docs/doxygen/html/_filter_8hpp.html index 9746df6b8..1a8b68695 100644 --- a/docs/doxygen/html/_filter_8hpp.html +++ b/docs/doxygen/html/_filter_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_filter_8hpp_source.html b/docs/doxygen/html/_filter_8hpp_source.html index d18ca6d23..943754c37 100644 --- a/docs/doxygen/html/_filter_8hpp_source.html +++ b/docs/doxygen/html/_filter_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_2cube_8hpp.html b/docs/doxygen/html/_functions_2cube_8hpp.html index d0972a421..601e12382 100644 --- a/docs/doxygen/html/_functions_2cube_8hpp.html +++ b/docs/doxygen/html/_functions_2cube_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_2cube_8hpp_source.html b/docs/doxygen/html/_functions_2cube_8hpp_source.html index 741f6bfd9..ed52b14a8 100644 --- a/docs/doxygen/html/_functions_2cube_8hpp_source.html +++ b/docs/doxygen/html/_functions_2cube_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_2interp_8hpp.html b/docs/doxygen/html/_functions_2interp_8hpp.html index a5c22374e..26ab6e0d2 100644 --- a/docs/doxygen/html/_functions_2interp_8hpp.html +++ b/docs/doxygen/html/_functions_2interp_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_2interp_8hpp_source.html b/docs/doxygen/html/_functions_2interp_8hpp_source.html index a4a4a4e31..4e2ced2a8 100644 --- a/docs/doxygen/html/_functions_2interp_8hpp_source.html +++ b/docs/doxygen/html/_functions_2interp_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_2power_8hpp.html b/docs/doxygen/html/_functions_2power_8hpp.html index de7411a20..fcb8f1a43 100644 --- a/docs/doxygen/html/_functions_2power_8hpp.html +++ b/docs/doxygen/html/_functions_2power_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_2power_8hpp_source.html b/docs/doxygen/html/_functions_2power_8hpp_source.html index 854135351..be9134863 100644 --- a/docs/doxygen/html/_functions_2power_8hpp_source.html +++ b/docs/doxygen/html/_functions_2power_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_2powerf_8hpp.html b/docs/doxygen/html/_functions_2powerf_8hpp.html index 27d3ed65c..e1e3a78d5 100644 --- a/docs/doxygen/html/_functions_2powerf_8hpp.html +++ b/docs/doxygen/html/_functions_2powerf_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_2powerf_8hpp_source.html b/docs/doxygen/html/_functions_2powerf_8hpp_source.html index 233a0cd6d..1650c7f62 100644 --- a/docs/doxygen/html/_functions_2powerf_8hpp_source.html +++ b/docs/doxygen/html/_functions_2powerf_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_2shape_8hpp.html b/docs/doxygen/html/_functions_2shape_8hpp.html index 1c30d1dc1..97be9f823 100644 --- a/docs/doxygen/html/_functions_2shape_8hpp.html +++ b/docs/doxygen/html/_functions_2shape_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_2shape_8hpp_source.html b/docs/doxygen/html/_functions_2shape_8hpp_source.html index 5e7b6d6b0..0ca1bd6f8 100644 --- a/docs/doxygen/html/_functions_2shape_8hpp_source.html +++ b/docs/doxygen/html/_functions_2shape_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_8hpp.html b/docs/doxygen/html/_functions_8hpp.html index 5226f923a..b5aa4a1aa 100644 --- a/docs/doxygen/html/_functions_8hpp.html +++ b/docs/doxygen/html/_functions_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_functions_8hpp_source.html b/docs/doxygen/html/_functions_8hpp_source.html index 2c2d9fe4f..2bd92fe3b 100644 --- a/docs/doxygen/html/_functions_8hpp_source.html +++ b/docs/doxygen/html/_functions_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_gauss_newton_nlls_8cpp-example.html b/docs/doxygen/html/_gauss_newton_nlls_8cpp-example.html index a0614d454..1929db04b 100644 --- a/docs/doxygen/html/_gauss_newton_nlls_8cpp-example.html +++ b/docs/doxygen/html/_gauss_newton_nlls_8cpp-example.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_geocentric_8hpp.html b/docs/doxygen/html/_geocentric_8hpp.html index bce292c44..17e0dd223 100644 --- a/docs/doxygen/html/_geocentric_8hpp.html +++ b/docs/doxygen/html/_geocentric_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_geocentric_8hpp_source.html b/docs/doxygen/html/_geocentric_8hpp_source.html index 7c3bbe248..163b44d3e 100644 --- a/docs/doxygen/html/_geocentric_8hpp_source.html +++ b/docs/doxygen/html/_geocentric_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_image_processing_8hpp.html b/docs/doxygen/html/_image_processing_8hpp.html index 808bf5360..98eee8242 100644 --- a/docs/doxygen/html/_image_processing_8hpp.html +++ b/docs/doxygen/html/_image_processing_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_image_processing_8hpp_source.html b/docs/doxygen/html/_image_processing_8hpp_source.html index 44f70ef12..a18259677 100644 --- a/docs/doxygen/html/_image_processing_8hpp_source.html +++ b/docs/doxygen/html/_image_processing_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_installation_8md.html b/docs/doxygen/html/_installation_8md.html index e84bdb24b..416f88289 100644 --- a/docs/doxygen/html/_installation_8md.html +++ b/docs/doxygen/html/_installation_8md.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_integrate_8hpp.html b/docs/doxygen/html/_integrate_8hpp.html index 15d302c6a..4dce8afc3 100644 --- a/docs/doxygen/html/_integrate_8hpp.html +++ b/docs/doxygen/html/_integrate_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_integrate_8hpp_source.html b/docs/doxygen/html/_integrate_8hpp_source.html index 83436b8bf..246b041d5 100644 --- a/docs/doxygen/html/_integrate_8hpp_source.html +++ b/docs/doxygen/html/_integrate_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_interface_with_eigen_8cpp-example.html b/docs/doxygen/html/_interface_with_eigen_8cpp-example.html index 86b59a529..d638f33e2 100644 --- a/docs/doxygen/html/_interface_with_eigen_8cpp-example.html +++ b/docs/doxygen/html/_interface_with_eigen_8cpp-example.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_interface_with_open_c_v_8cpp-example.html b/docs/doxygen/html/_interface_with_open_c_v_8cpp-example.html index 5522fdc30..5af140a80 100644 --- a/docs/doxygen/html/_interface_with_open_c_v_8cpp-example.html +++ b/docs/doxygen/html/_interface_with_open_c_v_8cpp-example.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_iteration_8hpp.html b/docs/doxygen/html/_iteration_8hpp.html index 40193f904..81354b89e 100644 --- a/docs/doxygen/html/_iteration_8hpp.html +++ b/docs/doxygen/html/_iteration_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_iteration_8hpp_source.html b/docs/doxygen/html/_iteration_8hpp_source.html index 664e43995..2346fdcea 100644 --- a/docs/doxygen/html/_iteration_8hpp_source.html +++ b/docs/doxygen/html/_iteration_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_a_8hpp.html b/docs/doxygen/html/_l_l_a_8hpp.html index 26fcd3a18..d79a37a9e 100644 --- a/docs/doxygen/html/_l_l_a_8hpp.html +++ b/docs/doxygen/html/_l_l_a_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_a_8hpp_source.html b/docs/doxygen/html/_l_l_a_8hpp_source.html index b46d72759..fbdfa48fc 100644 --- a/docs/doxygen/html/_l_l_a_8hpp_source.html +++ b/docs/doxygen/html/_l_l_a_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_ato_a_e_r_8hpp.html b/docs/doxygen/html/_l_l_ato_a_e_r_8hpp.html index e6b431e64..8c66f0c61 100644 --- a/docs/doxygen/html/_l_l_ato_a_e_r_8hpp.html +++ b/docs/doxygen/html/_l_l_ato_a_e_r_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_ato_a_e_r_8hpp_source.html b/docs/doxygen/html/_l_l_ato_a_e_r_8hpp_source.html index a2184f510..a460a4fdc 100644 --- a/docs/doxygen/html/_l_l_ato_a_e_r_8hpp_source.html +++ b/docs/doxygen/html/_l_l_ato_a_e_r_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_ato_e_c_e_f_8hpp.html b/docs/doxygen/html/_l_l_ato_e_c_e_f_8hpp.html index 79d7fbb9c..605fcb8e5 100644 --- a/docs/doxygen/html/_l_l_ato_e_c_e_f_8hpp.html +++ b/docs/doxygen/html/_l_l_ato_e_c_e_f_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_ato_e_c_e_f_8hpp_source.html b/docs/doxygen/html/_l_l_ato_e_c_e_f_8hpp_source.html index 01a5c88c0..61862c556 100644 --- a/docs/doxygen/html/_l_l_ato_e_c_e_f_8hpp_source.html +++ b/docs/doxygen/html/_l_l_ato_e_c_e_f_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_ato_e_n_u_8hpp.html b/docs/doxygen/html/_l_l_ato_e_n_u_8hpp.html index 2d11df4aa..86405747e 100644 --- a/docs/doxygen/html/_l_l_ato_e_n_u_8hpp.html +++ b/docs/doxygen/html/_l_l_ato_e_n_u_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_ato_e_n_u_8hpp_source.html b/docs/doxygen/html/_l_l_ato_e_n_u_8hpp_source.html index 8ed60fe62..689ea1f8b 100644 --- a/docs/doxygen/html/_l_l_ato_e_n_u_8hpp_source.html +++ b/docs/doxygen/html/_l_l_ato_e_n_u_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_ato_geocentric_8hpp.html b/docs/doxygen/html/_l_l_ato_geocentric_8hpp.html index c267102f3..2addd91f3 100644 --- a/docs/doxygen/html/_l_l_ato_geocentric_8hpp.html +++ b/docs/doxygen/html/_l_l_ato_geocentric_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_ato_geocentric_8hpp_source.html b/docs/doxygen/html/_l_l_ato_geocentric_8hpp_source.html index 0594da155..32a68487a 100644 --- a/docs/doxygen/html/_l_l_ato_geocentric_8hpp_source.html +++ b/docs/doxygen/html/_l_l_ato_geocentric_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_ato_n_e_d_8hpp.html b/docs/doxygen/html/_l_l_ato_n_e_d_8hpp.html index 58c87d5d8..7ddb69722 100644 --- a/docs/doxygen/html/_l_l_ato_n_e_d_8hpp.html +++ b/docs/doxygen/html/_l_l_ato_n_e_d_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_l_l_ato_n_e_d_8hpp_source.html b/docs/doxygen/html/_l_l_ato_n_e_d_8hpp_source.html index 1b9d8c907..2924e0546 100644 --- a/docs/doxygen/html/_l_l_ato_n_e_d_8hpp_source.html +++ b/docs/doxygen/html/_l_l_ato_n_e_d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_linalg_8hpp.html b/docs/doxygen/html/_linalg_8hpp.html index c6fbbef60..a14db6d97 100644 --- a/docs/doxygen/html/_linalg_8hpp.html +++ b/docs/doxygen/html/_linalg_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -119,6 +119,8 @@

Go to the source code of this file.

Detailed Description

diff --git a/docs/doxygen/html/_linalg_8hpp_source.html b/docs/doxygen/html/_linalg_8hpp_source.html index d2dd5d896..b5f268388 100644 --- a/docs/doxygen/html/_linalg_8hpp_source.html +++ b/docs/doxygen/html/_linalg_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -127,19 +127,24 @@
29
31#include "NumCpp/Linalg/det.hpp"
- -
33#include "NumCpp/Linalg/hat.hpp"
-
34#include "NumCpp/Linalg/inv.hpp"
- - - - - - - -
42#include "NumCpp/Linalg/svd.hpp"
+
32#include "NumCpp/Linalg/eig.hpp"
+ + +
35#include "NumCpp/Linalg/hat.hpp"
+
36#include "NumCpp/Linalg/inv.hpp"
+ + + + + + + +
44#include "NumCpp/Linalg/svd.hpp"
+ + + @@ -151,6 +156,7 @@ +
diff --git a/docs/doxygen/html/_logger_8hpp.html b/docs/doxygen/html/_logger_8hpp.html index 623f2fc46..96238ac81 100644 --- a/docs/doxygen/html/_logger_8hpp.html +++ b/docs/doxygen/html/_logger_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_logger_8hpp_source.html b/docs/doxygen/html/_logger_8hpp_source.html index 8881cc83e..42885de7e 100644 --- a/docs/doxygen/html/_logger_8hpp_source.html +++ b/docs/doxygen/html/_logger_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_logging_8hpp.html b/docs/doxygen/html/_logging_8hpp.html index 12df20010..d3f9a7071 100644 --- a/docs/doxygen/html/_logging_8hpp.html +++ b/docs/doxygen/html/_logging_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_logging_8hpp_source.html b/docs/doxygen/html/_logging_8hpp_source.html index 42cea9fe8..62799fcbc 100644 --- a/docs/doxygen/html/_logging_8hpp_source.html +++ b/docs/doxygen/html/_logging_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_d_8hpp.html b/docs/doxygen/html/_n_e_d_8hpp.html index 16344a41d..43e1542dd 100644 --- a/docs/doxygen/html/_n_e_d_8hpp.html +++ b/docs/doxygen/html/_n_e_d_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_d_8hpp_source.html b/docs/doxygen/html/_n_e_d_8hpp_source.html index 82e8638be..d306393b0 100644 --- a/docs/doxygen/html/_n_e_d_8hpp_source.html +++ b/docs/doxygen/html/_n_e_d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html b/docs/doxygen/html/_n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html index 36b229dc4..f1b9df958 100644 --- a/docs/doxygen/html/_n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html +++ b/docs/doxygen/html/_n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp_source.html b/docs/doxygen/html/_n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp_source.html index b18c1aed1..b41439bbc 100644 --- a/docs/doxygen/html/_n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp_source.html +++ b/docs/doxygen/html/_n_e_d_roll_pitch_yaw_to_e_c_e_f_euler_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_d_unit_vecs_in_e_c_e_f_8hpp.html b/docs/doxygen/html/_n_e_d_unit_vecs_in_e_c_e_f_8hpp.html index 844fa8d3d..283bf8a64 100644 --- a/docs/doxygen/html/_n_e_d_unit_vecs_in_e_c_e_f_8hpp.html +++ b/docs/doxygen/html/_n_e_d_unit_vecs_in_e_c_e_f_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_d_unit_vecs_in_e_c_e_f_8hpp_source.html b/docs/doxygen/html/_n_e_d_unit_vecs_in_e_c_e_f_8hpp_source.html index 0a5525f1e..21105d017 100644 --- a/docs/doxygen/html/_n_e_d_unit_vecs_in_e_c_e_f_8hpp_source.html +++ b/docs/doxygen/html/_n_e_d_unit_vecs_in_e_c_e_f_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_dto_a_e_r_8hpp.html b/docs/doxygen/html/_n_e_dto_a_e_r_8hpp.html index 24fd98c18..1dbf5dd8c 100644 --- a/docs/doxygen/html/_n_e_dto_a_e_r_8hpp.html +++ b/docs/doxygen/html/_n_e_dto_a_e_r_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_dto_a_e_r_8hpp_source.html b/docs/doxygen/html/_n_e_dto_a_e_r_8hpp_source.html index 380166a72..62d401605 100644 --- a/docs/doxygen/html/_n_e_dto_a_e_r_8hpp_source.html +++ b/docs/doxygen/html/_n_e_dto_a_e_r_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_dto_e_c_e_f_8hpp.html b/docs/doxygen/html/_n_e_dto_e_c_e_f_8hpp.html index 45259fa1d..89c95112d 100644 --- a/docs/doxygen/html/_n_e_dto_e_c_e_f_8hpp.html +++ b/docs/doxygen/html/_n_e_dto_e_c_e_f_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_dto_e_c_e_f_8hpp_source.html b/docs/doxygen/html/_n_e_dto_e_c_e_f_8hpp_source.html index bfb2a4d20..05502cba4 100644 --- a/docs/doxygen/html/_n_e_dto_e_c_e_f_8hpp_source.html +++ b/docs/doxygen/html/_n_e_dto_e_c_e_f_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_dto_e_n_u_8hpp.html b/docs/doxygen/html/_n_e_dto_e_n_u_8hpp.html index 94080953d..669534d75 100644 --- a/docs/doxygen/html/_n_e_dto_e_n_u_8hpp.html +++ b/docs/doxygen/html/_n_e_dto_e_n_u_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_dto_e_n_u_8hpp_source.html b/docs/doxygen/html/_n_e_dto_e_n_u_8hpp_source.html index 749aee2ed..daddee016 100644 --- a/docs/doxygen/html/_n_e_dto_e_n_u_8hpp_source.html +++ b/docs/doxygen/html/_n_e_dto_e_n_u_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_dto_l_l_a_8hpp.html b/docs/doxygen/html/_n_e_dto_l_l_a_8hpp.html index 317972e4b..2f51fe410 100644 --- a/docs/doxygen/html/_n_e_dto_l_l_a_8hpp.html +++ b/docs/doxygen/html/_n_e_dto_l_l_a_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_n_e_dto_l_l_a_8hpp_source.html b/docs/doxygen/html/_n_e_dto_l_l_a_8hpp_source.html index 3222d6015..50db39b93 100644 --- a/docs/doxygen/html/_n_e_dto_l_l_a_8hpp_source.html +++ b/docs/doxygen/html/_n_e_dto_l_l_a_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_nd_array_8hpp.html b/docs/doxygen/html/_nd_array_8hpp.html index a0f948de1..7f275aca9 100644 --- a/docs/doxygen/html/_nd_array_8hpp.html +++ b/docs/doxygen/html/_nd_array_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_nd_array_8hpp_source.html b/docs/doxygen/html/_nd_array_8hpp_source.html index 1deffe0a4..33ba385c0 100644 --- a/docs/doxygen/html/_nd_array_8hpp_source.html +++ b/docs/doxygen/html/_nd_array_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_nd_array_broadcast_8hpp.html b/docs/doxygen/html/_nd_array_broadcast_8hpp.html index 917cbc7c1..1c379f681 100644 --- a/docs/doxygen/html/_nd_array_broadcast_8hpp.html +++ b/docs/doxygen/html/_nd_array_broadcast_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_nd_array_broadcast_8hpp_source.html b/docs/doxygen/html/_nd_array_broadcast_8hpp_source.html index 3b8304b78..c6519ec0f 100644 --- a/docs/doxygen/html/_nd_array_broadcast_8hpp_source.html +++ b/docs/doxygen/html/_nd_array_broadcast_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_nd_array_core_8hpp.html b/docs/doxygen/html/_nd_array_core_8hpp.html index 7475366ee..4be7a291c 100644 --- a/docs/doxygen/html/_nd_array_core_8hpp.html +++ b/docs/doxygen/html/_nd_array_core_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_nd_array_core_8hpp_source.html b/docs/doxygen/html/_nd_array_core_8hpp_source.html index 0db5b994f..662784871 100644 --- a/docs/doxygen/html/_nd_array_core_8hpp_source.html +++ b/docs/doxygen/html/_nd_array_core_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_nd_array_iterators_8hpp.html b/docs/doxygen/html/_nd_array_iterators_8hpp.html index d18184afa..52ddfeedf 100644 --- a/docs/doxygen/html/_nd_array_iterators_8hpp.html +++ b/docs/doxygen/html/_nd_array_iterators_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_nd_array_iterators_8hpp_source.html b/docs/doxygen/html/_nd_array_iterators_8hpp_source.html index 4211488b0..589fb47f3 100644 --- a/docs/doxygen/html/_nd_array_iterators_8hpp_source.html +++ b/docs/doxygen/html/_nd_array_iterators_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_nd_array_operators_8hpp.html b/docs/doxygen/html/_nd_array_operators_8hpp.html index ec9adc884..4d7d1dc30 100644 --- a/docs/doxygen/html/_nd_array_operators_8hpp.html +++ b/docs/doxygen/html/_nd_array_operators_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_nd_array_operators_8hpp_source.html b/docs/doxygen/html/_nd_array_operators_8hpp_source.html index 14ff9e6bc..c8e251ad7 100644 --- a/docs/doxygen/html/_nd_array_operators_8hpp_source.html +++ b/docs/doxygen/html/_nd_array_operators_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_newton_8hpp.html b/docs/doxygen/html/_newton_8hpp.html index 66798ed10..ebea19998 100644 --- a/docs/doxygen/html/_newton_8hpp.html +++ b/docs/doxygen/html/_newton_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_newton_8hpp_source.html b/docs/doxygen/html/_newton_8hpp_source.html index be78e062f..f90b4bf65 100644 --- a/docs/doxygen/html/_newton_8hpp_source.html +++ b/docs/doxygen/html/_newton_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_num_cpp_8hpp.html b/docs/doxygen/html/_num_cpp_8hpp.html index ce3057a2c..ad1991fd4 100644 --- a/docs/doxygen/html/_num_cpp_8hpp.html +++ b/docs/doxygen/html/_num_cpp_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_num_cpp_8hpp_source.html b/docs/doxygen/html/_num_cpp_8hpp_source.html index 118785959..75315e98c 100644 --- a/docs/doxygen/html/_num_cpp_8hpp_source.html +++ b/docs/doxygen/html/_num_cpp_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_orientation_8hpp.html b/docs/doxygen/html/_orientation_8hpp.html index f3437699d..f8d7398c5 100644 --- a/docs/doxygen/html/_orientation_8hpp.html +++ b/docs/doxygen/html/_orientation_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_orientation_8hpp_source.html b/docs/doxygen/html/_orientation_8hpp_source.html index 86c877d4f..68c0bc33e 100644 --- a/docs/doxygen/html/_orientation_8hpp_source.html +++ b/docs/doxygen/html/_orientation_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_pixel_8hpp.html b/docs/doxygen/html/_pixel_8hpp.html index 972f06f53..8ba31deec 100644 --- a/docs/doxygen/html/_pixel_8hpp.html +++ b/docs/doxygen/html/_pixel_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_pixel_8hpp_source.html b/docs/doxygen/html/_pixel_8hpp_source.html index f1d98a657..9e59bb7fe 100644 --- a/docs/doxygen/html/_pixel_8hpp_source.html +++ b/docs/doxygen/html/_pixel_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_poly1d_8hpp.html b/docs/doxygen/html/_poly1d_8hpp.html index cec7842d8..ab213896a 100644 --- a/docs/doxygen/html/_poly1d_8hpp.html +++ b/docs/doxygen/html/_poly1d_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_poly1d_8hpp_source.html b/docs/doxygen/html/_poly1d_8hpp_source.html index af70c9fc5..19e1d24a2 100644 --- a/docs/doxygen/html/_poly1d_8hpp_source.html +++ b/docs/doxygen/html/_poly1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_polynomial_8hpp.html b/docs/doxygen/html/_polynomial_8hpp.html index 0e48e9fbf..19757e9c0 100644 --- a/docs/doxygen/html/_polynomial_8hpp.html +++ b/docs/doxygen/html/_polynomial_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_polynomial_8hpp_source.html b/docs/doxygen/html/_polynomial_8hpp_source.html index 7a005e262..097f73173 100644 --- a/docs/doxygen/html/_polynomial_8hpp_source.html +++ b/docs/doxygen/html/_polynomial_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_pybind_interface_8hpp.html b/docs/doxygen/html/_pybind_interface_8hpp.html index 7c7e9799c..c504bd219 100644 --- a/docs/doxygen/html/_pybind_interface_8hpp.html +++ b/docs/doxygen/html/_pybind_interface_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_pybind_interface_8hpp_source.html b/docs/doxygen/html/_pybind_interface_8hpp_source.html index 40b0bb55e..6a6570894 100644 --- a/docs/doxygen/html/_pybind_interface_8hpp_source.html +++ b/docs/doxygen/html/_pybind_interface_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_python_interface_8hpp.html b/docs/doxygen/html/_python_interface_8hpp.html index f98de3a04..44b19e1bd 100644 --- a/docs/doxygen/html/_python_interface_8hpp.html +++ b/docs/doxygen/html/_python_interface_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_python_interface_8hpp_source.html b/docs/doxygen/html/_python_interface_8hpp_source.html index e746070a0..e2fc17486 100644 --- a/docs/doxygen/html/_python_interface_8hpp_source.html +++ b/docs/doxygen/html/_python_interface_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_quaternion_8hpp.html b/docs/doxygen/html/_quaternion_8hpp.html index 0229ef606..bf894ee4f 100644 --- a/docs/doxygen/html/_quaternion_8hpp.html +++ b/docs/doxygen/html/_quaternion_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_quaternion_8hpp_source.html b/docs/doxygen/html/_quaternion_8hpp_source.html index e24d7ce71..676a6ab51 100644 --- a/docs/doxygen/html/_quaternion_8hpp_source.html +++ b/docs/doxygen/html/_quaternion_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_r_e_a_d_m_e_8md.html b/docs/doxygen/html/_r_e_a_d_m_e_8md.html index fa9541c30..0658321a1 100644 --- a/docs/doxygen/html/_r_e_a_d_m_e_8md.html +++ b/docs/doxygen/html/_r_e_a_d_m_e_8md.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_r_n_g_8hpp.html b/docs/doxygen/html/_r_n_g_8hpp.html index 5de52d9c0..21a29b9e9 100644 --- a/docs/doxygen/html/_r_n_g_8hpp.html +++ b/docs/doxygen/html/_r_n_g_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_r_n_g_8hpp_source.html b/docs/doxygen/html/_r_n_g_8hpp_source.html index fc7d6fde2..35f8db93a 100644 --- a/docs/doxygen/html/_r_n_g_8hpp_source.html +++ b/docs/doxygen/html/_r_n_g_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_random_2bernoulli_8hpp.html b/docs/doxygen/html/_random_2bernoulli_8hpp.html index c148245f4..30d2059f2 100644 --- a/docs/doxygen/html/_random_2bernoulli_8hpp.html +++ b/docs/doxygen/html/_random_2bernoulli_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_random_2bernoulli_8hpp_source.html b/docs/doxygen/html/_random_2bernoulli_8hpp_source.html index 883131911..684081a5b 100644 --- a/docs/doxygen/html/_random_2bernoulli_8hpp_source.html +++ b/docs/doxygen/html/_random_2bernoulli_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_random_2beta_8hpp.html b/docs/doxygen/html/_random_2beta_8hpp.html index 0b6b9291e..0b9795323 100644 --- a/docs/doxygen/html/_random_2beta_8hpp.html +++ b/docs/doxygen/html/_random_2beta_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_random_2beta_8hpp_source.html b/docs/doxygen/html/_random_2beta_8hpp_source.html index 81127a183..7c6fbf603 100644 --- a/docs/doxygen/html/_random_2beta_8hpp_source.html +++ b/docs/doxygen/html/_random_2beta_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_random_2gamma_8hpp.html b/docs/doxygen/html/_random_2gamma_8hpp.html index a7b5b6680..14a05d42e 100644 --- a/docs/doxygen/html/_random_2gamma_8hpp.html +++ b/docs/doxygen/html/_random_2gamma_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_random_2gamma_8hpp_source.html b/docs/doxygen/html/_random_2gamma_8hpp_source.html index cb3f518d5..dac525fb3 100644 --- a/docs/doxygen/html/_random_2gamma_8hpp_source.html +++ b/docs/doxygen/html/_random_2gamma_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_random_2laplace_8hpp.html b/docs/doxygen/html/_random_2laplace_8hpp.html index 02577955b..f026d4546 100644 --- a/docs/doxygen/html/_random_2laplace_8hpp.html +++ b/docs/doxygen/html/_random_2laplace_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_random_2laplace_8hpp_source.html b/docs/doxygen/html/_random_2laplace_8hpp_source.html index b126791f1..89c9ab4fe 100644 --- a/docs/doxygen/html/_random_2laplace_8hpp_source.html +++ b/docs/doxygen/html/_random_2laplace_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_random_8hpp.html b/docs/doxygen/html/_random_8hpp.html index e3a2df48a..8ddc353ab 100644 --- a/docs/doxygen/html/_random_8hpp.html +++ b/docs/doxygen/html/_random_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_random_8hpp_source.html b/docs/doxygen/html/_random_8hpp_source.html index 1924a89e1..bb52556ee 100644 --- a/docs/doxygen/html/_random_8hpp_source.html +++ b/docs/doxygen/html/_random_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_read_me_8cpp-example.html b/docs/doxygen/html/_read_me_8cpp-example.html index 084f37bdb..a91df4094 100644 --- a/docs/doxygen/html/_read_me_8cpp-example.html +++ b/docs/doxygen/html/_read_me_8cpp-example.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -295,14 +295,14 @@
auto a75 = nc::random::randInt<int>({ 1, 4 }, 0, 10);
[[maybe_unused]] auto value9 = nc::linalg::det(a73);
auto a76 = nc::linalg::inv(a73);
-
auto a77 = nc::linalg::lstsq(a74, a75);
+
auto a77 = nc::linalg::lstsq(a74, a75);
auto a78 = nc::linalg::matrix_power<int>(a73, 3);
auto a79 = nc::linalg::multi_dot<int>({ a, b.transpose(), c });
-
nc::linalg::svd(a.astype<double>(), u, s, vt);
+
nc::linalg::svd(a.astype<double>(), u, s, vt);
return 0;
}
@@ -313,9 +313,9 @@
constexpr double pi
Pi.
Definition Core/Constants.hpp:39
const double nan
NaN.
Definition Core/Constants.hpp:41
NdArray< double > inv(const NdArray< dtype > &inArray)
Definition inv.hpp:54
+
void svd(const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVT)
Definition svd.hpp:51
auto det(const NdArray< dtype > &inArray)
Definition det.hpp:131
-
NdArray< double > lstsq(const NdArray< dtype > &inA, const NdArray< dtype > &inB, double inTolerance=1e-12)
Definition lstsq.hpp:58
-
void svd(const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVt)
Definition svd.hpp:51
+
NdArray< double > lstsq(const NdArray< dtype > &inA, const NdArray< dtype > &inB)
Definition lstsq.hpp:57
void seed(int inSeed)
Definition generator.hpp:46
dtype choice(const NdArray< dtype > &inArray)
Definition choice.hpp:102
NdArray< dtype > triu(uint32 inN, uint32 inM, int32 inOffset=0)
Definition tri.hpp:175
diff --git a/docs/doxygen/html/_reference_frames_8hpp.html b/docs/doxygen/html/_reference_frames_8hpp.html index 9e8aec8c1..45d7e218e 100644 --- a/docs/doxygen/html/_reference_frames_8hpp.html +++ b/docs/doxygen/html/_reference_frames_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_reference_frames_8hpp_source.html b/docs/doxygen/html/_reference_frames_8hpp_source.html index 422194a9c..3c6c4cd83 100644 --- a/docs/doxygen/html/_reference_frames_8hpp_source.html +++ b/docs/doxygen/html/_reference_frames_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_release_notes_8md.html b/docs/doxygen/html/_release_notes_8md.html index 6254cada2..b6afffd59 100644 --- a/docs/doxygen/html/_release_notes_8md.html +++ b/docs/doxygen/html/_release_notes_8md.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_roots_8hpp.html b/docs/doxygen/html/_roots_8hpp.html index 82810c04c..1d93050b7 100644 --- a/docs/doxygen/html/_roots_8hpp.html +++ b/docs/doxygen/html/_roots_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_roots_8hpp_source.html b/docs/doxygen/html/_roots_8hpp_source.html index 3d19100f9..da43c9819 100644 --- a/docs/doxygen/html/_roots_8hpp_source.html +++ b/docs/doxygen/html/_roots_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_rotations_8hpp.html b/docs/doxygen/html/_rotations_8hpp.html index 4b2c03527..9f5ab18ba 100644 --- a/docs/doxygen/html/_rotations_8hpp.html +++ b/docs/doxygen/html/_rotations_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_rotations_8hpp_source.html b/docs/doxygen/html/_rotations_8hpp_source.html index e0fd4b4a3..8d84259a0 100644 --- a/docs/doxygen/html/_rotations_8hpp_source.html +++ b/docs/doxygen/html/_rotations_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_s_v_d_class_8hpp.js b/docs/doxygen/html/_s_v_d_class_8hpp.js deleted file mode 100644 index 156deccf0..000000000 --- a/docs/doxygen/html/_s_v_d_class_8hpp.js +++ /dev/null @@ -1,4 +0,0 @@ -var _s_v_d_class_8hpp = -[ - [ "nc::linalg::SVD", "classnc_1_1linalg_1_1_s_v_d.html", "classnc_1_1linalg_1_1_s_v_d" ] -]; \ No newline at end of file diff --git a/docs/doxygen/html/_s_v_d_class_8hpp_source.html b/docs/doxygen/html/_s_v_d_class_8hpp_source.html deleted file mode 100644 index f4ccd22be..000000000 --- a/docs/doxygen/html/_s_v_d_class_8hpp_source.html +++ /dev/null @@ -1,746 +0,0 @@ - - - - - - - - - NumCpp: SVDClass.hpp Source File - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - -
-
NumCpp -  2.15.0 -
-
A Templatized Header Only C++ Implementation of the Python NumPy Library
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
-
-
-
-
-
Loading...
-
Searching...
-
No Matches
-
-
-
-
- -
-
SVDClass.hpp
-
-
-Go to the documentation of this file.
1
-
29#pragma once
-
30
-
31#include <cmath>
-
32#include <limits>
-
33#include <string>
-
34
- -
36#include "NumCpp/Core/Types.hpp"
-
37#include "NumCpp/NdArray.hpp"
- -
39
-
40namespace nc::linalg
-
41{
-
42 // =============================================================================
-
43 // Class Description:
-
-
46 class SVD
-
47 {
-
48 public:
-
49 // =============================================================================
-
50 // Description:
-
-
55 explicit SVD(const NdArray<double>& inMatrix) :
-
56 m_(inMatrix.shape().rows),
-
57 n_(inMatrix.shape().cols),
-
58 u_(inMatrix),
-
59 v_(n_, n_),
-
60 s_(1, n_),
-
61 eps_(std::numeric_limits<double>::epsilon())
-
62 {
-
63 decompose();
-
64 reorder();
-
65 tsh_ = 0.5 * std::sqrt(m_ + n_ + 1.) * s_.front() * eps_;
-
66 }
-
-
67
-
68 // =============================================================================
-
69 // Description:
-
- -
75 {
-
76 return u_;
-
77 }
-
-
78
-
79 // =============================================================================
-
80 // Description:
-
- -
86 {
-
87 return v_;
-
88 }
-
-
89
-
90 // =============================================================================
-
91 // Description:
-
- -
97 {
-
98 return s_;
-
99 }
-
-
100
-
101 // =============================================================================
-
102 // Description:
-
- -
111 {
-
112 double ss{};
-
113
-
114 if (inInput.size() != m_)
-
115 {
-
116 THROW_INVALID_ARGUMENT_ERROR("Invalid matrix dimensions");
-
117 }
-
118
- -
120
-
121 NdArray<double> tmp(1, n_);
-
122
-
123 tsh_ = (inThresh >= 0. ? inThresh : 0.5 * sqrt(m_ + n_ + 1.) * s_.front() * eps_);
-
124
-
125 for (uint32 j = 0; j < n_; j++)
-
126 {
-
127 ss = 0.;
-
128 if (s_[j] > tsh_)
-
129 {
-
130 for (uint32 i = 0; i < m_; i++)
-
131 {
-
132 ss += u_(i, j) * inInput[i];
-
133 }
-
134 ss /= s_[j];
-
135 }
-
136 tmp[j] = ss;
-
137 }
-
138
-
139 for (uint32 j = 0; j < n_; j++)
-
140 {
-
141 ss = 0.;
-
142 for (uint32 jj = 0; jj < n_; jj++)
-
143 {
-
144 ss += v_(j, jj) * tmp[jj];
-
145 }
-
146
-
147 returnArray[j] = ss;
-
148 }
-
149
-
150 return returnArray;
-
151 }
-
-
152
-
153 private:
-
154 // =============================================================================
-
155 // Description:
-
163 static double SIGN(double inA, double inB) noexcept
-
164 {
-
165 return inB >= 0 ? (inA >= 0 ? inA : -inA) : (inA >= 0 ? -inA : inA);
-
166 }
-
167
-
168 // =============================================================================
-
169 // Description:
-
172 void decompose()
-
173 {
-
174 bool flag{};
-
175 uint32 i{};
-
176 uint32 its{};
-
177 uint32 j{};
-
178 uint32 jj{};
-
179 uint32 k{};
-
180 uint32 l{};
-
181 uint32 nm{};
-
182
-
183 double anorm{};
-
184 double c{};
-
185 double f{};
-
186 double g{};
-
187 double h{};
-
188 double ss{};
-
189 double scale{};
-
190 double x{};
-
191 double y{};
-
192 double z{};
-
193
-
194 NdArray<double> rv1(n_, 1);
-
195
-
196 for (i = 0; i < n_; ++i)
-
197 {
-
198 l = i + 2;
-
199 rv1[i] = scale * g;
-
200 g = ss = scale = 0.;
-
201
-
202 if (i < m_)
-
203 {
-
204 for (k = i; k < m_; ++k)
-
205 {
-
206 scale += std::abs(u_(k, i));
-
207 }
-
208
- -
210 {
-
211 for (k = i; k < m_; ++k)
-
212 {
-
213 u_(k, i) /= scale;
-
214 ss += u_(k, i) * u_(k, i);
-
215 }
-
216
-
217 f = u_(i, i);
-
218 g = -SIGN(std::sqrt(ss), f);
-
219 h = f * g - ss;
-
220 u_(i, i) = f - g;
-
221
-
222 for (j = l - 1; j < n_; ++j)
-
223 {
-
224 for (ss = 0., k = i; k < m_; ++k)
-
225 {
-
226 ss += u_(k, i) * u_(k, j);
-
227 }
-
228
-
229 f = ss / h;
-
230
-
231 for (k = i; k < m_; ++k)
-
232 {
-
233 u_(k, j) += f * u_(k, i);
-
234 }
-
235 }
-
236
-
237 for (k = i; k < m_; ++k)
-
238 {
-
239 u_(k, i) *= scale;
-
240 }
-
241 }
-
242 }
-
243
-
244 s_[i] = scale * g;
-
245 g = ss = scale = 0.;
-
246
-
247 if (i + 1 <= m_ && i + 1 != n_)
-
248 {
-
249 for (k = l - 1; k < n_; ++k)
-
250 {
-
251 scale += std::abs(u_(i, k));
-
252 }
-
253
- -
255 {
-
256 for (k = l - 1; k < n_; ++k)
-
257 {
-
258 u_(i, k) /= scale;
-
259 ss += u_(i, k) * u_(i, k);
-
260 }
-
261
-
262 f = u_(i, l - 1);
-
263 g = -SIGN(std::sqrt(ss), f);
-
264 h = f * g - ss;
-
265 u_(i, l - 1) = f - g;
-
266
-
267 for (k = l - 1; k < n_; ++k)
-
268 {
-
269 rv1[k] = u_(i, k) / h;
-
270 }
-
271
-
272 for (j = l - 1; j < m_; ++j)
-
273 {
-
274 for (ss = 0., k = l - 1; k < n_; ++k)
-
275 {
-
276 ss += u_(j, k) * u_(i, k);
-
277 }
-
278
-
279 for (k = l - 1; k < n_; ++k)
-
280 {
-
281 u_(j, k) += ss * rv1[k];
-
282 }
-
283 }
-
284
-
285 for (k = l - 1; k < n_; ++k)
-
286 {
-
287 u_(i, k) *= scale;
-
288 }
-
289 }
-
290 }
-
291
-
292 anorm = std::max(anorm, (std::abs(s_[i]) + std::abs(rv1[i])));
-
293 }
-
294
-
295 for (i = n_ - 1; i != static_cast<uint32>(-1); --i)
-
296 {
-
297 if (i < n_ - 1)
-
298 {
-
299 if (!utils::essentiallyEqual(g, 0.))
-
300 {
-
301 for (j = l; j < n_; ++j)
-
302 {
-
303 v_(j, i) = (u_(i, j) / u_(i, l)) / g;
-
304 }
-
305
-
306 for (j = l; j < n_; ++j)
-
307 {
-
308 for (ss = 0., k = l; k < n_; ++k)
-
309 {
-
310 ss += u_(i, k) * v_(k, j);
-
311 }
-
312
-
313 for (k = l; k < n_; ++k)
-
314 {
-
315 v_(k, j) += ss * v_(k, i);
-
316 }
-
317 }
-
318 }
-
319
-
320 for (j = l; j < n_; ++j)
-
321 {
-
322 v_(i, j) = v_(j, i) = 0.;
-
323 }
-
324 }
-
325
-
326 v_(i, i) = 1.;
-
327 g = rv1[i];
-
328 l = i;
-
329 }
-
330
-
331 for (i = std::min(m_, n_) - 1; i != static_cast<uint32>(-1); --i)
-
332 {
-
333 l = i + 1;
-
334 g = s_[i];
-
335
-
336 for (j = l; j < n_; ++j)
-
337 {
-
338 u_(i, j) = 0.;
-
339 }
-
340
-
341 if (!utils::essentiallyEqual(g, 0.))
-
342 {
-
343 g = 1. / g;
-
344
-
345 for (j = l; j < n_; ++j)
-
346 {
-
347 for (ss = 0., k = l; k < m_; ++k)
-
348 {
-
349 ss += u_(k, i) * u_(k, j);
-
350 }
-
351
-
352 f = (ss / u_(i, i)) * g;
-
353
-
354 for (k = i; k < m_; ++k)
-
355 {
-
356 u_(k, j) += f * u_(k, i);
-
357 }
-
358 }
-
359
-
360 for (j = i; j < m_; ++j)
-
361 {
-
362 u_(j, i) *= g;
-
363 }
-
364 }
-
365 else
-
366 {
-
367 for (j = i; j < m_; ++j)
-
368 {
-
369 u_(j, i) = 0.;
-
370 }
-
371 }
-
372
-
373 ++u_(i, i);
-
374 }
-
375
-
376 for (k = n_ - 1; k != static_cast<uint32>(-1); --k)
-
377 {
-
378 for (its = 0; its < 30; ++its)
-
379 {
-
380 flag = true;
-
381 for (l = k; l != static_cast<uint32>(-1); --l)
-
382 {
-
383 nm = l - 1;
-
384 if (l == 0 || std::abs(rv1[l]) <= eps_ * anorm)
-
385 {
-
386 flag = false;
-
387 break;
-
388 }
-
389
-
390 if (std::abs(s_[nm]) <= eps_ * anorm)
-
391 {
-
392 break;
-
393 }
-
394 }
-
395
-
396 if (flag)
-
397 {
-
398 c = 0.;
-
399 ss = 1.;
-
400 for (i = l; i < k + 1; ++i)
-
401 {
-
402 f = ss * rv1[i];
-
403 rv1[i] = c * rv1[i];
-
404
-
405 if (std::abs(f) <= eps_ * anorm)
-
406 {
-
407 break;
-
408 }
-
409
-
410 g = s_[i];
-
411 h = pythag(f, g);
-
412 s_[i] = h;
-
413 h = 1. / h;
-
414 c = g * h;
-
415 ss = -f * h;
-
416
-
417 for (j = 0; j < m_; ++j)
-
418 {
-
419 y = u_(j, nm);
-
420 z = u_(j, i);
-
421 u_(j, nm) = y * c + z * ss;
-
422 u_(j, i) = z * c - y * ss;
-
423 }
-
424 }
-
425 }
-
426
-
427 z = s_[k];
-
428 if (l == k)
-
429 {
-
430 if (z < 0.)
-
431 {
-
432 s_[k] = -z;
-
433 for (j = 0; j < n_; ++j)
-
434 {
-
435 v_(j, k) = -v_(j, k);
-
436 }
-
437 }
-
438 break;
-
439 }
-
440
-
441 if (its == 29)
-
442 {
-
443 THROW_INVALID_ARGUMENT_ERROR("no convergence in 30 svdcmp iterations");
-
444 }
-
445
-
446 x = s_[l];
-
447 nm = k - 1;
-
448 y = s_[nm];
-
449 g = rv1[nm];
-
450 h = rv1[k];
-
451 f = ((y - z) * (y + z) + (g - h) * (g + h)) / (2. * h * y);
-
452 g = pythag(f, 1.);
-
453 f = ((x - z) * (x + z) + h * ((y / (f + SIGN(g, f))) - h)) / x;
-
454 c = ss = 1.;
-
455
-
456 for (j = l; j <= nm; j++)
-
457 {
-
458 i = j + 1;
-
459 g = rv1[i];
-
460 y = s_[i];
-
461 h = ss * g;
-
462 g = c * g;
-
463 z = pythag(f, h);
-
464 rv1[j] = z;
-
465 c = f / z;
-
466 ss = h / z;
-
467 f = x * c + g * ss;
-
468 g = g * c - x * ss;
-
469 h = y * ss;
-
470 y *= c;
-
471
-
472 for (jj = 0; jj < n_; ++jj)
-
473 {
-
474 x = v_(jj, j);
-
475 z = v_(jj, i);
-
476 v_(jj, j) = x * c + z * ss;
-
477 v_(jj, i) = z * c - x * ss;
-
478 }
-
479
-
480 z = pythag(f, h);
-
481 s_[j] = z;
-
482
-
483 if (!utils::essentiallyEqual(z, 0.))
-
484 {
-
485 z = 1. / z;
-
486 c = f * z;
-
487 ss = h * z;
-
488 }
-
489
-
490 f = c * g + ss * y;
-
491 x = c * y - ss * g;
-
492
-
493 for (jj = 0; jj < m_; ++jj)
-
494 {
-
495 y = u_(jj, j);
-
496 z = u_(jj, i);
-
497 u_(jj, j) = y * c + z * ss;
-
498 u_(jj, i) = z * c - y * ss;
-
499 }
-
500 }
-
501 rv1[l] = 0.;
-
502 rv1[k] = f;
-
503 s_[k] = x;
-
504 }
-
505 }
-
506 }
-
507
-
508 // =============================================================================
-
509 // Description:
-
512 void reorder()
-
513 {
-
514 uint32 i = 0;
-
515 uint32 j = 0;
-
516 uint32 k = 0;
-
517 uint32 ss = 0;
-
518 uint32 inc = 1;
-
519
-
520 double sw{};
-
521 NdArray<double> su(m_, 1);
-
522 NdArray<double> sv(n_, 1);
-
523
-
524 do
-
525 {
-
526 inc *= 3;
-
527 ++inc;
-
528 } while (inc <= n_);
-
529
-
530 do
-
531 {
-
532 inc /= 3;
-
533 for (i = inc; i < n_; ++i)
-
534 {
-
535 sw = s_[i];
-
536 for (k = 0; k < m_; ++k)
-
537 {
-
538 su[k] = u_(k, i);
-
539 }
-
540
-
541 for (k = 0; k < n_; ++k)
-
542 {
-
543 sv[k] = v_(k, i);
-
544 }
-
545
-
546 j = i;
-
547 while (s_[j - inc] < sw)
-
548 {
-
549 s_[j] = s_[j - inc];
-
550
-
551 for (k = 0; k < m_; ++k)
-
552 {
-
553 u_(k, j) = u_(k, j - inc);
-
554 }
-
555
-
556 for (k = 0; k < n_; ++k)
-
557 {
-
558 v_(k, j) = v_(k, j - inc);
-
559 }
-
560
-
561 j -= inc;
-
562
-
563 if (j < inc)
-
564 {
-
565 break;
-
566 }
-
567 }
-
568
-
569 s_[j] = sw;
-
570
-
571 for (k = 0; k < m_; ++k)
-
572 {
-
573 u_(k, j) = su[k];
-
574 }
-
575
-
576 for (k = 0; k < n_; ++k)
-
577 {
-
578 v_(k, j) = sv[k];
-
579 }
-
580 }
-
581 } while (inc > 1);
-
582
-
583 for (k = 0; k < n_; ++k)
-
584 {
-
585 ss = 0;
-
586
-
587 for (i = 0; i < m_; i++)
-
588 {
-
589 if (u_(i, k) < 0.)
-
590 {
-
591 ss++;
-
592 }
-
593 }
-
594
-
595 for (j = 0; j < n_; ++j)
-
596 {
-
597 if (v_(j, k) < 0.)
-
598 {
-
599 ss++;
-
600 }
-
601 }
-
602
-
603 if (ss > (m_ + n_) / 2)
-
604 {
-
605 for (i = 0; i < m_; ++i)
-
606 {
-
607 u_(i, k) = -u_(i, k);
-
608 }
-
609
-
610 for (j = 0; j < n_; ++j)
-
611 {
-
612 v_(j, k) = -v_(j, k);
-
613 }
-
614 }
-
615 }
-
616 }
-
617
-
618 // =============================================================================
-
619 // Description:
-
627 static double pythag(double inA, double inB) noexcept
-
628 {
-
629 const double absa = std::abs(inA);
-
630 const double absb = std::abs(inB);
-
631 return (absa > absb
-
632 ? absa * std::sqrt(1. + utils::sqr(absb / absa))
-
633 : (utils::essentiallyEqual(absb, 0.) ? 0. : absb * std::sqrt(1. + utils::sqr(absa / absb))));
-
634 }
-
635
-
636 private:
-
637 // ===============================Attributes====================================
-
638 const uint32 m_{};
-
639 const uint32 n_{};
-
640 NdArray<double> u_{};
-
641 NdArray<double> v_{};
-
642 NdArray<double> s_{};
-
643 double eps_{};
-
644 double tsh_{};
-
645 };
-
-
646} // namespace nc::linalg
- -
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition Error.hpp:37
- - -
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition NdArrayCore.hpp:139
-
const_reference front() const noexcept
Definition NdArrayCore.hpp:2936
-
Definition SVDClass.hpp:47
-
NdArray< double > solve(const NdArray< double > &inInput, double inThresh=-1.)
Definition SVDClass.hpp:110
-
const NdArray< double > & s() noexcept
Definition SVDClass.hpp:96
-
const NdArray< double > & v() noexcept
Definition SVDClass.hpp:85
-
SVD(const NdArray< double > &inMatrix)
Definition SVDClass.hpp:55
-
const NdArray< double > & u() noexcept
Definition SVDClass.hpp:74
- -
constexpr auto j
Definition Core/Constants.hpp:42
-
constexpr double c
speed of light
Definition Core/Constants.hpp:36
-
Definition cholesky.hpp:41
-
dtype f(GeneratorType &generator, dtype inDofN, dtype inDofD)
Definition f.hpp:56
-
bool essentiallyEqual(dtype inValue1, dtype inValue2) noexcept
Definition essentiallyEqual.hpp:49
-
constexpr dtype sqr(dtype inValue) noexcept
Definition sqr.hpp:42
-
NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
Definition arange.hpp:59
-
auto sqrt(dtype inValue) noexcept
Definition sqrt.hpp:48
-
Shape shape(const NdArray< dtype > &inArray) noexcept
Definition Functions/shape.hpp:42
-
std::uint32_t uint32
Definition Types.hpp:40
-
-
- - - - diff --git a/docs/doxygen/html/_secant_8hpp.html b/docs/doxygen/html/_secant_8hpp.html index 6ec0bf3a2..89af152bf 100644 --- a/docs/doxygen/html/_secant_8hpp.html +++ b/docs/doxygen/html/_secant_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_secant_8hpp_source.html b/docs/doxygen/html/_secant_8hpp_source.html index e953062a6..ec89a6daf 100644 --- a/docs/doxygen/html/_secant_8hpp_source.html +++ b/docs/doxygen/html/_secant_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_slice_8hpp.html b/docs/doxygen/html/_slice_8hpp.html index c7064c505..efbe58923 100644 --- a/docs/doxygen/html/_slice_8hpp.html +++ b/docs/doxygen/html/_slice_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_slice_8hpp_source.html b/docs/doxygen/html/_slice_8hpp_source.html index 4f525f067..60b1a4d94 100644 --- a/docs/doxygen/html/_slice_8hpp_source.html +++ b/docs/doxygen/html/_slice_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_special_2bernoulli_8hpp.html b/docs/doxygen/html/_special_2bernoulli_8hpp.html index 782867d66..f490b68d1 100644 --- a/docs/doxygen/html/_special_2bernoulli_8hpp.html +++ b/docs/doxygen/html/_special_2bernoulli_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_special_2bernoulli_8hpp_source.html b/docs/doxygen/html/_special_2bernoulli_8hpp_source.html index be427f1e4..86f35315b 100644 --- a/docs/doxygen/html/_special_2bernoulli_8hpp_source.html +++ b/docs/doxygen/html/_special_2bernoulli_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_special_2beta_8hpp.html b/docs/doxygen/html/_special_2beta_8hpp.html index 77a096f7e..a7419541a 100644 --- a/docs/doxygen/html/_special_2beta_8hpp.html +++ b/docs/doxygen/html/_special_2beta_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_special_2beta_8hpp_source.html b/docs/doxygen/html/_special_2beta_8hpp_source.html index ff80d38de..6bf11517b 100644 --- a/docs/doxygen/html/_special_2beta_8hpp_source.html +++ b/docs/doxygen/html/_special_2beta_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_special_2gamma_8hpp.html b/docs/doxygen/html/_special_2gamma_8hpp.html index e6fa05760..2ed3ab30b 100644 --- a/docs/doxygen/html/_special_2gamma_8hpp.html +++ b/docs/doxygen/html/_special_2gamma_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_special_2gamma_8hpp_source.html b/docs/doxygen/html/_special_2gamma_8hpp_source.html index 0453090c6..1f1ca71a5 100644 --- a/docs/doxygen/html/_special_2gamma_8hpp_source.html +++ b/docs/doxygen/html/_special_2gamma_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_special_8hpp.html b/docs/doxygen/html/_special_8hpp.html index fd7764bbb..10fb7730f 100644 --- a/docs/doxygen/html/_special_8hpp.html +++ b/docs/doxygen/html/_special_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_special_8hpp_source.html b/docs/doxygen/html/_special_8hpp_source.html index 8dde53b13..b3f8f7497 100644 --- a/docs/doxygen/html/_special_8hpp_source.html +++ b/docs/doxygen/html/_special_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_static_asserts_8hpp.html b/docs/doxygen/html/_static_asserts_8hpp.html index 4ceb11418..50b74d50d 100644 --- a/docs/doxygen/html/_static_asserts_8hpp.html +++ b/docs/doxygen/html/_static_asserts_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_static_asserts_8hpp_source.html b/docs/doxygen/html/_static_asserts_8hpp_source.html index 6894eedc5..5b881eeb6 100644 --- a/docs/doxygen/html/_static_asserts_8hpp_source.html +++ b/docs/doxygen/html/_static_asserts_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_std_complex_operators_8hpp.html b/docs/doxygen/html/_std_complex_operators_8hpp.html index 6d8bc11a0..6f6269c15 100644 --- a/docs/doxygen/html/_std_complex_operators_8hpp.html +++ b/docs/doxygen/html/_std_complex_operators_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_std_complex_operators_8hpp_source.html b/docs/doxygen/html/_std_complex_operators_8hpp_source.html index e081155a9..e6cc51927 100644 --- a/docs/doxygen/html/_std_complex_operators_8hpp_source.html +++ b/docs/doxygen/html/_std_complex_operators_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_stl_algorithms_8hpp.html b/docs/doxygen/html/_stl_algorithms_8hpp.html index 2cd95b635..074500f5c 100644 --- a/docs/doxygen/html/_stl_algorithms_8hpp.html +++ b/docs/doxygen/html/_stl_algorithms_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_stl_algorithms_8hpp_source.html b/docs/doxygen/html/_stl_algorithms_8hpp_source.html index 9a703aa40..1f4ad7e75 100644 --- a/docs/doxygen/html/_stl_algorithms_8hpp_source.html +++ b/docs/doxygen/html/_stl_algorithms_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_timer_8hpp.html b/docs/doxygen/html/_timer_8hpp.html index ea1d1065e..4a7278222 100644 --- a/docs/doxygen/html/_timer_8hpp.html +++ b/docs/doxygen/html/_timer_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_timer_8hpp_source.html b/docs/doxygen/html/_timer_8hpp_source.html index 11cf2450c..694e6c7bb 100644 --- a/docs/doxygen/html/_timer_8hpp_source.html +++ b/docs/doxygen/html/_timer_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_transforms_8hpp.html b/docs/doxygen/html/_transforms_8hpp.html index 7ce00b719..447afc6f6 100644 --- a/docs/doxygen/html/_transforms_8hpp.html +++ b/docs/doxygen/html/_transforms_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_transforms_8hpp_source.html b/docs/doxygen/html/_transforms_8hpp_source.html index 1cd65dc02..b450f60eb 100644 --- a/docs/doxygen/html/_transforms_8hpp_source.html +++ b/docs/doxygen/html/_transforms_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_type_traits_8hpp.html b/docs/doxygen/html/_type_traits_8hpp.html index 8851b834b..81a6d7e90 100644 --- a/docs/doxygen/html/_type_traits_8hpp.html +++ b/docs/doxygen/html/_type_traits_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_type_traits_8hpp_source.html b/docs/doxygen/html/_type_traits_8hpp_source.html index 2931ca441..b600a71ef 100644 --- a/docs/doxygen/html/_type_traits_8hpp_source.html +++ b/docs/doxygen/html/_type_traits_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_types_8hpp.html b/docs/doxygen/html/_types_8hpp.html index 53fe0ace7..94239c5d3 100644 --- a/docs/doxygen/html/_types_8hpp.html +++ b/docs/doxygen/html/_types_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_types_8hpp_source.html b/docs/doxygen/html/_types_8hpp_source.html index e9d0fa19a..f38021ffc 100644 --- a/docs/doxygen/html/_types_8hpp_source.html +++ b/docs/doxygen/html/_types_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_utils_2cube_8hpp.html b/docs/doxygen/html/_utils_2cube_8hpp.html index c8f25d54b..f536a43cf 100644 --- a/docs/doxygen/html/_utils_2cube_8hpp.html +++ b/docs/doxygen/html/_utils_2cube_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_utils_2cube_8hpp_source.html b/docs/doxygen/html/_utils_2cube_8hpp_source.html index a737d4198..b50cfdefd 100644 --- a/docs/doxygen/html/_utils_2cube_8hpp_source.html +++ b/docs/doxygen/html/_utils_2cube_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_utils_2interp_8hpp.html b/docs/doxygen/html/_utils_2interp_8hpp.html index e22c4dd14..63e221ff3 100644 --- a/docs/doxygen/html/_utils_2interp_8hpp.html +++ b/docs/doxygen/html/_utils_2interp_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_utils_2interp_8hpp_source.html b/docs/doxygen/html/_utils_2interp_8hpp_source.html index 47cc9621b..6de6add41 100644 --- a/docs/doxygen/html/_utils_2interp_8hpp_source.html +++ b/docs/doxygen/html/_utils_2interp_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_utils_2power_8hpp.html b/docs/doxygen/html/_utils_2power_8hpp.html index ee3eb844f..54103fed6 100644 --- a/docs/doxygen/html/_utils_2power_8hpp.html +++ b/docs/doxygen/html/_utils_2power_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_utils_2power_8hpp_source.html b/docs/doxygen/html/_utils_2power_8hpp_source.html index 53f09489b..4058016b0 100644 --- a/docs/doxygen/html/_utils_2power_8hpp_source.html +++ b/docs/doxygen/html/_utils_2power_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_utils_2powerf_8hpp.html b/docs/doxygen/html/_utils_2powerf_8hpp.html index 9d653cb57..8268251bf 100644 --- a/docs/doxygen/html/_utils_2powerf_8hpp.html +++ b/docs/doxygen/html/_utils_2powerf_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_utils_2powerf_8hpp_source.html b/docs/doxygen/html/_utils_2powerf_8hpp_source.html index 6b4e709f2..07f9ebbab 100644 --- a/docs/doxygen/html/_utils_2powerf_8hpp_source.html +++ b/docs/doxygen/html/_utils_2powerf_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_utils_8hpp.html b/docs/doxygen/html/_utils_8hpp.html index 9844abaf7..3db0a5111 100644 --- a/docs/doxygen/html/_utils_8hpp.html +++ b/docs/doxygen/html/_utils_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_utils_8hpp_source.html b/docs/doxygen/html/_utils_8hpp_source.html index de80484dd..fce78294a 100644 --- a/docs/doxygen/html/_utils_8hpp_source.html +++ b/docs/doxygen/html/_utils_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_vec2_8hpp.html b/docs/doxygen/html/_vec2_8hpp.html index 5c418e449..899cd54c3 100644 --- a/docs/doxygen/html/_vec2_8hpp.html +++ b/docs/doxygen/html/_vec2_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_vec2_8hpp_source.html b/docs/doxygen/html/_vec2_8hpp_source.html index 5d819b28a..365376de8 100644 --- a/docs/doxygen/html/_vec2_8hpp_source.html +++ b/docs/doxygen/html/_vec2_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_vec3_8hpp.html b/docs/doxygen/html/_vec3_8hpp.html index 823b62081..ee1f69082 100644 --- a/docs/doxygen/html/_vec3_8hpp.html +++ b/docs/doxygen/html/_vec3_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_vec3_8hpp_source.html b/docs/doxygen/html/_vec3_8hpp_source.html index 40bbd4a94..8448eae3e 100644 --- a/docs/doxygen/html/_vec3_8hpp_source.html +++ b/docs/doxygen/html/_vec3_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_vector_8hpp.html b/docs/doxygen/html/_vector_8hpp.html index bf00c6ed5..b2bc41602 100644 --- a/docs/doxygen/html/_vector_8hpp.html +++ b/docs/doxygen/html/_vector_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_vector_8hpp_source.html b/docs/doxygen/html/_vector_8hpp_source.html index 63c2c9ebe..c4889daf2 100644 --- a/docs/doxygen/html/_vector_8hpp_source.html +++ b/docs/doxygen/html/_vector_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/_version_8hpp.html b/docs/doxygen/html/_version_8hpp.html index 5f984e0c3..5c8ee54ce 100644 --- a/docs/doxygen/html/_version_8hpp.html +++ b/docs/doxygen/html/_version_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -130,7 +130,7 @@ - +

Variables

constexpr char nc::VERSION [] = "2.15.0"
constexpr char nc::VERSION [] = "2.16.0"
 Current NumCpp version number.
 
diff --git a/docs/doxygen/html/_version_8hpp_source.html b/docs/doxygen/html/_version_8hpp_source.html index 55c05a3b0..508354775 100644 --- a/docs/doxygen/html/_version_8hpp_source.html +++ b/docs/doxygen/html/_version_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -128,7 +128,7 @@
30namespace nc
31{
32 // NOLINTNEXTLINE(cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays)
-
33 constexpr char VERSION[] = "2.15.0";
+
33 constexpr char VERSION[] = "2.16.0";
34} // namespace nc
Definition Cartesian.hpp:40
constexpr char VERSION[]
Current NumCpp version number.
Definition Version.hpp:33
diff --git a/docs/doxygen/html/abs_8hpp.html b/docs/doxygen/html/abs_8hpp.html index 25481fb5c..97957665c 100644 --- a/docs/doxygen/html/abs_8hpp.html +++ b/docs/doxygen/html/abs_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/abs_8hpp_source.html b/docs/doxygen/html/abs_8hpp_source.html index 38698cde4..22ca6ae2b 100644 --- a/docs/doxygen/html/abs_8hpp_source.html +++ b/docs/doxygen/html/abs_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/add_8hpp.html b/docs/doxygen/html/add_8hpp.html index 84b556ff0..2026f61e6 100644 --- a/docs/doxygen/html/add_8hpp.html +++ b/docs/doxygen/html/add_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/add_8hpp_source.html b/docs/doxygen/html/add_8hpp_source.html index 4cb91a343..803cb34f9 100644 --- a/docs/doxygen/html/add_8hpp_source.html +++ b/docs/doxygen/html/add_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/add_boundary1d_8hpp.html b/docs/doxygen/html/add_boundary1d_8hpp.html index 5bfc8dc1b..c2b3945f9 100644 --- a/docs/doxygen/html/add_boundary1d_8hpp.html +++ b/docs/doxygen/html/add_boundary1d_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/add_boundary1d_8hpp_source.html b/docs/doxygen/html/add_boundary1d_8hpp_source.html index 5fb003536..50b722e7b 100644 --- a/docs/doxygen/html/add_boundary1d_8hpp_source.html +++ b/docs/doxygen/html/add_boundary1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/add_boundary2d_8hpp.html b/docs/doxygen/html/add_boundary2d_8hpp.html index ec87a3d69..0f86bcb78 100644 --- a/docs/doxygen/html/add_boundary2d_8hpp.html +++ b/docs/doxygen/html/add_boundary2d_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/add_boundary2d_8hpp_source.html b/docs/doxygen/html/add_boundary2d_8hpp_source.html index 72e980991..663190ac7 100644 --- a/docs/doxygen/html/add_boundary2d_8hpp_source.html +++ b/docs/doxygen/html/add_boundary2d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/airy__ai_8hpp.html b/docs/doxygen/html/airy__ai_8hpp.html index a73ad024d..a30a6bba4 100644 --- a/docs/doxygen/html/airy__ai_8hpp.html +++ b/docs/doxygen/html/airy__ai_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/airy__ai_8hpp_source.html b/docs/doxygen/html/airy__ai_8hpp_source.html index e7e5858ad..884ee3f2e 100644 --- a/docs/doxygen/html/airy__ai_8hpp_source.html +++ b/docs/doxygen/html/airy__ai_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/airy__ai__prime_8hpp.html b/docs/doxygen/html/airy__ai__prime_8hpp.html index 300ce8dbe..774c8d579 100644 --- a/docs/doxygen/html/airy__ai__prime_8hpp.html +++ b/docs/doxygen/html/airy__ai__prime_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/airy__ai__prime_8hpp_source.html b/docs/doxygen/html/airy__ai__prime_8hpp_source.html index aa5f4d705..a09c7790f 100644 --- a/docs/doxygen/html/airy__ai__prime_8hpp_source.html +++ b/docs/doxygen/html/airy__ai__prime_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/airy__bi_8hpp.html b/docs/doxygen/html/airy__bi_8hpp.html index ebe66fedc..24bafe964 100644 --- a/docs/doxygen/html/airy__bi_8hpp.html +++ b/docs/doxygen/html/airy__bi_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/airy__bi_8hpp_source.html b/docs/doxygen/html/airy__bi_8hpp_source.html index 6fe770d78..72e4871fe 100644 --- a/docs/doxygen/html/airy__bi_8hpp_source.html +++ b/docs/doxygen/html/airy__bi_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/airy__bi__prime_8hpp.html b/docs/doxygen/html/airy__bi__prime_8hpp.html index bad3e318f..677ae2615 100644 --- a/docs/doxygen/html/airy__bi__prime_8hpp.html +++ b/docs/doxygen/html/airy__bi__prime_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/airy__bi__prime_8hpp_source.html b/docs/doxygen/html/airy__bi__prime_8hpp_source.html index b53d3adf6..622d58e78 100644 --- a/docs/doxygen/html/airy__bi__prime_8hpp_source.html +++ b/docs/doxygen/html/airy__bi__prime_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/alen_8hpp.html b/docs/doxygen/html/alen_8hpp.html index 62e73614e..8e7e69e8b 100644 --- a/docs/doxygen/html/alen_8hpp.html +++ b/docs/doxygen/html/alen_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/alen_8hpp_source.html b/docs/doxygen/html/alen_8hpp_source.html index 4c558d628..aac69bf60 100644 --- a/docs/doxygen/html/alen_8hpp_source.html +++ b/docs/doxygen/html/alen_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/all_8hpp.html b/docs/doxygen/html/all_8hpp.html index de98398bd..1db8d830e 100644 --- a/docs/doxygen/html/all_8hpp.html +++ b/docs/doxygen/html/all_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/all_8hpp_source.html b/docs/doxygen/html/all_8hpp_source.html index 762cf0913..dcc55379e 100644 --- a/docs/doxygen/html/all_8hpp_source.html +++ b/docs/doxygen/html/all_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/allclose_8hpp.html b/docs/doxygen/html/allclose_8hpp.html index 8e3c23c15..467b48b9d 100644 --- a/docs/doxygen/html/allclose_8hpp.html +++ b/docs/doxygen/html/allclose_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/allclose_8hpp_source.html b/docs/doxygen/html/allclose_8hpp_source.html index 4000d494e..3d1be80b0 100644 --- a/docs/doxygen/html/allclose_8hpp_source.html +++ b/docs/doxygen/html/allclose_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/amax_8hpp.html b/docs/doxygen/html/amax_8hpp.html index 6d2fd2c1f..543b03541 100644 --- a/docs/doxygen/html/amax_8hpp.html +++ b/docs/doxygen/html/amax_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/amax_8hpp_source.html b/docs/doxygen/html/amax_8hpp_source.html index 39bf96dca..bdf9f5b58 100644 --- a/docs/doxygen/html/amax_8hpp_source.html +++ b/docs/doxygen/html/amax_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/amin_8hpp.html b/docs/doxygen/html/amin_8hpp.html index 1e850cdb0..beb6ea801 100644 --- a/docs/doxygen/html/amin_8hpp.html +++ b/docs/doxygen/html/amin_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/amin_8hpp_source.html b/docs/doxygen/html/amin_8hpp_source.html index 1e705a4af..ad36ecd89 100644 --- a/docs/doxygen/html/amin_8hpp_source.html +++ b/docs/doxygen/html/amin_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/angle_8hpp.html b/docs/doxygen/html/angle_8hpp.html index 9183c4bf5..1d56730bc 100644 --- a/docs/doxygen/html/angle_8hpp.html +++ b/docs/doxygen/html/angle_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/angle_8hpp_source.html b/docs/doxygen/html/angle_8hpp_source.html index 0aaab7e9e..487252572 100644 --- a/docs/doxygen/html/angle_8hpp_source.html +++ b/docs/doxygen/html/angle_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/annotated.html b/docs/doxygen/html/annotated.html index 93199ee56..f1871edf2 100644 --- a/docs/doxygen/html/annotated.html +++ b/docs/doxygen/html/annotated.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -142,7 +142,7 @@  Nintegrate  CLegendrePolynomial  Nlinalg - CSVD + CSVDPerforms the singular value decomposition of a general matrix  Nlogger  NdetailRegister a global logger  Ntype_traits diff --git a/docs/doxygen/html/any_8hpp.html b/docs/doxygen/html/any_8hpp.html index a8587c6d0..935aaa321 100644 --- a/docs/doxygen/html/any_8hpp.html +++ b/docs/doxygen/html/any_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/any_8hpp_source.html b/docs/doxygen/html/any_8hpp_source.html index 44cc7b9db..c8ad8f25a 100644 --- a/docs/doxygen/html/any_8hpp_source.html +++ b/docs/doxygen/html/any_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/append_8hpp.html b/docs/doxygen/html/append_8hpp.html index b4594b8ef..e6a855141 100644 --- a/docs/doxygen/html/append_8hpp.html +++ b/docs/doxygen/html/append_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/append_8hpp_source.html b/docs/doxygen/html/append_8hpp_source.html index 454ac4844..e23802cc9 100644 --- a/docs/doxygen/html/append_8hpp_source.html +++ b/docs/doxygen/html/append_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/apply_function_8hpp.html b/docs/doxygen/html/apply_function_8hpp.html index e14725740..dc8ac27ca 100644 --- a/docs/doxygen/html/apply_function_8hpp.html +++ b/docs/doxygen/html/apply_function_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/apply_function_8hpp_source.html b/docs/doxygen/html/apply_function_8hpp_source.html index 4e225f9cb..5ebbfa90b 100644 --- a/docs/doxygen/html/apply_function_8hpp_source.html +++ b/docs/doxygen/html/apply_function_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/apply_poly1d_8hpp.html b/docs/doxygen/html/apply_poly1d_8hpp.html index 3282b1ac0..2e780484c 100644 --- a/docs/doxygen/html/apply_poly1d_8hpp.html +++ b/docs/doxygen/html/apply_poly1d_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/apply_poly1d_8hpp_source.html b/docs/doxygen/html/apply_poly1d_8hpp_source.html index 11777f315..1f331f7c9 100644 --- a/docs/doxygen/html/apply_poly1d_8hpp_source.html +++ b/docs/doxygen/html/apply_poly1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/apply_threshold_8hpp.html b/docs/doxygen/html/apply_threshold_8hpp.html index 1840d4fc4..d75289eba 100644 --- a/docs/doxygen/html/apply_threshold_8hpp.html +++ b/docs/doxygen/html/apply_threshold_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/apply_threshold_8hpp_source.html b/docs/doxygen/html/apply_threshold_8hpp_source.html index 684d77ff0..7d4878bff 100644 --- a/docs/doxygen/html/apply_threshold_8hpp_source.html +++ b/docs/doxygen/html/apply_threshold_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arange_8hpp.html b/docs/doxygen/html/arange_8hpp.html index f1c8096e2..e2d327d73 100644 --- a/docs/doxygen/html/arange_8hpp.html +++ b/docs/doxygen/html/arange_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arange_8hpp_source.html b/docs/doxygen/html/arange_8hpp_source.html index e5105541d..9ab94b4f2 100644 --- a/docs/doxygen/html/arange_8hpp_source.html +++ b/docs/doxygen/html/arange_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arccos_8hpp.html b/docs/doxygen/html/arccos_8hpp.html index 11535f17a..8f036b363 100644 --- a/docs/doxygen/html/arccos_8hpp.html +++ b/docs/doxygen/html/arccos_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arccos_8hpp_source.html b/docs/doxygen/html/arccos_8hpp_source.html index c1b31d455..1c9859c39 100644 --- a/docs/doxygen/html/arccos_8hpp_source.html +++ b/docs/doxygen/html/arccos_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arccosh_8hpp.html b/docs/doxygen/html/arccosh_8hpp.html index 455e23ef3..42a444174 100644 --- a/docs/doxygen/html/arccosh_8hpp.html +++ b/docs/doxygen/html/arccosh_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arccosh_8hpp_source.html b/docs/doxygen/html/arccosh_8hpp_source.html index 6cc490b78..6b1f51be4 100644 --- a/docs/doxygen/html/arccosh_8hpp_source.html +++ b/docs/doxygen/html/arccosh_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arcsin_8hpp.html b/docs/doxygen/html/arcsin_8hpp.html index b497922e4..a0bba7215 100644 --- a/docs/doxygen/html/arcsin_8hpp.html +++ b/docs/doxygen/html/arcsin_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arcsin_8hpp_source.html b/docs/doxygen/html/arcsin_8hpp_source.html index 9feb9844b..79497c7ef 100644 --- a/docs/doxygen/html/arcsin_8hpp_source.html +++ b/docs/doxygen/html/arcsin_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arcsinh_8hpp.html b/docs/doxygen/html/arcsinh_8hpp.html index a078c8c8b..609ca7b18 100644 --- a/docs/doxygen/html/arcsinh_8hpp.html +++ b/docs/doxygen/html/arcsinh_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arcsinh_8hpp_source.html b/docs/doxygen/html/arcsinh_8hpp_source.html index 1d9973c18..6eabe446b 100644 --- a/docs/doxygen/html/arcsinh_8hpp_source.html +++ b/docs/doxygen/html/arcsinh_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arctan2_8hpp.html b/docs/doxygen/html/arctan2_8hpp.html index 26307056e..c7f02d5bb 100644 --- a/docs/doxygen/html/arctan2_8hpp.html +++ b/docs/doxygen/html/arctan2_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arctan2_8hpp_source.html b/docs/doxygen/html/arctan2_8hpp_source.html index b3ded8f02..20e3376d4 100644 --- a/docs/doxygen/html/arctan2_8hpp_source.html +++ b/docs/doxygen/html/arctan2_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arctan_8hpp.html b/docs/doxygen/html/arctan_8hpp.html index 02fa24344..db5c5e7bd 100644 --- a/docs/doxygen/html/arctan_8hpp.html +++ b/docs/doxygen/html/arctan_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arctan_8hpp_source.html b/docs/doxygen/html/arctan_8hpp_source.html index 8affb3b3b..e6a55f44b 100644 --- a/docs/doxygen/html/arctan_8hpp_source.html +++ b/docs/doxygen/html/arctan_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arctanh_8hpp.html b/docs/doxygen/html/arctanh_8hpp.html index 95800a04d..e8a11eea6 100644 --- a/docs/doxygen/html/arctanh_8hpp.html +++ b/docs/doxygen/html/arctanh_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/arctanh_8hpp_source.html b/docs/doxygen/html/arctanh_8hpp_source.html index 30cfd1c51..1d0014b37 100644 --- a/docs/doxygen/html/arctanh_8hpp_source.html +++ b/docs/doxygen/html/arctanh_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/argmax_8hpp.html b/docs/doxygen/html/argmax_8hpp.html index 382c62c9c..789218b9f 100644 --- a/docs/doxygen/html/argmax_8hpp.html +++ b/docs/doxygen/html/argmax_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/argmax_8hpp_source.html b/docs/doxygen/html/argmax_8hpp_source.html index 10c8bfd80..7fbced513 100644 --- a/docs/doxygen/html/argmax_8hpp_source.html +++ b/docs/doxygen/html/argmax_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/argmin_8hpp.html b/docs/doxygen/html/argmin_8hpp.html index 5812b3d23..b81e25c48 100644 --- a/docs/doxygen/html/argmin_8hpp.html +++ b/docs/doxygen/html/argmin_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/argmin_8hpp_source.html b/docs/doxygen/html/argmin_8hpp_source.html index 2fb279718..394023673 100644 --- a/docs/doxygen/html/argmin_8hpp_source.html +++ b/docs/doxygen/html/argmin_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/argpartition_8hpp.html b/docs/doxygen/html/argpartition_8hpp.html index c711c0707..dfcd241a2 100644 --- a/docs/doxygen/html/argpartition_8hpp.html +++ b/docs/doxygen/html/argpartition_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/argpartition_8hpp_source.html b/docs/doxygen/html/argpartition_8hpp_source.html index 8c0d00854..92c7e9618 100644 --- a/docs/doxygen/html/argpartition_8hpp_source.html +++ b/docs/doxygen/html/argpartition_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/argsort_8hpp.html b/docs/doxygen/html/argsort_8hpp.html index cf392cc15..15f3e8adf 100644 --- a/docs/doxygen/html/argsort_8hpp.html +++ b/docs/doxygen/html/argsort_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/argsort_8hpp_source.html b/docs/doxygen/html/argsort_8hpp_source.html index dda02e00f..6ba824661 100644 --- a/docs/doxygen/html/argsort_8hpp_source.html +++ b/docs/doxygen/html/argsort_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/argwhere_8hpp.html b/docs/doxygen/html/argwhere_8hpp.html index ecaa1d037..cfa6725bc 100644 --- a/docs/doxygen/html/argwhere_8hpp.html +++ b/docs/doxygen/html/argwhere_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/argwhere_8hpp_source.html b/docs/doxygen/html/argwhere_8hpp_source.html index c28631dbc..93c292f91 100644 --- a/docs/doxygen/html/argwhere_8hpp_source.html +++ b/docs/doxygen/html/argwhere_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/around_8hpp.html b/docs/doxygen/html/around_8hpp.html index 4d35f1060..0a1c1fa7d 100644 --- a/docs/doxygen/html/around_8hpp.html +++ b/docs/doxygen/html/around_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/around_8hpp_source.html b/docs/doxygen/html/around_8hpp_source.html index 47ae8bdaf..1c34d8699 100644 --- a/docs/doxygen/html/around_8hpp_source.html +++ b/docs/doxygen/html/around_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/array__equal_8hpp.html b/docs/doxygen/html/array__equal_8hpp.html index 10b13c648..3bf10cdc7 100644 --- a/docs/doxygen/html/array__equal_8hpp.html +++ b/docs/doxygen/html/array__equal_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/array__equal_8hpp_source.html b/docs/doxygen/html/array__equal_8hpp_source.html index 95cb6c16f..21da5b409 100644 --- a/docs/doxygen/html/array__equal_8hpp_source.html +++ b/docs/doxygen/html/array__equal_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/array__equiv_8hpp.html b/docs/doxygen/html/array__equiv_8hpp.html index dd92aab22..fef0775cb 100644 --- a/docs/doxygen/html/array__equiv_8hpp.html +++ b/docs/doxygen/html/array__equiv_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/array__equiv_8hpp_source.html b/docs/doxygen/html/array__equiv_8hpp_source.html index c7569efee..ac6d45433 100644 --- a/docs/doxygen/html/array__equiv_8hpp_source.html +++ b/docs/doxygen/html/array__equiv_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/asarray_8hpp.html b/docs/doxygen/html/asarray_8hpp.html index 7eadd6cb4..eeeefab98 100644 --- a/docs/doxygen/html/asarray_8hpp.html +++ b/docs/doxygen/html/asarray_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/asarray_8hpp_source.html b/docs/doxygen/html/asarray_8hpp_source.html index 007cda609..e39b51c2b 100644 --- a/docs/doxygen/html/asarray_8hpp_source.html +++ b/docs/doxygen/html/asarray_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/astype_8hpp.html b/docs/doxygen/html/astype_8hpp.html index 7c90d75e3..6f4a4365b 100644 --- a/docs/doxygen/html/astype_8hpp.html +++ b/docs/doxygen/html/astype_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/astype_8hpp_source.html b/docs/doxygen/html/astype_8hpp_source.html index 6a8154555..0bfef5d1e 100644 --- a/docs/doxygen/html/astype_8hpp_source.html +++ b/docs/doxygen/html/astype_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/average_8hpp.html b/docs/doxygen/html/average_8hpp.html index a55ef27b4..115a4b76f 100644 --- a/docs/doxygen/html/average_8hpp.html +++ b/docs/doxygen/html/average_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/average_8hpp_source.html b/docs/doxygen/html/average_8hpp_source.html index 7653e86bb..38471aba1 100644 --- a/docs/doxygen/html/average_8hpp_source.html +++ b/docs/doxygen/html/average_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bartlett_8hpp.html b/docs/doxygen/html/bartlett_8hpp.html index 2385c0df2..aeb535f7b 100644 --- a/docs/doxygen/html/bartlett_8hpp.html +++ b/docs/doxygen/html/bartlett_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bartlett_8hpp_source.html b/docs/doxygen/html/bartlett_8hpp_source.html index 9765cb844..7c1372a3f 100644 --- a/docs/doxygen/html/bartlett_8hpp_source.html +++ b/docs/doxygen/html/bartlett_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__in_8hpp.html b/docs/doxygen/html/bessel__in_8hpp.html index 7058bff18..7188f8146 100644 --- a/docs/doxygen/html/bessel__in_8hpp.html +++ b/docs/doxygen/html/bessel__in_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__in_8hpp_source.html b/docs/doxygen/html/bessel__in_8hpp_source.html index 27fcaa8fd..8d834e646 100644 --- a/docs/doxygen/html/bessel__in_8hpp_source.html +++ b/docs/doxygen/html/bessel__in_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__in__prime_8hpp.html b/docs/doxygen/html/bessel__in__prime_8hpp.html index 65a95f7a5..85bc9425b 100644 --- a/docs/doxygen/html/bessel__in__prime_8hpp.html +++ b/docs/doxygen/html/bessel__in__prime_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__in__prime_8hpp_source.html b/docs/doxygen/html/bessel__in__prime_8hpp_source.html index b8833f57d..e7cf46845 100644 --- a/docs/doxygen/html/bessel__in__prime_8hpp_source.html +++ b/docs/doxygen/html/bessel__in__prime_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__jn_8hpp.html b/docs/doxygen/html/bessel__jn_8hpp.html index af57338f3..76adfd87e 100644 --- a/docs/doxygen/html/bessel__jn_8hpp.html +++ b/docs/doxygen/html/bessel__jn_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__jn_8hpp_source.html b/docs/doxygen/html/bessel__jn_8hpp_source.html index 99b39c269..4521cc1e5 100644 --- a/docs/doxygen/html/bessel__jn_8hpp_source.html +++ b/docs/doxygen/html/bessel__jn_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__jn__prime_8hpp.html b/docs/doxygen/html/bessel__jn__prime_8hpp.html index ef102adc2..640dbfb4e 100644 --- a/docs/doxygen/html/bessel__jn__prime_8hpp.html +++ b/docs/doxygen/html/bessel__jn__prime_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__jn__prime_8hpp_source.html b/docs/doxygen/html/bessel__jn__prime_8hpp_source.html index 092a64b43..602aaa316 100644 --- a/docs/doxygen/html/bessel__jn__prime_8hpp_source.html +++ b/docs/doxygen/html/bessel__jn__prime_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__kn_8hpp.html b/docs/doxygen/html/bessel__kn_8hpp.html index 26872bf23..c486ee194 100644 --- a/docs/doxygen/html/bessel__kn_8hpp.html +++ b/docs/doxygen/html/bessel__kn_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__kn_8hpp_source.html b/docs/doxygen/html/bessel__kn_8hpp_source.html index 5d4dbceaa..abd1bb1fa 100644 --- a/docs/doxygen/html/bessel__kn_8hpp_source.html +++ b/docs/doxygen/html/bessel__kn_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__kn__prime_8hpp.html b/docs/doxygen/html/bessel__kn__prime_8hpp.html index 4dd4f9b22..420c1c6a0 100644 --- a/docs/doxygen/html/bessel__kn__prime_8hpp.html +++ b/docs/doxygen/html/bessel__kn__prime_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__kn__prime_8hpp_source.html b/docs/doxygen/html/bessel__kn__prime_8hpp_source.html index 9d4e60fc7..d448f427f 100644 --- a/docs/doxygen/html/bessel__kn__prime_8hpp_source.html +++ b/docs/doxygen/html/bessel__kn__prime_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__yn_8hpp.html b/docs/doxygen/html/bessel__yn_8hpp.html index 0ed744c6b..09d8629ba 100644 --- a/docs/doxygen/html/bessel__yn_8hpp.html +++ b/docs/doxygen/html/bessel__yn_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__yn_8hpp_source.html b/docs/doxygen/html/bessel__yn_8hpp_source.html index 5f93d5c33..3b80ad993 100644 --- a/docs/doxygen/html/bessel__yn_8hpp_source.html +++ b/docs/doxygen/html/bessel__yn_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__yn__prime_8hpp.html b/docs/doxygen/html/bessel__yn__prime_8hpp.html index bab6f51f9..d7da8182a 100644 --- a/docs/doxygen/html/bessel__yn__prime_8hpp.html +++ b/docs/doxygen/html/bessel__yn__prime_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bessel__yn__prime_8hpp_source.html b/docs/doxygen/html/bessel__yn__prime_8hpp_source.html index 6e9740c6b..44d62de08 100644 --- a/docs/doxygen/html/bessel__yn__prime_8hpp_source.html +++ b/docs/doxygen/html/bessel__yn__prime_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/binary_repr_8hpp.html b/docs/doxygen/html/binary_repr_8hpp.html index 6565589a9..34af44554 100644 --- a/docs/doxygen/html/binary_repr_8hpp.html +++ b/docs/doxygen/html/binary_repr_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/binary_repr_8hpp_source.html b/docs/doxygen/html/binary_repr_8hpp_source.html index a9701f45c..e35864cdf 100644 --- a/docs/doxygen/html/binary_repr_8hpp_source.html +++ b/docs/doxygen/html/binary_repr_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bincount_8hpp.html b/docs/doxygen/html/bincount_8hpp.html index fbf57df99..5e9fc5fd3 100644 --- a/docs/doxygen/html/bincount_8hpp.html +++ b/docs/doxygen/html/bincount_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bincount_8hpp_source.html b/docs/doxygen/html/bincount_8hpp_source.html index 0241c45a1..7104efe72 100644 --- a/docs/doxygen/html/bincount_8hpp_source.html +++ b/docs/doxygen/html/bincount_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/binomial_8hpp.html b/docs/doxygen/html/binomial_8hpp.html index f931da8be..934eab84b 100644 --- a/docs/doxygen/html/binomial_8hpp.html +++ b/docs/doxygen/html/binomial_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/binomial_8hpp_source.html b/docs/doxygen/html/binomial_8hpp_source.html index 168a186bd..0c5457360 100644 --- a/docs/doxygen/html/binomial_8hpp_source.html +++ b/docs/doxygen/html/binomial_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bit__count_8hpp.html b/docs/doxygen/html/bit__count_8hpp.html index 05f76f46f..698357b9d 100644 --- a/docs/doxygen/html/bit__count_8hpp.html +++ b/docs/doxygen/html/bit__count_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bit__count_8hpp_source.html b/docs/doxygen/html/bit__count_8hpp_source.html index 0d25ada32..27c0f5f6c 100644 --- a/docs/doxygen/html/bit__count_8hpp_source.html +++ b/docs/doxygen/html/bit__count_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bitwise__and_8hpp.html b/docs/doxygen/html/bitwise__and_8hpp.html index 50723bb0c..9047421a2 100644 --- a/docs/doxygen/html/bitwise__and_8hpp.html +++ b/docs/doxygen/html/bitwise__and_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bitwise__and_8hpp_source.html b/docs/doxygen/html/bitwise__and_8hpp_source.html index 5fc150c0d..aab1986a1 100644 --- a/docs/doxygen/html/bitwise__and_8hpp_source.html +++ b/docs/doxygen/html/bitwise__and_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bitwise__not_8hpp.html b/docs/doxygen/html/bitwise__not_8hpp.html index 341335a06..ac543d99a 100644 --- a/docs/doxygen/html/bitwise__not_8hpp.html +++ b/docs/doxygen/html/bitwise__not_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bitwise__not_8hpp_source.html b/docs/doxygen/html/bitwise__not_8hpp_source.html index 83d2a5f77..aa2123c7a 100644 --- a/docs/doxygen/html/bitwise__not_8hpp_source.html +++ b/docs/doxygen/html/bitwise__not_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bitwise__or_8hpp.html b/docs/doxygen/html/bitwise__or_8hpp.html index 3210f8fbe..f097fafc2 100644 --- a/docs/doxygen/html/bitwise__or_8hpp.html +++ b/docs/doxygen/html/bitwise__or_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bitwise__or_8hpp_source.html b/docs/doxygen/html/bitwise__or_8hpp_source.html index 1cd6757e0..5fee3d603 100644 --- a/docs/doxygen/html/bitwise__or_8hpp_source.html +++ b/docs/doxygen/html/bitwise__or_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bitwise__xor_8hpp.html b/docs/doxygen/html/bitwise__xor_8hpp.html index bc2bf2d45..c215017ef 100644 --- a/docs/doxygen/html/bitwise__xor_8hpp.html +++ b/docs/doxygen/html/bitwise__xor_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/bitwise__xor_8hpp_source.html b/docs/doxygen/html/bitwise__xor_8hpp_source.html index e3bc5afec..39749a0ce 100644 --- a/docs/doxygen/html/bitwise__xor_8hpp_source.html +++ b/docs/doxygen/html/bitwise__xor_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/blackman_8hpp.html b/docs/doxygen/html/blackman_8hpp.html index 3531eae23..8780308e6 100644 --- a/docs/doxygen/html/blackman_8hpp.html +++ b/docs/doxygen/html/blackman_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/blackman_8hpp_source.html b/docs/doxygen/html/blackman_8hpp_source.html index c605fea47..3750584fd 100644 --- a/docs/doxygen/html/blackman_8hpp_source.html +++ b/docs/doxygen/html/blackman_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/byteswap_8hpp.html b/docs/doxygen/html/byteswap_8hpp.html index aeb45bd4c..34c57b3c9 100644 --- a/docs/doxygen/html/byteswap_8hpp.html +++ b/docs/doxygen/html/byteswap_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/byteswap_8hpp_source.html b/docs/doxygen/html/byteswap_8hpp_source.html index 1c49fca66..4cc7ee2d5 100644 --- a/docs/doxygen/html/byteswap_8hpp_source.html +++ b/docs/doxygen/html/byteswap_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/cauchy_8hpp.html b/docs/doxygen/html/cauchy_8hpp.html index 5a1510381..55c2d1755 100644 --- a/docs/doxygen/html/cauchy_8hpp.html +++ b/docs/doxygen/html/cauchy_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/cauchy_8hpp_source.html b/docs/doxygen/html/cauchy_8hpp_source.html index ab66db058..6f876c329 100644 --- a/docs/doxygen/html/cauchy_8hpp_source.html +++ b/docs/doxygen/html/cauchy_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/cbrt_8hpp.html b/docs/doxygen/html/cbrt_8hpp.html index 815cab1ad..bbea681c5 100644 --- a/docs/doxygen/html/cbrt_8hpp.html +++ b/docs/doxygen/html/cbrt_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/cbrt_8hpp_source.html b/docs/doxygen/html/cbrt_8hpp_source.html index 2b26741b8..10eac60bf 100644 --- a/docs/doxygen/html/cbrt_8hpp_source.html +++ b/docs/doxygen/html/cbrt_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/ceil_8hpp.html b/docs/doxygen/html/ceil_8hpp.html index 24611cb25..5f0fba89a 100644 --- a/docs/doxygen/html/ceil_8hpp.html +++ b/docs/doxygen/html/ceil_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/ceil_8hpp_source.html b/docs/doxygen/html/ceil_8hpp_source.html index c86746927..650d351f8 100644 --- a/docs/doxygen/html/ceil_8hpp_source.html +++ b/docs/doxygen/html/ceil_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/center_of_mass_8hpp.html b/docs/doxygen/html/center_of_mass_8hpp.html index d73a2ffc8..6c1ddf9e5 100644 --- a/docs/doxygen/html/center_of_mass_8hpp.html +++ b/docs/doxygen/html/center_of_mass_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/center_of_mass_8hpp_source.html b/docs/doxygen/html/center_of_mass_8hpp_source.html index 877f9260f..400a193fd 100644 --- a/docs/doxygen/html/center_of_mass_8hpp_source.html +++ b/docs/doxygen/html/center_of_mass_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/centroid_clusters_8hpp.html b/docs/doxygen/html/centroid_clusters_8hpp.html index b145b614b..3e7cc96f9 100644 --- a/docs/doxygen/html/centroid_clusters_8hpp.html +++ b/docs/doxygen/html/centroid_clusters_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/centroid_clusters_8hpp_source.html b/docs/doxygen/html/centroid_clusters_8hpp_source.html index 680edff14..36d914d4c 100644 --- a/docs/doxygen/html/centroid_clusters_8hpp_source.html +++ b/docs/doxygen/html/centroid_clusters_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/chebyshev__t_8hpp.html b/docs/doxygen/html/chebyshev__t_8hpp.html index 163eb07b9..c5f430ae9 100644 --- a/docs/doxygen/html/chebyshev__t_8hpp.html +++ b/docs/doxygen/html/chebyshev__t_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/chebyshev__t_8hpp_source.html b/docs/doxygen/html/chebyshev__t_8hpp_source.html index 476acbc6b..c28419e3f 100644 --- a/docs/doxygen/html/chebyshev__t_8hpp_source.html +++ b/docs/doxygen/html/chebyshev__t_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/chebyshev__u_8hpp.html b/docs/doxygen/html/chebyshev__u_8hpp.html index c18c11cfb..ebd3dfe81 100644 --- a/docs/doxygen/html/chebyshev__u_8hpp.html +++ b/docs/doxygen/html/chebyshev__u_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/chebyshev__u_8hpp_source.html b/docs/doxygen/html/chebyshev__u_8hpp_source.html index d296bd68a..ff73cedb7 100644 --- a/docs/doxygen/html/chebyshev__u_8hpp_source.html +++ b/docs/doxygen/html/chebyshev__u_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/chi_square_8hpp.html b/docs/doxygen/html/chi_square_8hpp.html index 42b0104b3..c68daf8fa 100644 --- a/docs/doxygen/html/chi_square_8hpp.html +++ b/docs/doxygen/html/chi_square_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/chi_square_8hpp_source.html b/docs/doxygen/html/chi_square_8hpp_source.html index 644b15317..c10c06cb7 100644 --- a/docs/doxygen/html/chi_square_8hpp_source.html +++ b/docs/doxygen/html/chi_square_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/choice_8hpp.html b/docs/doxygen/html/choice_8hpp.html index aec50188b..75442e1ad 100644 --- a/docs/doxygen/html/choice_8hpp.html +++ b/docs/doxygen/html/choice_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/choice_8hpp_source.html b/docs/doxygen/html/choice_8hpp_source.html index 2dcd8f31d..86bf805bd 100644 --- a/docs/doxygen/html/choice_8hpp_source.html +++ b/docs/doxygen/html/choice_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/cholesky_8hpp.html b/docs/doxygen/html/cholesky_8hpp.html index 2674d215c..e2caa5e84 100644 --- a/docs/doxygen/html/cholesky_8hpp.html +++ b/docs/doxygen/html/cholesky_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/cholesky_8hpp_source.html b/docs/doxygen/html/cholesky_8hpp_source.html index 2b44467b0..9b6361eab 100644 --- a/docs/doxygen/html/cholesky_8hpp_source.html +++ b/docs/doxygen/html/cholesky_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classes.html b/docs/doxygen/html/classes.html index d723828ea..3974725bf 100644 --- a/docs/doxygen/html/classes.html +++ b/docs/doxygen/html/classes.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_data_cube.html b/docs/doxygen/html/classnc_1_1_data_cube.html index 0ad80318b..8620e64ea 100644 --- a/docs/doxygen/html/classnc_1_1_data_cube.html +++ b/docs/doxygen/html/classnc_1_1_data_cube.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_date_time.html b/docs/doxygen/html/classnc_1_1_date_time.html index 608a33c08..4054831a4 100644 --- a/docs/doxygen/html/classnc_1_1_date_time.html +++ b/docs/doxygen/html/classnc_1_1_date_time.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_dtype_info.html b/docs/doxygen/html/classnc_1_1_dtype_info.html index 36c98d88d..db30fc87d 100644 --- a/docs/doxygen/html/classnc_1_1_dtype_info.html +++ b/docs/doxygen/html/classnc_1_1_dtype_info.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html b/docs/doxygen/html/classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html index 9b61c757b..5cd611d73 100644 --- a/docs/doxygen/html/classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html +++ b/docs/doxygen/html/classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_nd_array.html b/docs/doxygen/html/classnc_1_1_nd_array.html index 711454219..4bfe7656b 100644 --- a/docs/doxygen/html/classnc_1_1_nd_array.html +++ b/docs/doxygen/html/classnc_1_1_nd_array.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_nd_array_column_iterator.html b/docs/doxygen/html/classnc_1_1_nd_array_column_iterator.html index 32901f0b9..732a1a74e 100644 --- a/docs/doxygen/html/classnc_1_1_nd_array_column_iterator.html +++ b/docs/doxygen/html/classnc_1_1_nd_array_column_iterator.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_nd_array_const_column_iterator.html b/docs/doxygen/html/classnc_1_1_nd_array_const_column_iterator.html index 7bfd50f27..6d1cedbc7 100644 --- a/docs/doxygen/html/classnc_1_1_nd_array_const_column_iterator.html +++ b/docs/doxygen/html/classnc_1_1_nd_array_const_column_iterator.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_nd_array_const_iterator.html b/docs/doxygen/html/classnc_1_1_nd_array_const_iterator.html index 940ba9acf..f6f12be67 100644 --- a/docs/doxygen/html/classnc_1_1_nd_array_const_iterator.html +++ b/docs/doxygen/html/classnc_1_1_nd_array_const_iterator.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_nd_array_iterator.html b/docs/doxygen/html/classnc_1_1_nd_array_iterator.html index 1114dd86f..1342daa03 100644 --- a/docs/doxygen/html/classnc_1_1_nd_array_iterator.html +++ b/docs/doxygen/html/classnc_1_1_nd_array_iterator.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_shape.html b/docs/doxygen/html/classnc_1_1_shape.html index 6aaedb18c..b40878541 100644 --- a/docs/doxygen/html/classnc_1_1_shape.html +++ b/docs/doxygen/html/classnc_1_1_shape.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_slice.html b/docs/doxygen/html/classnc_1_1_slice.html index c6ea4a19e..2f7d994ed 100644 --- a/docs/doxygen/html/classnc_1_1_slice.html +++ b/docs/doxygen/html/classnc_1_1_slice.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_timer.html b/docs/doxygen/html/classnc_1_1_timer.html index b845fd053..b0731c981 100644 --- a/docs/doxygen/html/classnc_1_1_timer.html +++ b/docs/doxygen/html/classnc_1_1_timer.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_vec2.html b/docs/doxygen/html/classnc_1_1_vec2.html index 8ea13494d..59de3aff7 100644 --- a/docs/doxygen/html/classnc_1_1_vec2.html +++ b/docs/doxygen/html/classnc_1_1_vec2.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1_vec3.html b/docs/doxygen/html/classnc_1_1_vec3.html index 239071056..09eae6b15 100644 --- a/docs/doxygen/html/classnc_1_1_vec3.html +++ b/docs/doxygen/html/classnc_1_1_vec3.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1_cartesian.html b/docs/doxygen/html/classnc_1_1coordinates_1_1_cartesian.html index a2f4f358b..47198f936 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1_cartesian.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1_cartesian.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1_euler.html b/docs/doxygen/html/classnc_1_1coordinates_1_1_euler.html index 58775ec5f..96769400f 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1_euler.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1_euler.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1_orientation.html b/docs/doxygen/html/classnc_1_1coordinates_1_1_orientation.html index 39534111d..690651517 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1_orientation.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1_orientation.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html index 8b1c56c75..c223a22b1 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html index d07ee967d..d51f743a8 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_dec.html b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_dec.html index c89639f41..16b1155eb 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_dec.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_dec.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html index fb35b22c5..3854426e0 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html index cfb9db56f..4dbe1b16b 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html index 758f40b55..643013213 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html index 7014be8d7..8cae21587 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html index 9e7fedf03..23d6c29da 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html index 7b860c942..8dad8d94f 100644 --- a/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html +++ b/docs/doxygen/html/classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1image_processing_1_1_centroid.html b/docs/doxygen/html/classnc_1_1image_processing_1_1_centroid.html index a6abd162b..2c8eede2b 100644 --- a/docs/doxygen/html/classnc_1_1image_processing_1_1_centroid.html +++ b/docs/doxygen/html/classnc_1_1image_processing_1_1_centroid.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1image_processing_1_1_cluster.html b/docs/doxygen/html/classnc_1_1image_processing_1_1_cluster.html index dcd7253ab..e0c7ad735 100644 --- a/docs/doxygen/html/classnc_1_1image_processing_1_1_cluster.html +++ b/docs/doxygen/html/classnc_1_1image_processing_1_1_cluster.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1image_processing_1_1_cluster_maker.html b/docs/doxygen/html/classnc_1_1image_processing_1_1_cluster_maker.html index 2c1646525..70eaa2291 100644 --- a/docs/doxygen/html/classnc_1_1image_processing_1_1_cluster_maker.html +++ b/docs/doxygen/html/classnc_1_1image_processing_1_1_cluster_maker.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1image_processing_1_1_pixel.html b/docs/doxygen/html/classnc_1_1image_processing_1_1_pixel.html index 96aa60d74..644f39d99 100644 --- a/docs/doxygen/html/classnc_1_1image_processing_1_1_pixel.html +++ b/docs/doxygen/html/classnc_1_1image_processing_1_1_pixel.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1integrate_1_1_legendre_polynomial.html b/docs/doxygen/html/classnc_1_1integrate_1_1_legendre_polynomial.html index a5efb49b8..8429b41ca 100644 --- a/docs/doxygen/html/classnc_1_1integrate_1_1_legendre_polynomial.html +++ b/docs/doxygen/html/classnc_1_1integrate_1_1_legendre_polynomial.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/classnc_1_1linalg_1_1_s_v_d.html b/docs/doxygen/html/classnc_1_1linalg_1_1_s_v_d.html index 6a21a9e03..1bf69f22a 100644 --- a/docs/doxygen/html/classnc_1_1linalg_1_1_s_v_d.html +++ b/docs/doxygen/html/classnc_1_1linalg_1_1_s_v_d.html @@ -7,7 +7,7 @@ - NumCpp: nc::linalg::SVD Class Reference + NumCpp: nc::linalg::SVD< dtype > Class Template Reference @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -115,42 +115,58 @@ +
nc::linalg::SVD< dtype > Class Template Reference
-

#include <SVDClass.hpp>

+

Performs the singular value decomposition of a general matrix. + More...

+ +

#include <SVD.hpp>

- - - - - - - - - - + + + + + + + + + + + + + + +

Public Member Functions

 SVD (const NdArray< double > &inMatrix)
 
const NdArray< double > & s () noexcept
 
NdArray< doublesolve (const NdArray< double > &inInput, double inThresh=-1.)
 
const NdArray< double > & u () noexcept
 
const NdArray< double > & v () noexcept
 
 SVD (const NdArray< dtype > &inMatrix)
 
NdArray< doublelstsq (const NdArray< double > &inInput)
 
NdArray< doublepinv ()
 
const NdArray< double > & s () const noexcept
 
 STATIC_ASSERT_ARITHMETIC (dtype)
 
const NdArray< double > & u () const noexcept
 
const NdArray< double > & v () const noexcept
 
+ + +

+Static Public Attributes

static constexpr auto TOLERANCE = 1e-12
 

Detailed Description

-

performs the singular value decomposition of a general matrix, taken and adapted from Numerical Recipes Third Edition svd.h

+
template<typename dtype>
+class nc::linalg::SVD< dtype >

Performs the singular value decomposition of a general matrix.

Constructor & Destructor Documentation

- -

◆ SVD()

+ +

◆ SVD()

+
+template<typename dtype >
diff --git a/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1_binary_data_logger.html b/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1_binary_data_logger.html index d0af345a5..732e3974c 100644 --- a/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1_binary_data_logger.html +++ b/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1_binary_data_logger.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html b/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html index f4b092947..4486ec379 100644 --- a/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html +++ b/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html b/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html index ea3768f1c..bfb82c996 100644 --- a/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html +++ b/docs/doxygen/html/classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1polynomial_1_1_poly1d.html b/docs/doxygen/html/classnc_1_1polynomial_1_1_poly1d.html index 411d6eaaf..75caf66b5 100644 --- a/docs/doxygen/html/classnc_1_1polynomial_1_1_poly1d.html +++ b/docs/doxygen/html/classnc_1_1polynomial_1_1_poly1d.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1random_1_1_r_n_g.html b/docs/doxygen/html/classnc_1_1random_1_1_r_n_g.html index 027d1b75e..7003a2787 100644 --- a/docs/doxygen/html/classnc_1_1random_1_1_r_n_g.html +++ b/docs/doxygen/html/classnc_1_1random_1_1_r_n_g.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1roots_1_1_bisection.html b/docs/doxygen/html/classnc_1_1roots_1_1_bisection.html index a482e98e8..9696aa655 100644 --- a/docs/doxygen/html/classnc_1_1roots_1_1_bisection.html +++ b/docs/doxygen/html/classnc_1_1roots_1_1_bisection.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1roots_1_1_brent.html b/docs/doxygen/html/classnc_1_1roots_1_1_brent.html index 765504c9a..10055b585 100644 --- a/docs/doxygen/html/classnc_1_1roots_1_1_brent.html +++ b/docs/doxygen/html/classnc_1_1roots_1_1_brent.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1roots_1_1_dekker.html b/docs/doxygen/html/classnc_1_1roots_1_1_dekker.html index e2c642624..bb5af1dc7 100644 --- a/docs/doxygen/html/classnc_1_1roots_1_1_dekker.html +++ b/docs/doxygen/html/classnc_1_1roots_1_1_dekker.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1roots_1_1_iteration.html b/docs/doxygen/html/classnc_1_1roots_1_1_iteration.html index e4d4add18..d0288f9b0 100644 --- a/docs/doxygen/html/classnc_1_1roots_1_1_iteration.html +++ b/docs/doxygen/html/classnc_1_1roots_1_1_iteration.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1roots_1_1_newton.html b/docs/doxygen/html/classnc_1_1roots_1_1_newton.html index cac639405..fa75488bb 100644 --- a/docs/doxygen/html/classnc_1_1roots_1_1_newton.html +++ b/docs/doxygen/html/classnc_1_1roots_1_1_newton.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1roots_1_1_secant.html b/docs/doxygen/html/classnc_1_1roots_1_1_secant.html index 3fa443654..394afefd6 100644 --- a/docs/doxygen/html/classnc_1_1roots_1_1_secant.html +++ b/docs/doxygen/html/classnc_1_1roots_1_1_secant.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1rotations_1_1_d_c_m.html b/docs/doxygen/html/classnc_1_1rotations_1_1_d_c_m.html index c796c1fc8..3ade432e0 100644 --- a/docs/doxygen/html/classnc_1_1rotations_1_1_d_c_m.html +++ b/docs/doxygen/html/classnc_1_1rotations_1_1_d_c_m.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/classnc_1_1rotations_1_1_quaternion.html b/docs/doxygen/html/classnc_1_1rotations_1_1_quaternion.html index 0ff41778a..81acff7cf 100644 --- a/docs/doxygen/html/classnc_1_1rotations_1_1_quaternion.html +++ b/docs/doxygen/html/classnc_1_1rotations_1_1_quaternion.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/clip_8hpp.html b/docs/doxygen/html/clip_8hpp.html index 712738549..a26835a8a 100644 --- a/docs/doxygen/html/clip_8hpp.html +++ b/docs/doxygen/html/clip_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/clip_8hpp_source.html b/docs/doxygen/html/clip_8hpp_source.html index c4f4be2be..f114472b1 100644 --- a/docs/doxygen/html/clip_8hpp_source.html +++ b/docs/doxygen/html/clip_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cluster_pixels_8hpp.html b/docs/doxygen/html/cluster_pixels_8hpp.html index af67ce8ac..a6cbac5aa 100644 --- a/docs/doxygen/html/cluster_pixels_8hpp.html +++ b/docs/doxygen/html/cluster_pixels_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cluster_pixels_8hpp_source.html b/docs/doxygen/html/cluster_pixels_8hpp_source.html index 1dfc6e8c5..704bc09a7 100644 --- a/docs/doxygen/html/cluster_pixels_8hpp_source.html +++ b/docs/doxygen/html/cluster_pixels_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cnr_8hpp.html b/docs/doxygen/html/cnr_8hpp.html index fdf039cb3..7e65d4866 100644 --- a/docs/doxygen/html/cnr_8hpp.html +++ b/docs/doxygen/html/cnr_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cnr_8hpp_source.html b/docs/doxygen/html/cnr_8hpp_source.html index dfa74adb4..f1529faed 100644 --- a/docs/doxygen/html/cnr_8hpp_source.html +++ b/docs/doxygen/html/cnr_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/column__stack_8hpp.html b/docs/doxygen/html/column__stack_8hpp.html index 3f9c54185..085e55155 100644 --- a/docs/doxygen/html/column__stack_8hpp.html +++ b/docs/doxygen/html/column__stack_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/column__stack_8hpp_source.html b/docs/doxygen/html/column__stack_8hpp_source.html index 3e4eb521c..96ac5767b 100644 --- a/docs/doxygen/html/column__stack_8hpp_source.html +++ b/docs/doxygen/html/column__stack_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/comp__ellint__1_8hpp.html b/docs/doxygen/html/comp__ellint__1_8hpp.html index 12eaaab71..340d02912 100644 --- a/docs/doxygen/html/comp__ellint__1_8hpp.html +++ b/docs/doxygen/html/comp__ellint__1_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/comp__ellint__1_8hpp_source.html b/docs/doxygen/html/comp__ellint__1_8hpp_source.html index e138f0496..564b606f4 100644 --- a/docs/doxygen/html/comp__ellint__1_8hpp_source.html +++ b/docs/doxygen/html/comp__ellint__1_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/comp__ellint__2_8hpp.html b/docs/doxygen/html/comp__ellint__2_8hpp.html index 03ddbfc00..e124991fd 100644 --- a/docs/doxygen/html/comp__ellint__2_8hpp.html +++ b/docs/doxygen/html/comp__ellint__2_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/comp__ellint__2_8hpp_source.html b/docs/doxygen/html/comp__ellint__2_8hpp_source.html index a0e1f7ea5..736ccacaa 100644 --- a/docs/doxygen/html/comp__ellint__2_8hpp_source.html +++ b/docs/doxygen/html/comp__ellint__2_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/comp__ellint__3_8hpp.html b/docs/doxygen/html/comp__ellint__3_8hpp.html index 68265e6e9..6c421c0db 100644 --- a/docs/doxygen/html/comp__ellint__3_8hpp.html +++ b/docs/doxygen/html/comp__ellint__3_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/comp__ellint__3_8hpp_source.html b/docs/doxygen/html/comp__ellint__3_8hpp_source.html index 253a0d9a1..9b25ffc70 100644 --- a/docs/doxygen/html/comp__ellint__3_8hpp_source.html +++ b/docs/doxygen/html/comp__ellint__3_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/complementary_mean_filter1d_8hpp.html b/docs/doxygen/html/complementary_mean_filter1d_8hpp.html index e4ed6e4db..a149a7d34 100644 --- a/docs/doxygen/html/complementary_mean_filter1d_8hpp.html +++ b/docs/doxygen/html/complementary_mean_filter1d_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/complementary_mean_filter1d_8hpp_source.html b/docs/doxygen/html/complementary_mean_filter1d_8hpp_source.html index 0a06578e3..cbf04e7bf 100644 --- a/docs/doxygen/html/complementary_mean_filter1d_8hpp_source.html +++ b/docs/doxygen/html/complementary_mean_filter1d_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/complementary_mean_filter_8hpp.html b/docs/doxygen/html/complementary_mean_filter_8hpp.html index b2c3645c5..269771db3 100644 --- a/docs/doxygen/html/complementary_mean_filter_8hpp.html +++ b/docs/doxygen/html/complementary_mean_filter_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/complementary_mean_filter_8hpp_source.html b/docs/doxygen/html/complementary_mean_filter_8hpp_source.html index 3a0471fd6..c649bf9d4 100644 --- a/docs/doxygen/html/complementary_mean_filter_8hpp_source.html +++ b/docs/doxygen/html/complementary_mean_filter_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/complementary_median_filter1d_8hpp.html b/docs/doxygen/html/complementary_median_filter1d_8hpp.html index ba1498f30..1a0f35849 100644 --- a/docs/doxygen/html/complementary_median_filter1d_8hpp.html +++ b/docs/doxygen/html/complementary_median_filter1d_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/complementary_median_filter1d_8hpp_source.html b/docs/doxygen/html/complementary_median_filter1d_8hpp_source.html index c46b8e9cc..a47ef64b5 100644 --- a/docs/doxygen/html/complementary_median_filter1d_8hpp_source.html +++ b/docs/doxygen/html/complementary_median_filter1d_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/complementary_median_filter_8hpp.html b/docs/doxygen/html/complementary_median_filter_8hpp.html index 239b71594..af65fb334 100644 --- a/docs/doxygen/html/complementary_median_filter_8hpp.html +++ b/docs/doxygen/html/complementary_median_filter_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/complementary_median_filter_8hpp_source.html b/docs/doxygen/html/complementary_median_filter_8hpp_source.html index f516d01e4..557da6c46 100644 --- a/docs/doxygen/html/complementary_median_filter_8hpp_source.html +++ b/docs/doxygen/html/complementary_median_filter_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/complex_8hpp.html b/docs/doxygen/html/complex_8hpp.html index 0f31dd817..416a654c4 100644 --- a/docs/doxygen/html/complex_8hpp.html +++ b/docs/doxygen/html/complex_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/complex_8hpp_source.html b/docs/doxygen/html/complex_8hpp_source.html index ba98ca23a..f7a51c8c0 100644 --- a/docs/doxygen/html/complex_8hpp_source.html +++ b/docs/doxygen/html/complex_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/concatenate_8hpp.html b/docs/doxygen/html/concatenate_8hpp.html index 35364cb48..9119f2a42 100644 --- a/docs/doxygen/html/concatenate_8hpp.html +++ b/docs/doxygen/html/concatenate_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/concatenate_8hpp_source.html b/docs/doxygen/html/concatenate_8hpp_source.html index aa5b2a5cc..d287291c2 100644 --- a/docs/doxygen/html/concatenate_8hpp_source.html +++ b/docs/doxygen/html/concatenate_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/conj_8hpp.html b/docs/doxygen/html/conj_8hpp.html index d82997e4b..22edcae9a 100644 --- a/docs/doxygen/html/conj_8hpp.html +++ b/docs/doxygen/html/conj_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/conj_8hpp_source.html b/docs/doxygen/html/conj_8hpp_source.html index 81f1da0ef..94489d45d 100644 --- a/docs/doxygen/html/conj_8hpp_source.html +++ b/docs/doxygen/html/conj_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/constant1d_8hpp.html b/docs/doxygen/html/constant1d_8hpp.html index d88c77844..1c9fe6453 100644 --- a/docs/doxygen/html/constant1d_8hpp.html +++ b/docs/doxygen/html/constant1d_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/constant1d_8hpp_source.html b/docs/doxygen/html/constant1d_8hpp_source.html index cd811f3d6..4ed9f104b 100644 --- a/docs/doxygen/html/constant1d_8hpp_source.html +++ b/docs/doxygen/html/constant1d_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/constant2d_8hpp.html b/docs/doxygen/html/constant2d_8hpp.html index 47d54290d..ded021e07 100644 --- a/docs/doxygen/html/constant2d_8hpp.html +++ b/docs/doxygen/html/constant2d_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/constant2d_8hpp_source.html b/docs/doxygen/html/constant2d_8hpp_source.html index d0e809aed..d578a0593 100644 --- a/docs/doxygen/html/constant2d_8hpp_source.html +++ b/docs/doxygen/html/constant2d_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/contains_8hpp.html b/docs/doxygen/html/contains_8hpp.html index e70c0c196..2c0351973 100644 --- a/docs/doxygen/html/contains_8hpp.html +++ b/docs/doxygen/html/contains_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/contains_8hpp_source.html b/docs/doxygen/html/contains_8hpp_source.html index 4a5dff093..f78c8cac5 100644 --- a/docs/doxygen/html/contains_8hpp_source.html +++ b/docs/doxygen/html/contains_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/convolve1d_8hpp.html b/docs/doxygen/html/convolve1d_8hpp.html index 17c8b34ec..ced90cdc8 100644 --- a/docs/doxygen/html/convolve1d_8hpp.html +++ b/docs/doxygen/html/convolve1d_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/convolve1d_8hpp_source.html b/docs/doxygen/html/convolve1d_8hpp_source.html index 9d63cad7d..d810d461c 100644 --- a/docs/doxygen/html/convolve1d_8hpp_source.html +++ b/docs/doxygen/html/convolve1d_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/convolve_8hpp.html b/docs/doxygen/html/convolve_8hpp.html index 31f141331..30a23b5f6 100644 --- a/docs/doxygen/html/convolve_8hpp.html +++ b/docs/doxygen/html/convolve_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/convolve_8hpp_source.html b/docs/doxygen/html/convolve_8hpp_source.html index 3af9945a2..c8e7b7017 100644 --- a/docs/doxygen/html/convolve_8hpp_source.html +++ b/docs/doxygen/html/convolve_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/copy_8hpp.html b/docs/doxygen/html/copy_8hpp.html index 7268c06cf..ec7911d59 100644 --- a/docs/doxygen/html/copy_8hpp.html +++ b/docs/doxygen/html/copy_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/copy_8hpp_source.html b/docs/doxygen/html/copy_8hpp_source.html index 08d0df708..467a09b4f 100644 --- a/docs/doxygen/html/copy_8hpp_source.html +++ b/docs/doxygen/html/copy_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/copy_sign_8hpp.html b/docs/doxygen/html/copy_sign_8hpp.html index 748136f82..c38f54ee0 100644 --- a/docs/doxygen/html/copy_sign_8hpp.html +++ b/docs/doxygen/html/copy_sign_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/copy_sign_8hpp_source.html b/docs/doxygen/html/copy_sign_8hpp_source.html index ca145c3f3..46d3aeb24 100644 --- a/docs/doxygen/html/copy_sign_8hpp_source.html +++ b/docs/doxygen/html/copy_sign_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/copyto_8hpp.html b/docs/doxygen/html/copyto_8hpp.html index d7c28dd8f..6b20a4b62 100644 --- a/docs/doxygen/html/copyto_8hpp.html +++ b/docs/doxygen/html/copyto_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/copyto_8hpp_source.html b/docs/doxygen/html/copyto_8hpp_source.html index 0d2ab3f07..0cc4e6901 100644 --- a/docs/doxygen/html/copyto_8hpp_source.html +++ b/docs/doxygen/html/copyto_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/corrcoef_8hpp.html b/docs/doxygen/html/corrcoef_8hpp.html index 86e5d0983..f306e197e 100644 --- a/docs/doxygen/html/corrcoef_8hpp.html +++ b/docs/doxygen/html/corrcoef_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/corrcoef_8hpp_source.html b/docs/doxygen/html/corrcoef_8hpp_source.html index 8df6a0698..53a6ca261 100644 --- a/docs/doxygen/html/corrcoef_8hpp_source.html +++ b/docs/doxygen/html/corrcoef_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cos_8hpp.html b/docs/doxygen/html/cos_8hpp.html index 2fd545044..057e79902 100644 --- a/docs/doxygen/html/cos_8hpp.html +++ b/docs/doxygen/html/cos_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cos_8hpp_source.html b/docs/doxygen/html/cos_8hpp_source.html index a6f312c3c..9ff3ea7aa 100644 --- a/docs/doxygen/html/cos_8hpp_source.html +++ b/docs/doxygen/html/cos_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cosh_8hpp.html b/docs/doxygen/html/cosh_8hpp.html index ca857469a..d7661442a 100644 --- a/docs/doxygen/html/cosh_8hpp.html +++ b/docs/doxygen/html/cosh_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cosh_8hpp_source.html b/docs/doxygen/html/cosh_8hpp_source.html index 0cb513a1d..a345057a7 100644 --- a/docs/doxygen/html/cosh_8hpp_source.html +++ b/docs/doxygen/html/cosh_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/count__nonzero_8hpp.html b/docs/doxygen/html/count__nonzero_8hpp.html index d264f8653..4d6e08b7c 100644 --- a/docs/doxygen/html/count__nonzero_8hpp.html +++ b/docs/doxygen/html/count__nonzero_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/count__nonzero_8hpp_source.html b/docs/doxygen/html/count__nonzero_8hpp_source.html index 4e216d3ad..991e01b72 100644 --- a/docs/doxygen/html/count__nonzero_8hpp_source.html +++ b/docs/doxygen/html/count__nonzero_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cov_8hpp.html b/docs/doxygen/html/cov_8hpp.html index 24ba8b248..2c3653acc 100644 --- a/docs/doxygen/html/cov_8hpp.html +++ b/docs/doxygen/html/cov_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cov_8hpp_source.html b/docs/doxygen/html/cov_8hpp_source.html index 66758be1c..5d14d6832 100644 --- a/docs/doxygen/html/cov_8hpp_source.html +++ b/docs/doxygen/html/cov_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cov__inv_8hpp.html b/docs/doxygen/html/cov__inv_8hpp.html index f68f0a7b3..4b3650153 100644 --- a/docs/doxygen/html/cov__inv_8hpp.html +++ b/docs/doxygen/html/cov__inv_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cov__inv_8hpp_source.html b/docs/doxygen/html/cov__inv_8hpp_source.html index 6d2e1cd7d..d4f92b2f4 100644 --- a/docs/doxygen/html/cov__inv_8hpp_source.html +++ b/docs/doxygen/html/cov__inv_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cross_8hpp.html b/docs/doxygen/html/cross_8hpp.html index c142d6871..28f0b36ec 100644 --- a/docs/doxygen/html/cross_8hpp.html +++ b/docs/doxygen/html/cross_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cross_8hpp_source.html b/docs/doxygen/html/cross_8hpp_source.html index 65d1fd918..f79ce8973 100644 --- a/docs/doxygen/html/cross_8hpp_source.html +++ b/docs/doxygen/html/cross_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cumprod_8hpp.html b/docs/doxygen/html/cumprod_8hpp.html index 1d7288df4..2419ad6ff 100644 --- a/docs/doxygen/html/cumprod_8hpp.html +++ b/docs/doxygen/html/cumprod_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cumprod_8hpp_source.html b/docs/doxygen/html/cumprod_8hpp_source.html index d2b0f2355..cb3e297ed 100644 --- a/docs/doxygen/html/cumprod_8hpp_source.html +++ b/docs/doxygen/html/cumprod_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cumsum_8hpp.html b/docs/doxygen/html/cumsum_8hpp.html index e1387bd1d..0f8b6efde 100644 --- a/docs/doxygen/html/cumsum_8hpp.html +++ b/docs/doxygen/html/cumsum_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cumsum_8hpp_source.html b/docs/doxygen/html/cumsum_8hpp_source.html index 0a974f6cd..a023677e8 100644 --- a/docs/doxygen/html/cumsum_8hpp_source.html +++ b/docs/doxygen/html/cumsum_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cyclic__hankel__1_8hpp.html b/docs/doxygen/html/cyclic__hankel__1_8hpp.html index 7245096e1..be20d7fe7 100644 --- a/docs/doxygen/html/cyclic__hankel__1_8hpp.html +++ b/docs/doxygen/html/cyclic__hankel__1_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cyclic__hankel__1_8hpp_source.html b/docs/doxygen/html/cyclic__hankel__1_8hpp_source.html index 0c59cb6a0..a9dd52d66 100644 --- a/docs/doxygen/html/cyclic__hankel__1_8hpp_source.html +++ b/docs/doxygen/html/cyclic__hankel__1_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cyclic__hankel__2_8hpp.html b/docs/doxygen/html/cyclic__hankel__2_8hpp.html index 1e9c34f2c..ffd464be4 100644 --- a/docs/doxygen/html/cyclic__hankel__2_8hpp.html +++ b/docs/doxygen/html/cyclic__hankel__2_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/cyclic__hankel__2_8hpp_source.html b/docs/doxygen/html/cyclic__hankel__2_8hpp_source.html index 087647291..a23faccb5 100644 --- a/docs/doxygen/html/cyclic__hankel__2_8hpp_source.html +++ b/docs/doxygen/html/cyclic__hankel__2_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/deg2rad_8hpp.html b/docs/doxygen/html/deg2rad_8hpp.html index 118b1735f..ac63e0cc0 100644 --- a/docs/doxygen/html/deg2rad_8hpp.html +++ b/docs/doxygen/html/deg2rad_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/deg2rad_8hpp_source.html b/docs/doxygen/html/deg2rad_8hpp_source.html index 09295c2f4..6cf281dd1 100644 --- a/docs/doxygen/html/deg2rad_8hpp_source.html +++ b/docs/doxygen/html/deg2rad_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/degrees_8hpp.html b/docs/doxygen/html/degrees_8hpp.html index 800d5fdd3..66a0b428b 100644 --- a/docs/doxygen/html/degrees_8hpp.html +++ b/docs/doxygen/html/degrees_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/degrees_8hpp_source.html b/docs/doxygen/html/degrees_8hpp_source.html index 18b777d63..f14e21b6c 100644 --- a/docs/doxygen/html/degrees_8hpp_source.html +++ b/docs/doxygen/html/degrees_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/delete_indices_8hpp.html b/docs/doxygen/html/delete_indices_8hpp.html index b08ebc08c..7a452fd1d 100644 --- a/docs/doxygen/html/delete_indices_8hpp.html +++ b/docs/doxygen/html/delete_indices_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/delete_indices_8hpp_source.html b/docs/doxygen/html/delete_indices_8hpp_source.html index 2eb8691f4..a9673c6f3 100644 --- a/docs/doxygen/html/delete_indices_8hpp_source.html +++ b/docs/doxygen/html/delete_indices_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/det_8hpp.html b/docs/doxygen/html/det_8hpp.html index 03f64d7a2..84ec69b74 100644 --- a/docs/doxygen/html/det_8hpp.html +++ b/docs/doxygen/html/det_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/det_8hpp_source.html b/docs/doxygen/html/det_8hpp_source.html index 3dfa4a585..20a37441b 100644 --- a/docs/doxygen/html/det_8hpp_source.html +++ b/docs/doxygen/html/det_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/diag_8hpp.html b/docs/doxygen/html/diag_8hpp.html index fa3c27111..6911b0e2d 100644 --- a/docs/doxygen/html/diag_8hpp.html +++ b/docs/doxygen/html/diag_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/diag_8hpp_source.html b/docs/doxygen/html/diag_8hpp_source.html index 9045c16ee..61afa63af 100644 --- a/docs/doxygen/html/diag_8hpp_source.html +++ b/docs/doxygen/html/diag_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/diagflat_8hpp.html b/docs/doxygen/html/diagflat_8hpp.html index 9b505a4de..9e0ee6fcc 100644 --- a/docs/doxygen/html/diagflat_8hpp.html +++ b/docs/doxygen/html/diagflat_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/diagflat_8hpp_source.html b/docs/doxygen/html/diagflat_8hpp_source.html index 9af9f86c2..9cce97ea3 100644 --- a/docs/doxygen/html/diagflat_8hpp_source.html +++ b/docs/doxygen/html/diagflat_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/diagonal_8hpp.html b/docs/doxygen/html/diagonal_8hpp.html index a733fe203..1b7b471c9 100644 --- a/docs/doxygen/html/diagonal_8hpp.html +++ b/docs/doxygen/html/diagonal_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/diagonal_8hpp_source.html b/docs/doxygen/html/diagonal_8hpp_source.html index b5cbe890a..0ec841566 100644 --- a/docs/doxygen/html/diagonal_8hpp_source.html +++ b/docs/doxygen/html/diagonal_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/diff_8hpp.html b/docs/doxygen/html/diff_8hpp.html index d8b6e69b3..c543013bf 100644 --- a/docs/doxygen/html/diff_8hpp.html +++ b/docs/doxygen/html/diff_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/diff_8hpp_source.html b/docs/doxygen/html/diff_8hpp_source.html index 1193ef3dd..2e05de34c 100644 --- a/docs/doxygen/html/diff_8hpp_source.html +++ b/docs/doxygen/html/diff_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/digamma_8hpp.html b/docs/doxygen/html/digamma_8hpp.html index 220e1aa9a..b045945e1 100644 --- a/docs/doxygen/html/digamma_8hpp.html +++ b/docs/doxygen/html/digamma_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/digamma_8hpp_source.html b/docs/doxygen/html/digamma_8hpp_source.html index 10a250192..bf8486f74 100644 --- a/docs/doxygen/html/digamma_8hpp_source.html +++ b/docs/doxygen/html/digamma_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/digitize_8hpp.html b/docs/doxygen/html/digitize_8hpp.html index 6bed02350..211d3347e 100644 --- a/docs/doxygen/html/digitize_8hpp.html +++ b/docs/doxygen/html/digitize_8hpp.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/digitize_8hpp_source.html b/docs/doxygen/html/digitize_8hpp_source.html index b16fdfd33..5ac119e6c 100644 --- a/docs/doxygen/html/digitize_8hpp_source.html +++ b/docs/doxygen/html/digitize_8hpp_source.html @@ -50,7 +50,7 @@ diff --git a/docs/doxygen/html/dir_093b14450e434accd2cde91cedff0d18.html b/docs/doxygen/html/dir_093b14450e434accd2cde91cedff0d18.html index e083ff0f3..fa0c81d14 100644 --- a/docs/doxygen/html/dir_093b14450e434accd2cde91cedff0d18.html +++ b/docs/doxygen/html/dir_093b14450e434accd2cde91cedff0d18.html @@ -50,7 +50,7 @@ @@ -120,7 +120,7 @@
- + - + @@ -164,7 +180,7 @@

Parameters

nc::linalg::SVD::SVD nc::linalg::SVD< dtype >::SVD (const NdArray< double > & const NdArray< dtype > &  inMatrix)
- +
inMatrixmatrix to perform SVD on
inMatrixmatrix to perform SVD on
@@ -172,58 +188,58 @@

Member Function Documentation

- -

◆ s()

+ +

◆ lstsq()

+
+template<typename dtype >
+inline
- + - + +
const NdArray< double > & nc::linalg::SVD::s NdArray< double > nc::linalg::SVD< dtype >::lstsq ()const NdArray< double > & inInput)
-inlinenoexcept
-

the resultant w matrix

-
Returns
s matrix
+

solves the linear least squares problem

+
Parameters
+ + +
inInput
+
+
+
Returns
NdArray
- -

◆ solve()

+ +

◆ pinv()

+
+template<typename dtype >
@@ -232,34 +248,78 @@

-

solves the linear least squares problem

-
Parameters
-

- + - - - - - - - - - - + - -
NdArray< double > nc::linalg::SVD::solve NdArray< double > nc::linalg::SVD< dtype >::pinv (const NdArray< double > & inInput,
double inThresh = -1. 
) )
- - -
inInput
inThresh(default -1.)
- - +

Returns the pseudo-inverse of the input matrix

Returns
NdArray
- -

◆ u()

+ +

◆ s()

+
+template<typename dtype >
+ + +
- + + + +
const NdArray< double > & nc::linalg::SVD::u const NdArray< double > & nc::linalg::SVD< dtype >::s ( ) const
+
+inlinenoexcept
+
+

the resultant w matrix

+
Returns
s matrix
+ +
+
+ +

◆ STATIC_ASSERT_ARITHMETIC()

+ +
+
+
+template<typename dtype >
+ + + + + +
nc::linalg::SVD< dtype >::STATIC_ASSERT_ARITHMETIC (dtype )
+
+ +
+
+ +

◆ u()

+ +
+
+
+template<typename dtype >
+ + + @@ -271,20 +331,22 @@

-

◆ v()

+ +

◆ v()

+
+template<typename dtype >

+ + + + + + + +
const NdArray< double > & nc::linalg::SVD< dtype >::u () const
inlinenoexcept
@@ -293,13 +355,38 @@

-

the resultant v matrix

+

the resultant v transpose matrix

Returns
v matrix
+ + +

Field Documentation

+
+

◆ TOLERANCE

+ +
+
+
+template<typename dtype >
+

- + - +
const NdArray< double > & nc::linalg::SVD::v const NdArray< double > & nc::linalg::SVD< dtype >::v ( ) const
+ + + + +
+ + + + +
constexpr auto nc::linalg::SVD< dtype >::TOLERANCE = 1e-12
+
+staticconstexpr
+
+

The documentation for this class was generated from the following file: diff --git a/docs/doxygen/html/classnc_1_1linalg_1_1_s_v_d.js b/docs/doxygen/html/classnc_1_1linalg_1_1_s_v_d.js index 11ccba90b..903cf1b96 100644 --- a/docs/doxygen/html/classnc_1_1linalg_1_1_s_v_d.js +++ b/docs/doxygen/html/classnc_1_1linalg_1_1_s_v_d.js @@ -1,8 +1,11 @@ var classnc_1_1linalg_1_1_s_v_d = [ - [ "SVD", "classnc_1_1linalg_1_1_s_v_d.html#ae0561bbc9633e436139258b0c70b98ba", null ], - [ "s", "classnc_1_1linalg_1_1_s_v_d.html#aa3628ab32a1117f00645ce377c4b8654", null ], - [ "solve", "classnc_1_1linalg_1_1_s_v_d.html#a5f8126b97109ff2929842d861522de19", null ], - [ "u", "classnc_1_1linalg_1_1_s_v_d.html#af28a679bf8a8ef8af95184a26a6fbb4e", null ], - [ "v", "classnc_1_1linalg_1_1_s_v_d.html#ab0ff491e89a4242d15854683d0a45650", null ] + [ "SVD", "classnc_1_1linalg_1_1_s_v_d.html#ab4ba7cba1b76cd0a05805c894b93e356", null ], + [ "lstsq", "classnc_1_1linalg_1_1_s_v_d.html#ac242186475a35804492d717f933024bd", null ], + [ "pinv", "classnc_1_1linalg_1_1_s_v_d.html#a81c5d57cc757e95a3dc48cec03ca80fb", null ], + [ "s", "classnc_1_1linalg_1_1_s_v_d.html#a16f7636b9dc063e1636effbc71240f4b", null ], + [ "STATIC_ASSERT_ARITHMETIC", "classnc_1_1linalg_1_1_s_v_d.html#a38a3dacc268968d6910618f0ff79073e", null ], + [ "u", "classnc_1_1linalg_1_1_s_v_d.html#a158910084dd44940dca481dbf5f92382", null ], + [ "v", "classnc_1_1linalg_1_1_s_v_d.html#adc73c87eefc76c303ef510b5c2534fa3", null ], + [ "TOLERANCE", "classnc_1_1linalg_1_1_s_v_d.html#a6dd64d76d201318568ce13eb305810fd", null ] ]; \ No newline at end of file diff --git a/docs/doxygen/html/classnc_1_1logger_1_1_binary_logger.html b/docs/doxygen/html/classnc_1_1logger_1_1_binary_logger.html index a4a758f26..e003b5a46 100644 --- a/docs/doxygen/html/classnc_1_1logger_1_1_binary_logger.html +++ b/docs/doxygen/html/classnc_1_1logger_1_1_binary_logger.html @@ -50,7 +50,7 @@
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
- +

Files

 SVDClass.hpp
 SVD.hpp
 
diff --git a/docs/doxygen/html/dir_093b14450e434accd2cde91cedff0d18.js b/docs/doxygen/html/dir_093b14450e434accd2cde91cedff0d18.js index 6c3600900..a547f7fea 100644 --- a/docs/doxygen/html/dir_093b14450e434accd2cde91cedff0d18.js +++ b/docs/doxygen/html/dir_093b14450e434accd2cde91cedff0d18.js @@ -1,4 +1,4 @@ var dir_093b14450e434accd2cde91cedff0d18 = [ - [ "SVDClass.hpp", "_s_v_d_class_8hpp.html", "_s_v_d_class_8hpp" ] + [ "SVD.hpp", "svd_2svd_8hpp.html", "svd_2svd_8hpp" ] ]; \ No newline at end of file diff --git a/docs/doxygen/html/dir_0d1ba73aea39371457827a684d239ae8.html b/docs/doxygen/html/dir_0d1ba73aea39371457827a684d239ae8.html index 485ceca85..5abfcc6b5 100644 --- a/docs/doxygen/html/dir_0d1ba73aea39371457827a684d239ae8.html +++ b/docs/doxygen/html/dir_0d1ba73aea39371457827a684d239ae8.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_10b69f38d52e59bd23d9fc1937bea22a.html b/docs/doxygen/html/dir_10b69f38d52e59bd23d9fc1937bea22a.html index 5bb4b8dc6..295f5e066 100644 --- a/docs/doxygen/html/dir_10b69f38d52e59bd23d9fc1937bea22a.html +++ b/docs/doxygen/html/dir_10b69f38d52e59bd23d9fc1937bea22a.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_135bbb5e4eb4ddbda27ac0540001f7fd.html b/docs/doxygen/html/dir_135bbb5e4eb4ddbda27ac0540001f7fd.html index 77219e737..4a821da28 100644 --- a/docs/doxygen/html/dir_135bbb5e4eb4ddbda27ac0540001f7fd.html +++ b/docs/doxygen/html/dir_135bbb5e4eb4ddbda27ac0540001f7fd.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_22368e90b3593b912515c50bf54c969c.html b/docs/doxygen/html/dir_22368e90b3593b912515c50bf54c969c.html index ec6bc6da0..3b90b4097 100644 --- a/docs/doxygen/html/dir_22368e90b3593b912515c50bf54c969c.html +++ b/docs/doxygen/html/dir_22368e90b3593b912515c50bf54c969c.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_2e8552338a5fe196f81c9ab4a461b773.html b/docs/doxygen/html/dir_2e8552338a5fe196f81c9ab4a461b773.html index 90313a19c..6789b72c0 100644 --- a/docs/doxygen/html/dir_2e8552338a5fe196f81c9ab4a461b773.html +++ b/docs/doxygen/html/dir_2e8552338a5fe196f81c9ab4a461b773.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_34171bd951b13a53aa9f237277a18e40.html b/docs/doxygen/html/dir_34171bd951b13a53aa9f237277a18e40.html index 28fcef77d..a82248037 100644 --- a/docs/doxygen/html/dir_34171bd951b13a53aa9f237277a18e40.html +++ b/docs/doxygen/html/dir_34171bd951b13a53aa9f237277a18e40.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_3762e5d1d8eae0347117ff18be7f517d.html b/docs/doxygen/html/dir_3762e5d1d8eae0347117ff18be7f517d.html index 16482a860..7bfd55a29 100644 --- a/docs/doxygen/html/dir_3762e5d1d8eae0347117ff18be7f517d.html +++ b/docs/doxygen/html/dir_3762e5d1d8eae0347117ff18be7f517d.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_49e56c817e5e54854c35e136979f97ca.html b/docs/doxygen/html/dir_49e56c817e5e54854c35e136979f97ca.html index 5716702e7..526686762 100644 --- a/docs/doxygen/html/dir_49e56c817e5e54854c35e136979f97ca.html +++ b/docs/doxygen/html/dir_49e56c817e5e54854c35e136979f97ca.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_5cccc998a857696e320833db04811b65.html b/docs/doxygen/html/dir_5cccc998a857696e320833db04811b65.html index 90f97ff39..711ad5673 100644 --- a/docs/doxygen/html/dir_5cccc998a857696e320833db04811b65.html +++ b/docs/doxygen/html/dir_5cccc998a857696e320833db04811b65.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_5de075070a423c280ad6ed943802bf75.html b/docs/doxygen/html/dir_5de075070a423c280ad6ed943802bf75.html index 51d85a324..d2f46be9c 100644 --- a/docs/doxygen/html/dir_5de075070a423c280ad6ed943802bf75.html +++ b/docs/doxygen/html/dir_5de075070a423c280ad6ed943802bf75.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_6282b7c0ec828c4b60830a3c405ff9e8.html b/docs/doxygen/html/dir_6282b7c0ec828c4b60830a3c405ff9e8.html index 99b822472..ce015642d 100644 --- a/docs/doxygen/html/dir_6282b7c0ec828c4b60830a3c405ff9e8.html +++ b/docs/doxygen/html/dir_6282b7c0ec828c4b60830a3c405ff9e8.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_812c63cdb45b3d369433603c764d8ca4.html b/docs/doxygen/html/dir_812c63cdb45b3d369433603c764d8ca4.html index 4d8a6a058..74f24d51e 100644 --- a/docs/doxygen/html/dir_812c63cdb45b3d369433603c764d8ca4.html +++ b/docs/doxygen/html/dir_812c63cdb45b3d369433603c764d8ca4.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_821f0d92e31f34ac47de77ab611d6024.html b/docs/doxygen/html/dir_821f0d92e31f34ac47de77ab611d6024.html index 2e4491b51..8124bf305 100644 --- a/docs/doxygen/html/dir_821f0d92e31f34ac47de77ab611d6024.html +++ b/docs/doxygen/html/dir_821f0d92e31f34ac47de77ab611d6024.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_8e10c5302eb28a2724f15da9a6fa6b15.html b/docs/doxygen/html/dir_8e10c5302eb28a2724f15da9a6fa6b15.html index d2d28bb2b..a7bd20446 100644 --- a/docs/doxygen/html/dir_8e10c5302eb28a2724f15da9a6fa6b15.html +++ b/docs/doxygen/html/dir_8e10c5302eb28a2724f15da9a6fa6b15.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_9051d82ec7b39b1c992f5bf2868571ca.html b/docs/doxygen/html/dir_9051d82ec7b39b1c992f5bf2868571ca.html index ce5f01604..00f48ae5f 100644 --- a/docs/doxygen/html/dir_9051d82ec7b39b1c992f5bf2868571ca.html +++ b/docs/doxygen/html/dir_9051d82ec7b39b1c992f5bf2868571ca.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_953ac13dcbfb3e70ef6edb1a0956b929.html b/docs/doxygen/html/dir_953ac13dcbfb3e70ef6edb1a0956b929.html index c04bde307..fe11b8b2d 100644 --- a/docs/doxygen/html/dir_953ac13dcbfb3e70ef6edb1a0956b929.html +++ b/docs/doxygen/html/dir_953ac13dcbfb3e70ef6edb1a0956b929.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_a0b3eef1c4a290b815c33ad6e7027cf3.html b/docs/doxygen/html/dir_a0b3eef1c4a290b815c33ad6e7027cf3.html index 81876b77e..7a186209f 100644 --- a/docs/doxygen/html/dir_a0b3eef1c4a290b815c33ad6e7027cf3.html +++ b/docs/doxygen/html/dir_a0b3eef1c4a290b815c33ad6e7027cf3.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_ad9a75b0e29f8223a99c87bd9504b7c3.html b/docs/doxygen/html/dir_ad9a75b0e29f8223a99c87bd9504b7c3.html index 638534eba..484b94a2e 100644 --- a/docs/doxygen/html/dir_ad9a75b0e29f8223a99c87bd9504b7c3.html +++ b/docs/doxygen/html/dir_ad9a75b0e29f8223a99c87bd9504b7c3.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_b095eef7754acf39fdbf777c56c024ce.html b/docs/doxygen/html/dir_b095eef7754acf39fdbf777c56c024ce.html index bf6e7308b..ce2cd83c8 100644 --- a/docs/doxygen/html/dir_b095eef7754acf39fdbf777c56c024ce.html +++ b/docs/doxygen/html/dir_b095eef7754acf39fdbf777c56c024ce.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_b6a8313716ea291fbd26120862b344bc.html b/docs/doxygen/html/dir_b6a8313716ea291fbd26120862b344bc.html index 238f4574a..26da84a18 100644 --- a/docs/doxygen/html/dir_b6a8313716ea291fbd26120862b344bc.html +++ b/docs/doxygen/html/dir_b6a8313716ea291fbd26120862b344bc.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_cac3062759fc9841f0966ab05282555a.html b/docs/doxygen/html/dir_cac3062759fc9841f0966ab05282555a.html index b3d652cd8..ec10f5c8c 100644 --- a/docs/doxygen/html/dir_cac3062759fc9841f0966ab05282555a.html +++ b/docs/doxygen/html/dir_cac3062759fc9841f0966ab05282555a.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_ccac4f9986402d0375bdb0274c573e10.html b/docs/doxygen/html/dir_ccac4f9986402d0375bdb0274c573e10.html index 1a70f888d..d796db1c4 100644 --- a/docs/doxygen/html/dir_ccac4f9986402d0375bdb0274c573e10.html +++ b/docs/doxygen/html/dir_ccac4f9986402d0375bdb0274c573e10.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_d4391026049f7aede16e9c18d53d30b9.html b/docs/doxygen/html/dir_d4391026049f7aede16e9c18d53d30b9.html index 0d4f2cfa9..1d30ef986 100644 --- a/docs/doxygen/html/dir_d4391026049f7aede16e9c18d53d30b9.html +++ b/docs/doxygen/html/dir_d4391026049f7aede16e9c18d53d30b9.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_d44c64559bbebec7f509842c48db8b23.html b/docs/doxygen/html/dir_d44c64559bbebec7f509842c48db8b23.html index cbc0a72e1..be495a61c 100644 --- a/docs/doxygen/html/dir_d44c64559bbebec7f509842c48db8b23.html +++ b/docs/doxygen/html/dir_d44c64559bbebec7f509842c48db8b23.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_d784f51d362276329e5940df711baf3d.html b/docs/doxygen/html/dir_d784f51d362276329e5940df711baf3d.html index efe3d9f07..40cb9e3ad 100644 --- a/docs/doxygen/html/dir_d784f51d362276329e5940df711baf3d.html +++ b/docs/doxygen/html/dir_d784f51d362276329e5940df711baf3d.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -129,6 +129,10 @@    det.hpp   + eig.hpp +  + eigvals.hpp gaussNewtonNlls.hpp    hat.hpp @@ -151,6 +155,8 @@    svd.hpp   + svdvals.hpp
diff --git a/docs/doxygen/html/dir_d784f51d362276329e5940df711baf3d.js b/docs/doxygen/html/dir_d784f51d362276329e5940df711baf3d.js index 36c125a6c..767ca94b6 100644 --- a/docs/doxygen/html/dir_d784f51d362276329e5940df711baf3d.js +++ b/docs/doxygen/html/dir_d784f51d362276329e5940df711baf3d.js @@ -3,6 +3,8 @@ var dir_d784f51d362276329e5940df711baf3d = [ "svd", "dir_093b14450e434accd2cde91cedff0d18.html", "dir_093b14450e434accd2cde91cedff0d18" ], [ "cholesky.hpp", "cholesky_8hpp.html", "cholesky_8hpp" ], [ "det.hpp", "det_8hpp.html", "det_8hpp" ], + [ "eig.hpp", "eig_8hpp.html", "eig_8hpp" ], + [ "eigvals.hpp", "eigvals_8hpp.html", "eigvals_8hpp" ], [ "gaussNewtonNlls.hpp", "gauss_newton_nlls_8hpp.html", "gauss_newton_nlls_8hpp" ], [ "hat.hpp", "hat_8hpp.html", "hat_8hpp" ], [ "inv.hpp", "inv_8hpp.html", "inv_8hpp" ], @@ -13,5 +15,6 @@ var dir_d784f51d362276329e5940df711baf3d = [ "pinv.hpp", "pinv_8hpp.html", "pinv_8hpp" ], [ "pivotLU_decomposition.hpp", "pivot_l_u__decomposition_8hpp.html", "pivot_l_u__decomposition_8hpp" ], [ "solve.hpp", "solve_8hpp.html", "solve_8hpp" ], - [ "svd.hpp", "svd_8hpp.html", "svd_8hpp" ] + [ "svd.hpp", "svd_8hpp.html", "svd_8hpp" ], + [ "svdvals.hpp", "svdvals_8hpp.html", "svdvals_8hpp" ] ]; \ No newline at end of file diff --git a/docs/doxygen/html/dir_e70e3c350b58629b2f80cdf8725e71de.html b/docs/doxygen/html/dir_e70e3c350b58629b2f80cdf8725e71de.html index 8004a0639..a086ac7bb 100644 --- a/docs/doxygen/html/dir_e70e3c350b58629b2f80cdf8725e71de.html +++ b/docs/doxygen/html/dir_e70e3c350b58629b2f80cdf8725e71de.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_f27b6096a19b08ebde950a57474879cd.html b/docs/doxygen/html/dir_f27b6096a19b08ebde950a57474879cd.html index c0af0ab01..451df0830 100644 --- a/docs/doxygen/html/dir_f27b6096a19b08ebde950a57474879cd.html +++ b/docs/doxygen/html/dir_f27b6096a19b08ebde950a57474879cd.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_f7abd548f101bada8968797392787ec9.html b/docs/doxygen/html/dir_f7abd548f101bada8968797392787ec9.html index a1522bb9f..e1799cc8d 100644 --- a/docs/doxygen/html/dir_f7abd548f101bada8968797392787ec9.html +++ b/docs/doxygen/html/dir_f7abd548f101bada8968797392787ec9.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_f80dee9f889b1b78f4bee16631eb7d22.html b/docs/doxygen/html/dir_f80dee9f889b1b78f4bee16631eb7d22.html index 3ba2e8c15..bc2f0de4c 100644 --- a/docs/doxygen/html/dir_f80dee9f889b1b78f4bee16631eb7d22.html +++ b/docs/doxygen/html/dir_f80dee9f889b1b78f4bee16631eb7d22.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_f90046d65afb3a2155c6821b6375e74f.html b/docs/doxygen/html/dir_f90046d65afb3a2155c6821b6375e74f.html index e1aebfaa2..2dc577757 100644 --- a/docs/doxygen/html/dir_f90046d65afb3a2155c6821b6375e74f.html +++ b/docs/doxygen/html/dir_f90046d65afb3a2155c6821b6375e74f.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_fd15cf3044ef18c575a802718b3c6ac6.html b/docs/doxygen/html/dir_fd15cf3044ef18c575a802718b3c6ac6.html index 6cf89fb64..a7d62f3da 100644 --- a/docs/doxygen/html/dir_fd15cf3044ef18c575a802718b3c6ac6.html +++ b/docs/doxygen/html/dir_fd15cf3044ef18c575a802718b3c6ac6.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dir_fda794c261a16a342ab8761046b335b7.html b/docs/doxygen/html/dir_fda794c261a16a342ab8761046b335b7.html index a07448fba..5f965a45d 100644 --- a/docs/doxygen/html/dir_fda794c261a16a342ab8761046b335b7.html +++ b/docs/doxygen/html/dir_fda794c261a16a342ab8761046b335b7.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/discrete_8hpp.html b/docs/doxygen/html/discrete_8hpp.html index e9e16c402..ee326f49e 100644 --- a/docs/doxygen/html/discrete_8hpp.html +++ b/docs/doxygen/html/discrete_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/discrete_8hpp_source.html b/docs/doxygen/html/discrete_8hpp_source.html index 5f38c5f5d..6d474467c 100644 --- a/docs/doxygen/html/discrete_8hpp_source.html +++ b/docs/doxygen/html/discrete_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/divide_8hpp.html b/docs/doxygen/html/divide_8hpp.html index 00fa441ca..e5ac291b9 100644 --- a/docs/doxygen/html/divide_8hpp.html +++ b/docs/doxygen/html/divide_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/divide_8hpp_source.html b/docs/doxygen/html/divide_8hpp_source.html index c3ce5484a..35497e71f 100644 --- a/docs/doxygen/html/divide_8hpp_source.html +++ b/docs/doxygen/html/divide_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/divmod_8hpp.html b/docs/doxygen/html/divmod_8hpp.html index 4ae544a54..d6d8740b5 100644 --- a/docs/doxygen/html/divmod_8hpp.html +++ b/docs/doxygen/html/divmod_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/divmod_8hpp_source.html b/docs/doxygen/html/divmod_8hpp_source.html index 0e4a0abc4..b98d392b9 100644 --- a/docs/doxygen/html/divmod_8hpp_source.html +++ b/docs/doxygen/html/divmod_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dot_8hpp.html b/docs/doxygen/html/dot_8hpp.html index 49cf369e1..120ffdbc3 100644 --- a/docs/doxygen/html/dot_8hpp.html +++ b/docs/doxygen/html/dot_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dot_8hpp_source.html b/docs/doxygen/html/dot_8hpp_source.html index fe94894e4..a7bf5ae80 100644 --- a/docs/doxygen/html/dot_8hpp_source.html +++ b/docs/doxygen/html/dot_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dump_8hpp.html b/docs/doxygen/html/dump_8hpp.html index 04648d59e..e7efde0bd 100644 --- a/docs/doxygen/html/dump_8hpp.html +++ b/docs/doxygen/html/dump_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/dump_8hpp_source.html b/docs/doxygen/html/dump_8hpp_source.html index 8fcde38d4..65ab8199b 100644 --- a/docs/doxygen/html/dump_8hpp_source.html +++ b/docs/doxygen/html/dump_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/eig_8hpp.html b/docs/doxygen/html/eig_8hpp.html new file mode 100644 index 000000000..f98f0d791 --- /dev/null +++ b/docs/doxygen/html/eig_8hpp.html @@ -0,0 +1,161 @@ + + + + + + + + + NumCpp: eig.hpp File Reference + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+
NumCpp +  2.16.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
eig.hpp File Reference
+
+
+
#include <utility>
+#include "NumCpp/Core/Internal/StaticAsserts.hpp"
+#include "NumCpp/Functions/eye.hpp"
+#include "NumCpp/NdArray.hpp"
+#include "NumCpp/Utils/sqr.hpp"
+
+

Go to the source code of this file.

+ + + + + + +

+Namespaces

namespace  nc
 
namespace  nc::linalg
 
+ + + + +

+Functions

template<typename dtype >
std::pair< NdArray< double >, NdArray< double > > nc::linalg::eig (const NdArray< dtype > &inA, double inTolerance=1e-12)
 
+

Detailed Description

+
Author
David Pilger dpilg.nosp@m.er26.nosp@m.@gmai.nosp@m.l.co.nosp@m.m GitHub Repository
+

License Copyright 2018-2026 David Pilger

+

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions :

+

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

+

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+

Description linear least squares

+
+
+ + + + diff --git a/docs/doxygen/html/eig_8hpp.js b/docs/doxygen/html/eig_8hpp.js new file mode 100644 index 000000000..62e8a88a8 --- /dev/null +++ b/docs/doxygen/html/eig_8hpp.js @@ -0,0 +1,4 @@ +var eig_8hpp = +[ + [ "eig", "eig_8hpp.html#a1b037ada059b1292a794e6ffb1823a05", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/eig_8hpp_source.html b/docs/doxygen/html/eig_8hpp_source.html new file mode 100644 index 000000000..5de56e516 --- /dev/null +++ b/docs/doxygen/html/eig_8hpp_source.html @@ -0,0 +1,264 @@ + + + + + + + + + NumCpp: eig.hpp Source File + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+
NumCpp +  2.16.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
eig.hpp
+
+
+Go to the documentation of this file.
1
+
28#pragma once
+
29
+
30#include <utility>
+
31
+ + +
34#include "NumCpp/NdArray.hpp"
+
35#include "NumCpp/Utils/sqr.hpp"
+
36
+
37namespace nc::linalg
+
38{
+
39 //============================================================================
+
40 // Method Description:
+
52 template<typename dtype>
+
+
53 std::pair<NdArray<double>, NdArray<double>> eig(const NdArray<dtype>& inA, double inTolerance = 1e-12)
+
54 {
+ +
56
+
57 if (!inA.issquare())
+
58 {
+
59 THROW_INVALID_ARGUMENT_ERROR("Input array must be square.");
+
60 }
+
61
+
62 const auto n = inA.numRows();
+
63 auto b = inA.template astype<double>();
+ +
65 auto eigenVals = NdArray<double>(1, n);
+
66
+
67 constexpr auto MAX_ITERATIONS = 10000;
+
68 for (auto iter = 0u; iter < MAX_ITERATIONS; ++iter)
+
69 {
+
70 auto max_off_diag = 0.;
+
71 auto p = 0u;
+
72 auto q = 1u;
+
73
+
74 for (auto i = 0u; i < n; i++)
+
75 {
+
76 for (auto j = i + 1; j < n; j++)
+
77 {
+
78 const auto val = std::fabs(b(i, j));
+
79 if (val > max_off_diag)
+
80 {
+ +
82 p = i;
+
83 q = j;
+
84 }
+
85 }
+
86 }
+
87
+ +
89 {
+
90 break;
+
91 }
+
92
+
93 const auto app = b(p, p);
+
94 const auto aqq = b(q, q);
+
95 const auto apq = b(p, q);
+
96
+
97 const auto theta = (aqq - app) / (2. * apq);
+
98 const auto onePlusThetaSqr = std::sqrt(1. + utils::sqr(theta));
+
99 const auto t = (theta >= 0.) ? 1. / (theta + onePlusThetaSqr) : 1. / (theta - onePlusThetaSqr);
+
100 const auto c = 1.0 / std::sqrt(1. + utils::sqr(t));
+
101 const auto s = t * c;
+
102
+
103 for (auto i = 0u; i < n; ++i)
+
104 {
+
105 if (i != p && i != q)
+
106 {
+
107 const auto bip = b(i, p);
+
108 const auto biq = b(i, q);
+
109 b(i, p) = c * bip - s * biq;
+
110 b(p, i) = b(i, p);
+
111 b(i, q) = s * bip + c * biq;
+
112 b(q, i) = b(i, q);
+
113 }
+
114 }
+
115
+
116 b(p, p) = c * c * app + s * s * aqq - 2. * c * s * apq;
+
117 b(q, q) = s * s * app + c * c * aqq + 2. * c * s * apq;
+
118 b(p, q) = 0.;
+
119 b(q, p) = 0.;
+
120
+
121 for (auto i = 0u; i < n; ++i)
+
122 {
+
123 const auto vip = eigenVectors(i, p);
+
124 const auto viq = eigenVectors(i, q);
+
125 eigenVectors(i, p) = c * vip - s * viq;
+
126 eigenVectors(i, q) = s * vip + c * viq;
+
127 }
+
128 }
+
129
+
130 for (auto i = 0u; i < n; ++i)
+
131 {
+
132 eigenVals[i] = b(i, i);
+
133 }
+
134
+
135 for (auto i = 0u; i < n - 1; ++i)
+
136 {
+
137 for (auto j = i + 1; j < n; ++j)
+
138 {
+
139 if (eigenVals[i] < eigenVals[j])
+
140 {
+
141 std::swap(eigenVals[i], eigenVals[j]);
+
142
+
143 for (auto k = 0u; k < n; ++k)
+
144 {
+
145 std::swap(eigenVectors(k, i), eigenVectors(k, j));
+
146 }
+
147 }
+
148 }
+
149 }
+
150
+
151 return std::make_pair(eigenVals, eigenVectors);
+
152 }
+
+
153} // namespace nc::linalg
+
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition Error.hpp:37
+ + +
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition StaticAsserts.hpp:39
+
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition NdArrayCore.hpp:139
+ +
Definition cholesky.hpp:41
+
std::pair< NdArray< double >, NdArray< double > > eig(const NdArray< dtype > &inA, double inTolerance=1e-12)
Definition eig.hpp:53
+
constexpr dtype sqr(dtype inValue) noexcept
Definition sqr.hpp:42
+
NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
Definition arange.hpp:59
+ +
+
+ + + + diff --git a/docs/doxygen/html/eigvals_8hpp.html b/docs/doxygen/html/eigvals_8hpp.html new file mode 100644 index 000000000..7a3edbc16 --- /dev/null +++ b/docs/doxygen/html/eigvals_8hpp.html @@ -0,0 +1,159 @@ + + + + + + + + + NumCpp: eigvals.hpp File Reference + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+
NumCpp +  2.16.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
eigvals.hpp File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + + +

+Namespaces

namespace  nc
 
namespace  nc::linalg
 
+ + + + +

+Functions

template<typename dtype >
NdArray< doublenc::linalg::eigvals (const NdArray< dtype > &inA, double inTolerance=1e-12)
 
+

Detailed Description

+
Author
David Pilger dpilg.nosp@m.er26.nosp@m.@gmai.nosp@m.l.co.nosp@m.m GitHub Repository
+

License Copyright 2018-2026 David Pilger

+

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions :

+

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

+

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+

Description linear least squares

+
+
+ + + + diff --git a/docs/doxygen/html/eigvals_8hpp.js b/docs/doxygen/html/eigvals_8hpp.js new file mode 100644 index 000000000..2bf404f8e --- /dev/null +++ b/docs/doxygen/html/eigvals_8hpp.js @@ -0,0 +1,4 @@ +var eigvals_8hpp = +[ + [ "eigvals", "eigvals_8hpp.html#a2853cd2015993be7a86f9ba823601ca6", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/eigvals_8hpp_source.html b/docs/doxygen/html/eigvals_8hpp_source.html new file mode 100644 index 000000000..49a58da50 --- /dev/null +++ b/docs/doxygen/html/eigvals_8hpp_source.html @@ -0,0 +1,167 @@ + + + + + + + + + NumCpp: eigvals.hpp Source File + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + +
+
NumCpp +  2.16.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
eigvals.hpp
+
+
+Go to the documentation of this file.
1
+
28#pragma once
+
29
+ +
31#include "NumCpp/Linalg/eig.hpp"
+
32#include "NumCpp/NdArray.hpp"
+
33
+
34namespace nc::linalg
+
35{
+
36 //============================================================================
+
37 // Method Description:
+
49 template<typename dtype>
+
+ +
51 {
+ +
53
+
54 const auto& [eigenValues, _] = eig(inA, inTolerance);
+
55
+
56 return eigenValues;
+
57 }
+
+
58} // namespace nc::linalg
+ + +
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition StaticAsserts.hpp:39
+
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition NdArrayCore.hpp:139
+ +
Definition cholesky.hpp:41
+
std::pair< NdArray< double >, NdArray< double > > eig(const NdArray< dtype > &inA, double inTolerance=1e-12)
Definition eig.hpp:53
+
NdArray< double > eigvals(const NdArray< dtype > &inA, double inTolerance=1e-12)
Definition eigvals.hpp:50
+
NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
Definition arange.hpp:59
+
+
+ + + + diff --git a/docs/doxygen/html/ellint__1_8hpp.html b/docs/doxygen/html/ellint__1_8hpp.html index 36cc39c9d..f1bab6f3b 100644 --- a/docs/doxygen/html/ellint__1_8hpp.html +++ b/docs/doxygen/html/ellint__1_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/ellint__1_8hpp_source.html b/docs/doxygen/html/ellint__1_8hpp_source.html index 987d37e6c..247c01e55 100644 --- a/docs/doxygen/html/ellint__1_8hpp_source.html +++ b/docs/doxygen/html/ellint__1_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/ellint__2_8hpp.html b/docs/doxygen/html/ellint__2_8hpp.html index 0d53d0fd9..fe4cb86e1 100644 --- a/docs/doxygen/html/ellint__2_8hpp.html +++ b/docs/doxygen/html/ellint__2_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/ellint__2_8hpp_source.html b/docs/doxygen/html/ellint__2_8hpp_source.html index ec38ef894..00066c8e8 100644 --- a/docs/doxygen/html/ellint__2_8hpp_source.html +++ b/docs/doxygen/html/ellint__2_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/ellint__3_8hpp.html b/docs/doxygen/html/ellint__3_8hpp.html index 6f4f461bf..ca719e3e7 100644 --- a/docs/doxygen/html/ellint__3_8hpp.html +++ b/docs/doxygen/html/ellint__3_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/ellint__3_8hpp_source.html b/docs/doxygen/html/ellint__3_8hpp_source.html index 0b896df7f..3a0dd5120 100644 --- a/docs/doxygen/html/ellint__3_8hpp_source.html +++ b/docs/doxygen/html/ellint__3_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/empty_8hpp.html b/docs/doxygen/html/empty_8hpp.html index b270bbd6b..cfb456679 100644 --- a/docs/doxygen/html/empty_8hpp.html +++ b/docs/doxygen/html/empty_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/empty_8hpp_source.html b/docs/doxygen/html/empty_8hpp_source.html index 72e078da3..f318820ba 100644 --- a/docs/doxygen/html/empty_8hpp_source.html +++ b/docs/doxygen/html/empty_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/empty__like_8hpp.html b/docs/doxygen/html/empty__like_8hpp.html index f721f9442..825c27393 100644 --- a/docs/doxygen/html/empty__like_8hpp.html +++ b/docs/doxygen/html/empty__like_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/empty__like_8hpp_source.html b/docs/doxygen/html/empty__like_8hpp_source.html index 36919ad85..58f854ca1 100644 --- a/docs/doxygen/html/empty__like_8hpp_source.html +++ b/docs/doxygen/html/empty__like_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/endianess_8hpp.html b/docs/doxygen/html/endianess_8hpp.html index a85df51b3..65fabbc1e 100644 --- a/docs/doxygen/html/endianess_8hpp.html +++ b/docs/doxygen/html/endianess_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/endianess_8hpp_source.html b/docs/doxygen/html/endianess_8hpp_source.html index a9c678bc6..4d745cc17 100644 --- a/docs/doxygen/html/endianess_8hpp_source.html +++ b/docs/doxygen/html/endianess_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/equal_8hpp.html b/docs/doxygen/html/equal_8hpp.html index aa06b1f5b..47b99d681 100644 --- a/docs/doxygen/html/equal_8hpp.html +++ b/docs/doxygen/html/equal_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/equal_8hpp_source.html b/docs/doxygen/html/equal_8hpp_source.html index abbac65ed..802fb3a9d 100644 --- a/docs/doxygen/html/equal_8hpp_source.html +++ b/docs/doxygen/html/equal_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/erf_8hpp.html b/docs/doxygen/html/erf_8hpp.html index e6eb2224c..9edde358e 100644 --- a/docs/doxygen/html/erf_8hpp.html +++ b/docs/doxygen/html/erf_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/erf_8hpp_source.html b/docs/doxygen/html/erf_8hpp_source.html index cdf613238..d1de14b9e 100644 --- a/docs/doxygen/html/erf_8hpp_source.html +++ b/docs/doxygen/html/erf_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/erf__inv_8hpp.html b/docs/doxygen/html/erf__inv_8hpp.html index ca222ba38..a878b57ea 100644 --- a/docs/doxygen/html/erf__inv_8hpp.html +++ b/docs/doxygen/html/erf__inv_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/erf__inv_8hpp_source.html b/docs/doxygen/html/erf__inv_8hpp_source.html index 97dcf871b..3d966b408 100644 --- a/docs/doxygen/html/erf__inv_8hpp_source.html +++ b/docs/doxygen/html/erf__inv_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/erfc_8hpp.html b/docs/doxygen/html/erfc_8hpp.html index a0c917837..5526a659a 100644 --- a/docs/doxygen/html/erfc_8hpp.html +++ b/docs/doxygen/html/erfc_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/erfc_8hpp_source.html b/docs/doxygen/html/erfc_8hpp_source.html index d8e8907af..6dd8b094b 100644 --- a/docs/doxygen/html/erfc_8hpp_source.html +++ b/docs/doxygen/html/erfc_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/erfc__inv_8hpp.html b/docs/doxygen/html/erfc__inv_8hpp.html index 2dbe16883..e0cdeb779 100644 --- a/docs/doxygen/html/erfc__inv_8hpp.html +++ b/docs/doxygen/html/erfc__inv_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/erfc__inv_8hpp_source.html b/docs/doxygen/html/erfc__inv_8hpp_source.html index 82119ac53..713dda8a8 100644 --- a/docs/doxygen/html/erfc__inv_8hpp_source.html +++ b/docs/doxygen/html/erfc__inv_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/essentially_equal_8hpp.html b/docs/doxygen/html/essentially_equal_8hpp.html index 1ef1f8900..d0519da3b 100644 --- a/docs/doxygen/html/essentially_equal_8hpp.html +++ b/docs/doxygen/html/essentially_equal_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/essentially_equal_8hpp_source.html b/docs/doxygen/html/essentially_equal_8hpp_source.html index 7f0e680f0..378f4ff5b 100644 --- a/docs/doxygen/html/essentially_equal_8hpp_source.html +++ b/docs/doxygen/html/essentially_equal_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/essentially_equal_complex_8hpp.html b/docs/doxygen/html/essentially_equal_complex_8hpp.html index 0d7401ffc..a696915e1 100644 --- a/docs/doxygen/html/essentially_equal_complex_8hpp.html +++ b/docs/doxygen/html/essentially_equal_complex_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/essentially_equal_complex_8hpp_source.html b/docs/doxygen/html/essentially_equal_complex_8hpp_source.html index 11a105e7f..92f53d31d 100644 --- a/docs/doxygen/html/essentially_equal_complex_8hpp_source.html +++ b/docs/doxygen/html/essentially_equal_complex_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/examples.html b/docs/doxygen/html/examples.html index 565a612f0..844780820 100644 --- a/docs/doxygen/html/examples.html +++ b/docs/doxygen/html/examples.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/exp2_8hpp.html b/docs/doxygen/html/exp2_8hpp.html index 4d765dca8..e1cd4844f 100644 --- a/docs/doxygen/html/exp2_8hpp.html +++ b/docs/doxygen/html/exp2_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/exp2_8hpp_source.html b/docs/doxygen/html/exp2_8hpp_source.html index e00d8b24d..0c44912f7 100644 --- a/docs/doxygen/html/exp2_8hpp_source.html +++ b/docs/doxygen/html/exp2_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/exp_8hpp.html b/docs/doxygen/html/exp_8hpp.html index be3e4d7e4..61e932c76 100644 --- a/docs/doxygen/html/exp_8hpp.html +++ b/docs/doxygen/html/exp_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/exp_8hpp_source.html b/docs/doxygen/html/exp_8hpp_source.html index 05b72776b..0d0f48914 100644 --- a/docs/doxygen/html/exp_8hpp_source.html +++ b/docs/doxygen/html/exp_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/expint_8hpp.html b/docs/doxygen/html/expint_8hpp.html index 7b1300c72..e071bbcd0 100644 --- a/docs/doxygen/html/expint_8hpp.html +++ b/docs/doxygen/html/expint_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/expint_8hpp_source.html b/docs/doxygen/html/expint_8hpp_source.html index 712ff9655..1a84965d2 100644 --- a/docs/doxygen/html/expint_8hpp_source.html +++ b/docs/doxygen/html/expint_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/expm1_8hpp.html b/docs/doxygen/html/expm1_8hpp.html index d2602a629..f9f808acf 100644 --- a/docs/doxygen/html/expm1_8hpp.html +++ b/docs/doxygen/html/expm1_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/expm1_8hpp_source.html b/docs/doxygen/html/expm1_8hpp_source.html index 396ca35f6..75257e355 100644 --- a/docs/doxygen/html/expm1_8hpp_source.html +++ b/docs/doxygen/html/expm1_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/exponential_8hpp.html b/docs/doxygen/html/exponential_8hpp.html index 8d9361617..8b725b33f 100644 --- a/docs/doxygen/html/exponential_8hpp.html +++ b/docs/doxygen/html/exponential_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/exponential_8hpp_source.html b/docs/doxygen/html/exponential_8hpp_source.html index abb204aa8..f1800319c 100644 --- a/docs/doxygen/html/exponential_8hpp_source.html +++ b/docs/doxygen/html/exponential_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/extract_8hpp.html b/docs/doxygen/html/extract_8hpp.html index ce98ba233..2032de71b 100644 --- a/docs/doxygen/html/extract_8hpp.html +++ b/docs/doxygen/html/extract_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/extract_8hpp_source.html b/docs/doxygen/html/extract_8hpp_source.html index b455eac61..9d399c59e 100644 --- a/docs/doxygen/html/extract_8hpp_source.html +++ b/docs/doxygen/html/extract_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/extreme_value_8hpp.html b/docs/doxygen/html/extreme_value_8hpp.html index 4515f2ce1..746e975bc 100644 --- a/docs/doxygen/html/extreme_value_8hpp.html +++ b/docs/doxygen/html/extreme_value_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/extreme_value_8hpp_source.html b/docs/doxygen/html/extreme_value_8hpp_source.html index 51478c257..25a6d4015 100644 --- a/docs/doxygen/html/extreme_value_8hpp_source.html +++ b/docs/doxygen/html/extreme_value_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/eye_8hpp.html b/docs/doxygen/html/eye_8hpp.html index f2279a8ba..b2eaec67d 100644 --- a/docs/doxygen/html/eye_8hpp.html +++ b/docs/doxygen/html/eye_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/eye_8hpp_source.html b/docs/doxygen/html/eye_8hpp_source.html index 63fa58cfe..76141d1ec 100644 --- a/docs/doxygen/html/eye_8hpp_source.html +++ b/docs/doxygen/html/eye_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/f_8hpp.html b/docs/doxygen/html/f_8hpp.html index 48f61454a..3dfabd74f 100644 --- a/docs/doxygen/html/f_8hpp.html +++ b/docs/doxygen/html/f_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/f_8hpp_source.html b/docs/doxygen/html/f_8hpp_source.html index ebe86135d..af9edc780 100644 --- a/docs/doxygen/html/f_8hpp_source.html +++ b/docs/doxygen/html/f_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/factorial_8hpp.html b/docs/doxygen/html/factorial_8hpp.html index 1d88eb1f1..07b3a56cf 100644 --- a/docs/doxygen/html/factorial_8hpp.html +++ b/docs/doxygen/html/factorial_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/factorial_8hpp_source.html b/docs/doxygen/html/factorial_8hpp_source.html index 44104393e..2546cb434 100644 --- a/docs/doxygen/html/factorial_8hpp_source.html +++ b/docs/doxygen/html/factorial_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fft2_8hpp.html b/docs/doxygen/html/fft2_8hpp.html index 336a5a044..df6346fe3 100644 --- a/docs/doxygen/html/fft2_8hpp.html +++ b/docs/doxygen/html/fft2_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fft2_8hpp_source.html b/docs/doxygen/html/fft2_8hpp_source.html index 89ba71e08..d49533cdb 100644 --- a/docs/doxygen/html/fft2_8hpp_source.html +++ b/docs/doxygen/html/fft2_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fftfreq_8hpp.html b/docs/doxygen/html/fftfreq_8hpp.html index fc10e7fe2..e2469473a 100644 --- a/docs/doxygen/html/fftfreq_8hpp.html +++ b/docs/doxygen/html/fftfreq_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fftfreq_8hpp_source.html b/docs/doxygen/html/fftfreq_8hpp_source.html index d78d44911..b41f5aedc 100644 --- a/docs/doxygen/html/fftfreq_8hpp_source.html +++ b/docs/doxygen/html/fftfreq_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fftshift_8hpp.html b/docs/doxygen/html/fftshift_8hpp.html index 0a5d22cb5..fbb261435 100644 --- a/docs/doxygen/html/fftshift_8hpp.html +++ b/docs/doxygen/html/fftshift_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fftshift_8hpp_source.html b/docs/doxygen/html/fftshift_8hpp_source.html index f175fad23..7694aa525 100644 --- a/docs/doxygen/html/fftshift_8hpp_source.html +++ b/docs/doxygen/html/fftshift_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/files.html b/docs/doxygen/html/files.html index 0d5724f67..acef02365 100644 --- a/docs/doxygen/html/files.html +++ b/docs/doxygen/html/files.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -533,20 +533,23 @@  trapazoidal.hpp   Linalg   svd - SVDClass.hpp + SVD.hpp  cholesky.hpp  det.hpp - gaussNewtonNlls.hpp - hat.hpp - inv.hpp - lstsq.hpp - lu_decomposition.hpp - matrix_power.hpp - multi_dot.hpp - pinv.hpp - pivotLU_decomposition.hpp - solve.hpp - svd.hpp + eig.hpp + eigvals.hpp + gaussNewtonNlls.hpp + hat.hpp + inv.hpp + lstsq.hpp + lu_decomposition.hpp + matrix_power.hpp + multi_dot.hpp + pinv.hpp + pivotLU_decomposition.hpp + solve.hpp + svd.hpp + svdvals.hpp   Logging  BinaryLogger.hpp  Logger.hpp diff --git a/docs/doxygen/html/fill_corners_8hpp.html b/docs/doxygen/html/fill_corners_8hpp.html index 9258300c5..74591615d 100644 --- a/docs/doxygen/html/fill_corners_8hpp.html +++ b/docs/doxygen/html/fill_corners_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fill_corners_8hpp_source.html b/docs/doxygen/html/fill_corners_8hpp_source.html index db1a9e06a..35fe563cd 100644 --- a/docs/doxygen/html/fill_corners_8hpp_source.html +++ b/docs/doxygen/html/fill_corners_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fill_diagnol_8hpp.html b/docs/doxygen/html/fill_diagnol_8hpp.html index 926597d5e..a99759b37 100644 --- a/docs/doxygen/html/fill_diagnol_8hpp.html +++ b/docs/doxygen/html/fill_diagnol_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fill_diagnol_8hpp_source.html b/docs/doxygen/html/fill_diagnol_8hpp_source.html index 6170abc50..d9388838d 100644 --- a/docs/doxygen/html/fill_diagnol_8hpp_source.html +++ b/docs/doxygen/html/fill_diagnol_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/find_8hpp.html b/docs/doxygen/html/find_8hpp.html index cb3fe40b7..8d38e356c 100644 --- a/docs/doxygen/html/find_8hpp.html +++ b/docs/doxygen/html/find_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/find_8hpp_source.html b/docs/doxygen/html/find_8hpp_source.html index 931ecb4ae..32eaedf27 100644 --- a/docs/doxygen/html/find_8hpp_source.html +++ b/docs/doxygen/html/find_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/find__duplicates_8hpp.html b/docs/doxygen/html/find__duplicates_8hpp.html index be6ba1bb6..36cc8e200 100644 --- a/docs/doxygen/html/find__duplicates_8hpp.html +++ b/docs/doxygen/html/find__duplicates_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/find__duplicates_8hpp_source.html b/docs/doxygen/html/find__duplicates_8hpp_source.html index 470af5bba..e43e96c75 100644 --- a/docs/doxygen/html/find__duplicates_8hpp_source.html +++ b/docs/doxygen/html/find__duplicates_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fix_8hpp.html b/docs/doxygen/html/fix_8hpp.html index beca6ef8f..1ace4d3d6 100644 --- a/docs/doxygen/html/fix_8hpp.html +++ b/docs/doxygen/html/fix_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fix_8hpp_source.html b/docs/doxygen/html/fix_8hpp_source.html index aabacdf47..6ad7f310d 100644 --- a/docs/doxygen/html/fix_8hpp_source.html +++ b/docs/doxygen/html/fix_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/flatnonzero_8hpp.html b/docs/doxygen/html/flatnonzero_8hpp.html index c4b09a433..c0c3d82a4 100644 --- a/docs/doxygen/html/flatnonzero_8hpp.html +++ b/docs/doxygen/html/flatnonzero_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/flatnonzero_8hpp_source.html b/docs/doxygen/html/flatnonzero_8hpp_source.html index c5b780eb3..624b32008 100644 --- a/docs/doxygen/html/flatnonzero_8hpp_source.html +++ b/docs/doxygen/html/flatnonzero_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/flatten_8hpp.html b/docs/doxygen/html/flatten_8hpp.html index a434774a5..4efb472da 100644 --- a/docs/doxygen/html/flatten_8hpp.html +++ b/docs/doxygen/html/flatten_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/flatten_8hpp_source.html b/docs/doxygen/html/flatten_8hpp_source.html index e927a1c85..1fca90bc1 100644 --- a/docs/doxygen/html/flatten_8hpp_source.html +++ b/docs/doxygen/html/flatten_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/flip_8hpp.html b/docs/doxygen/html/flip_8hpp.html index 9390f0900..ef21e9e20 100644 --- a/docs/doxygen/html/flip_8hpp.html +++ b/docs/doxygen/html/flip_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/flip_8hpp_source.html b/docs/doxygen/html/flip_8hpp_source.html index 93705914c..b2c9d1303 100644 --- a/docs/doxygen/html/flip_8hpp_source.html +++ b/docs/doxygen/html/flip_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fliplr_8hpp.html b/docs/doxygen/html/fliplr_8hpp.html index 3babdf35d..0ad397e0d 100644 --- a/docs/doxygen/html/fliplr_8hpp.html +++ b/docs/doxygen/html/fliplr_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fliplr_8hpp_source.html b/docs/doxygen/html/fliplr_8hpp_source.html index afd6ec2a7..790cbe4eb 100644 --- a/docs/doxygen/html/fliplr_8hpp_source.html +++ b/docs/doxygen/html/fliplr_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/flipud_8hpp.html b/docs/doxygen/html/flipud_8hpp.html index 8c75ebb6f..9bf0ace35 100644 --- a/docs/doxygen/html/flipud_8hpp.html +++ b/docs/doxygen/html/flipud_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/flipud_8hpp_source.html b/docs/doxygen/html/flipud_8hpp_source.html index ea48c52ec..7e001d9d7 100644 --- a/docs/doxygen/html/flipud_8hpp_source.html +++ b/docs/doxygen/html/flipud_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/floor_8hpp.html b/docs/doxygen/html/floor_8hpp.html index b1b9c74f4..2488db6be 100644 --- a/docs/doxygen/html/floor_8hpp.html +++ b/docs/doxygen/html/floor_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/floor_8hpp_source.html b/docs/doxygen/html/floor_8hpp_source.html index 5328ebfa9..b5706a322 100644 --- a/docs/doxygen/html/floor_8hpp_source.html +++ b/docs/doxygen/html/floor_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/floor__divide_8hpp.html b/docs/doxygen/html/floor__divide_8hpp.html index aeb6e82f8..64df53195 100644 --- a/docs/doxygen/html/floor__divide_8hpp.html +++ b/docs/doxygen/html/floor__divide_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/floor__divide_8hpp_source.html b/docs/doxygen/html/floor__divide_8hpp_source.html index 497d80001..4aa1c0ced 100644 --- a/docs/doxygen/html/floor__divide_8hpp_source.html +++ b/docs/doxygen/html/floor__divide_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fmax_8hpp.html b/docs/doxygen/html/fmax_8hpp.html index 6189bedd0..4c7f9ad88 100644 --- a/docs/doxygen/html/fmax_8hpp.html +++ b/docs/doxygen/html/fmax_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fmax_8hpp_source.html b/docs/doxygen/html/fmax_8hpp_source.html index b99446f83..093015670 100644 --- a/docs/doxygen/html/fmax_8hpp_source.html +++ b/docs/doxygen/html/fmax_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fmin_8hpp.html b/docs/doxygen/html/fmin_8hpp.html index 45f7b3c5d..ac5173ca7 100644 --- a/docs/doxygen/html/fmin_8hpp.html +++ b/docs/doxygen/html/fmin_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fmin_8hpp_source.html b/docs/doxygen/html/fmin_8hpp_source.html index ce2f6627b..74d4b04a6 100644 --- a/docs/doxygen/html/fmin_8hpp_source.html +++ b/docs/doxygen/html/fmin_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fmod_8hpp.html b/docs/doxygen/html/fmod_8hpp.html index 8421414bf..e08a70565 100644 --- a/docs/doxygen/html/fmod_8hpp.html +++ b/docs/doxygen/html/fmod_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fmod_8hpp_source.html b/docs/doxygen/html/fmod_8hpp_source.html index 9a23679c6..2a4715717 100644 --- a/docs/doxygen/html/fmod_8hpp_source.html +++ b/docs/doxygen/html/fmod_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/frombuffer_8hpp.html b/docs/doxygen/html/frombuffer_8hpp.html index c24c80042..3a382cd5c 100644 --- a/docs/doxygen/html/frombuffer_8hpp.html +++ b/docs/doxygen/html/frombuffer_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/frombuffer_8hpp_source.html b/docs/doxygen/html/frombuffer_8hpp_source.html index 42b30ba5e..06bc19d48 100644 --- a/docs/doxygen/html/frombuffer_8hpp_source.html +++ b/docs/doxygen/html/frombuffer_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fromfile_8hpp.html b/docs/doxygen/html/fromfile_8hpp.html index 11d2e894a..b35bca658 100644 --- a/docs/doxygen/html/fromfile_8hpp.html +++ b/docs/doxygen/html/fromfile_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fromfile_8hpp_source.html b/docs/doxygen/html/fromfile_8hpp_source.html index d8a0c5b7d..8ea909fa8 100644 --- a/docs/doxygen/html/fromfile_8hpp_source.html +++ b/docs/doxygen/html/fromfile_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fromfunction_8hpp.html b/docs/doxygen/html/fromfunction_8hpp.html index 96ef9d629..12a9421b4 100644 --- a/docs/doxygen/html/fromfunction_8hpp.html +++ b/docs/doxygen/html/fromfunction_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fromfunction_8hpp_source.html b/docs/doxygen/html/fromfunction_8hpp_source.html index 719fb4f12..d4e6102c8 100644 --- a/docs/doxygen/html/fromfunction_8hpp_source.html +++ b/docs/doxygen/html/fromfunction_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fromiter_8hpp.html b/docs/doxygen/html/fromiter_8hpp.html index 3376c2fcc..68071dfd6 100644 --- a/docs/doxygen/html/fromiter_8hpp.html +++ b/docs/doxygen/html/fromiter_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fromiter_8hpp_source.html b/docs/doxygen/html/fromiter_8hpp_source.html index 5af08228b..fed384b67 100644 --- a/docs/doxygen/html/fromiter_8hpp_source.html +++ b/docs/doxygen/html/fromiter_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fromstring_8hpp.html b/docs/doxygen/html/fromstring_8hpp.html index 11ff750c0..8173d3113 100644 --- a/docs/doxygen/html/fromstring_8hpp.html +++ b/docs/doxygen/html/fromstring_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/fromstring_8hpp_source.html b/docs/doxygen/html/fromstring_8hpp_source.html index ef42047d3..6778ed80c 100644 --- a/docs/doxygen/html/fromstring_8hpp_source.html +++ b/docs/doxygen/html/fromstring_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/full_8hpp.html b/docs/doxygen/html/full_8hpp.html index 7bc6da6f9..6a4a17446 100644 --- a/docs/doxygen/html/full_8hpp.html +++ b/docs/doxygen/html/full_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/full_8hpp_source.html b/docs/doxygen/html/full_8hpp_source.html index ae6397284..dbd5bb8f4 100644 --- a/docs/doxygen/html/full_8hpp_source.html +++ b/docs/doxygen/html/full_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/full__like_8hpp.html b/docs/doxygen/html/full__like_8hpp.html index aca4b6669..47857e10a 100644 --- a/docs/doxygen/html/full__like_8hpp.html +++ b/docs/doxygen/html/full__like_8hpp.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/full__like_8hpp_source.html b/docs/doxygen/html/full__like_8hpp_source.html index a4e459446..7a7ddc891 100644 --- a/docs/doxygen/html/full__like_8hpp_source.html +++ b/docs/doxygen/html/full__like_8hpp_source.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions.html b/docs/doxygen/html/functions.html index 75fe4524b..ceede4910 100644 --- a/docs/doxygen/html/functions.html +++ b/docs/doxygen/html/functions.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_b.html b/docs/doxygen/html/functions_b.html index 9dc69570f..0c75ce6a6 100644 --- a/docs/doxygen/html/functions_b.html +++ b/docs/doxygen/html/functions_b.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_c.html b/docs/doxygen/html/functions_c.html index 59d9c11f5..ecd45d0c2 100644 --- a/docs/doxygen/html/functions_c.html +++ b/docs/doxygen/html/functions_c.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_d.html b/docs/doxygen/html/functions_d.html index 1c0086090..e88578414 100644 --- a/docs/doxygen/html/functions_d.html +++ b/docs/doxygen/html/functions_d.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_e.html b/docs/doxygen/html/functions_e.html index f49620258..176069478 100644 --- a/docs/doxygen/html/functions_e.html +++ b/docs/doxygen/html/functions_e.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_enum.html b/docs/doxygen/html/functions_enum.html index f1a3a5f7e..6914b1af7 100644 --- a/docs/doxygen/html/functions_enum.html +++ b/docs/doxygen/html/functions_enum.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_f.html b/docs/doxygen/html/functions_f.html index fcc64080e..d2d040145 100644 --- a/docs/doxygen/html/functions_f.html +++ b/docs/doxygen/html/functions_f.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func.html b/docs/doxygen/html/functions_func.html index c911e2c05..1411f2241 100644 --- a/docs/doxygen/html/functions_func.html +++ b/docs/doxygen/html/functions_func.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_b.html b/docs/doxygen/html/functions_func_b.html index cd4f5a616..4e04d936e 100644 --- a/docs/doxygen/html/functions_func_b.html +++ b/docs/doxygen/html/functions_func_b.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_c.html b/docs/doxygen/html/functions_func_c.html index fc5ac8157..6cd9f31b6 100644 --- a/docs/doxygen/html/functions_func_c.html +++ b/docs/doxygen/html/functions_func_c.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_d.html b/docs/doxygen/html/functions_func_d.html index a320d5bd0..b6dd55691 100644 --- a/docs/doxygen/html/functions_func_d.html +++ b/docs/doxygen/html/functions_func_d.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_e.html b/docs/doxygen/html/functions_func_e.html index e1beb652a..1ac40a141 100644 --- a/docs/doxygen/html/functions_func_e.html +++ b/docs/doxygen/html/functions_func_e.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_f.html b/docs/doxygen/html/functions_func_f.html index 02f628688..a43da71b4 100644 --- a/docs/doxygen/html/functions_func_f.html +++ b/docs/doxygen/html/functions_func_f.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_g.html b/docs/doxygen/html/functions_func_g.html index fa669dc9e..4e97ac68c 100644 --- a/docs/doxygen/html/functions_func_g.html +++ b/docs/doxygen/html/functions_func_g.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_h.html b/docs/doxygen/html/functions_func_h.html index ec385a56c..ddd75b6cb 100644 --- a/docs/doxygen/html/functions_func_h.html +++ b/docs/doxygen/html/functions_func_h.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_i.html b/docs/doxygen/html/functions_func_i.html index 761a0e622..aedb4c5aa 100644 --- a/docs/doxygen/html/functions_func_i.html +++ b/docs/doxygen/html/functions_func_i.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_j.html b/docs/doxygen/html/functions_func_j.html index 9cef1ba67..1573c055d 100644 --- a/docs/doxygen/html/functions_func_j.html +++ b/docs/doxygen/html/functions_func_j.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_k.html b/docs/doxygen/html/functions_func_k.html index 6987a9cb2..5050087e3 100644 --- a/docs/doxygen/html/functions_func_k.html +++ b/docs/doxygen/html/functions_func_k.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_l.html b/docs/doxygen/html/functions_func_l.html index 2fbe20828..082d50123 100644 --- a/docs/doxygen/html/functions_func_l.html +++ b/docs/doxygen/html/functions_func_l.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -124,6 +124,7 @@

- l -

diff --git a/docs/doxygen/html/functions_func_m.html b/docs/doxygen/html/functions_func_m.html index 2a05ddcaf..0fe4db140 100644 --- a/docs/doxygen/html/functions_func_m.html +++ b/docs/doxygen/html/functions_func_m.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_n.html b/docs/doxygen/html/functions_func_n.html index 826f33478..d94d2265d 100644 --- a/docs/doxygen/html/functions_func_n.html +++ b/docs/doxygen/html/functions_func_n.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_o.html b/docs/doxygen/html/functions_func_o.html index c45683ab0..edd947970 100644 --- a/docs/doxygen/html/functions_func_o.html +++ b/docs/doxygen/html/functions_func_o.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
diff --git a/docs/doxygen/html/functions_func_p.html b/docs/doxygen/html/functions_func_p.html index 78ac7f3a5..a32b838b9 100644 --- a/docs/doxygen/html/functions_func_p.html +++ b/docs/doxygen/html/functions_func_p.html @@ -50,7 +50,7 @@ Logo
NumCpp -  2.15.0 +  2.16.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -120,6 +120,7 @@

- p -

  • partition() : nc::NdArray< dtype, Allocator >
  • peakPixelIntensity() : nc::imageProcessing::Cluster< dtype >
  • permutation() : nc::random::RNG< GeneratorType >
  • +
  • pinv() : nc::linalg::SVD< dtype >
  • pitch() : nc::rotations::DCM, nc::rotations::Quaternion
  • pitchRotation() : nc::rotations::Quaternion
  • Pixel() : nc::imageProcessing::Pixel< dtype >
  • @@ -131,7 +132,7 @@

    - p -

    diff --git a/docs/doxygen/html/functions_func_q.html b/docs/doxygen/html/functions_func_q.html index c2a36bd20..322297c55 100644 --- a/docs/doxygen/html/functions_func_q.html +++ b/docs/doxygen/html/functions_func_q.html @@ -50,7 +50,7 @@ Logo
    NumCpp -  2.15.0 +  2.16.0
    A Templatized Header Only C++ Implementation of the Python NumPy Library
    diff --git a/docs/doxygen/html/functions_func_r.html b/docs/doxygen/html/functions_func_r.html index 18a0b637b..019091866 100644 --- a/docs/doxygen/html/functions_func_r.html +++ b/docs/doxygen/html/functions_func_r.html @@ -50,7 +50,7 @@ Logo
    NumCpp -  2.15.0 +  2.16.0
    A Templatized Header Only C++ Implementation of the Python NumPy Library
    @@ -118,7 +118,7 @@

    - r -

    • ra() : nc::coordinates::reference_frames::Celestial
    • -
    • RA() : nc::coordinates::reference_frames::RA
    • +
    • RA() : nc::coordinates::reference_frames::RA
    • radians() : nc::coordinates::reference_frames::Dec, nc::coordinates::reference_frames::RA
    • radianSeperation() : nc::coordinates::reference_frames::Celestial
    • rand() : nc::random::RNG< GeneratorType >
    • diff --git a/docs/doxygen/html/functions_func_s.html b/docs/doxygen/html/functions_func_s.html index f32df9d7a..e85899f6e 100644 --- a/docs/doxygen/html/functions_func_s.html +++ b/docs/doxygen/html/functions_func_s.html @@ -50,7 +50,7 @@ Logo
      NumCpp -  2.15.0 +  2.16.0
      A Templatized Header Only C++ Implementation of the Python NumPy Library
      @@ -117,7 +117,7 @@
      Here is a list of all functions with links to the structures/unions they belong to:

      - s -

        -
      • s() : nc::linalg::SVD, nc::rotations::Quaternion
      • +
      • s() : nc::linalg::SVD< dtype >, nc::rotations::Quaternion
      • Secant() : nc::roots::Secant
      • second() : nc::DateTime
      • seconds() : nc::coordinates::reference_frames::Dec, nc::coordinates::reference_frames::RA
      • @@ -148,14 +148,15 @@

        - s -

        • sliceZAll() : nc::DataCube< dtype >
        • sliceZAllat() : nc::DataCube< dtype >
        • sliceZat() : nc::DataCube< dtype >
        • -
        • solve() : nc::linalg::SVD, nc::roots::Bisection, nc::roots::Brent, nc::roots::Dekker, nc::roots::Newton, nc::roots::Secant
        • +
        • solve() : nc::roots::Bisection, nc::roots::Brent, nc::roots::Dekker, nc::roots::Newton, nc::roots::Secant
        • sort() : nc::NdArray< dtype, Allocator >
        • -
        • standardNormal() : nc::random::RNG< GeneratorType >
        • +
        • standardNormal() : nc::random::RNG< GeneratorType >
        • +
        • STATIC_ASSERT_ARITHMETIC() : nc::linalg::SVD< dtype >
        • str() : nc::coordinates::reference_frames::Celestial, nc::coordinates::reference_frames::Dec, nc::coordinates::reference_frames::RA, nc::imageProcessing::Centroid< dtype >, nc::imageProcessing::Cluster< dtype >, nc::imageProcessing::Pixel< dtype >, nc::NdArray< dtype, Allocator >, nc::polynomial::Poly1d< dtype >, nc::rotations::Quaternion, nc::Shape, nc::Slice
        • strToTimepoint() : nc::DateTime
        • studentT() : nc::random::RNG< GeneratorType >
        • sum() : nc::NdArray< dtype, Allocator >
        • -
        • SVD() : nc::linalg::SVD
        • +
        • SVD() : nc::linalg::SVD< dtype >
        • swapaxes() : nc::NdArray< dtype, Allocator >
        • swapCols() : nc::NdArray< dtype, Allocator >
        • swapRows() : nc::NdArray< dtype, Allocator >
        • diff --git a/docs/doxygen/html/functions_func_t.html b/docs/doxygen/html/functions_func_t.html index f9726a369..32e521041 100644 --- a/docs/doxygen/html/functions_func_t.html +++ b/docs/doxygen/html/functions_func_t.html @@ -50,7 +50,7 @@ Logo
          NumCpp -  2.15.0 +  2.16.0
          A Templatized Header Only C++ Implementation of the Python NumPy Library
          diff --git a/docs/doxygen/html/functions_func_u.html b/docs/doxygen/html/functions_func_u.html index ebab6dfbe..2fbd4ec36 100644 --- a/docs/doxygen/html/functions_func_u.html +++ b/docs/doxygen/html/functions_func_u.html @@ -50,7 +50,7 @@ Logo
          NumCpp -  2.15.0 +  2.16.0
          A Templatized Header Only C++ Implementation of the Python NumPy Library
          @@ -117,7 +117,7 @@
          Here is a list of all functions with links to the structures/unions they belong to:

          - u -

            -
          • u() : nc::linalg::SVD
          • +
          • u() : nc::linalg::SVD< dtype >
          • uniform() : nc::random::RNG< GeneratorType >
          • uniformOnSphere() : nc::random::RNG< GeneratorType >
          • up() : nc::coordinates::reference_frames::ENU, nc::Vec2, nc::Vec3
          • diff --git a/docs/doxygen/html/functions_func_v.html b/docs/doxygen/html/functions_func_v.html index e184d378c..f2bd357e4 100644 --- a/docs/doxygen/html/functions_func_v.html +++ b/docs/doxygen/html/functions_func_v.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            @@ -117,7 +117,7 @@
            Here is a list of all functions with links to the structures/unions they belong to:

            - v -

            diff --git a/docs/doxygen/html/functions_func_w.html b/docs/doxygen/html/functions_func_w.html index aba058aba..4959b4050 100644 --- a/docs/doxygen/html/functions_func_w.html +++ b/docs/doxygen/html/functions_func_w.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_func_x.html b/docs/doxygen/html/functions_func_x.html index 485c426b2..e5a6a2eeb 100644 --- a/docs/doxygen/html/functions_func_x.html +++ b/docs/doxygen/html/functions_func_x.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_func_y.html b/docs/doxygen/html/functions_func_y.html index a52b6b37b..8c0899765 100644 --- a/docs/doxygen/html/functions_func_y.html +++ b/docs/doxygen/html/functions_func_y.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_func_z.html b/docs/doxygen/html/functions_func_z.html index dd494d7d2..8e1798c57 100644 --- a/docs/doxygen/html/functions_func_z.html +++ b/docs/doxygen/html/functions_func_z.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_func_~.html b/docs/doxygen/html/functions_func_~.html index 693517176..fc6f3ea10 100644 --- a/docs/doxygen/html/functions_func_~.html +++ b/docs/doxygen/html/functions_func_~.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_g.html b/docs/doxygen/html/functions_g.html index 217ab1dcf..108cb530e 100644 --- a/docs/doxygen/html/functions_g.html +++ b/docs/doxygen/html/functions_g.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_h.html b/docs/doxygen/html/functions_h.html index 5286e9fe1..3f4970577 100644 --- a/docs/doxygen/html/functions_h.html +++ b/docs/doxygen/html/functions_h.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_i.html b/docs/doxygen/html/functions_i.html index f3d269efd..8859d4009 100644 --- a/docs/doxygen/html/functions_i.html +++ b/docs/doxygen/html/functions_i.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_j.html b/docs/doxygen/html/functions_j.html index eeb508893..be7da0f4f 100644 --- a/docs/doxygen/html/functions_j.html +++ b/docs/doxygen/html/functions_j.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_k.html b/docs/doxygen/html/functions_k.html index 2c55f39d3..c13cac328 100644 --- a/docs/doxygen/html/functions_k.html +++ b/docs/doxygen/html/functions_k.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_l.html b/docs/doxygen/html/functions_l.html index c0324017d..48c8f2684 100644 --- a/docs/doxygen/html/functions_l.html +++ b/docs/doxygen/html/functions_l.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            @@ -127,6 +127,7 @@

            - l -

            diff --git a/docs/doxygen/html/functions_m.html b/docs/doxygen/html/functions_m.html index 346cc727e..b4e226687 100644 --- a/docs/doxygen/html/functions_m.html +++ b/docs/doxygen/html/functions_m.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_n.html b/docs/doxygen/html/functions_n.html index 83caf56b6..c7f92900b 100644 --- a/docs/doxygen/html/functions_n.html +++ b/docs/doxygen/html/functions_n.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_o.html b/docs/doxygen/html/functions_o.html index a4e396ab3..5ab6f807a 100644 --- a/docs/doxygen/html/functions_o.html +++ b/docs/doxygen/html/functions_o.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            diff --git a/docs/doxygen/html/functions_p.html b/docs/doxygen/html/functions_p.html index 051128cb9..f9dc9f2ce 100644 --- a/docs/doxygen/html/functions_p.html +++ b/docs/doxygen/html/functions_p.html @@ -50,7 +50,7 @@ Logo
            NumCpp -  2.15.0 +  2.16.0
            A Templatized Header Only C++ Implementation of the Python NumPy Library
            @@ -121,6 +121,7 @@

            - p -

            • peakPixelIntensity() : nc::imageProcessing::Cluster< dtype >
            • permutation() : nc::random::RNG< GeneratorType >
            • phi : nc::coordinates::Euler
            • +
            • pinv() : nc::linalg::SVD< dtype >
            • pitch : nc::coordinates::Orientation, nc::rotations::DCM, nc::rotations::Quaternion
            • pitchRotation() : nc::rotations::Quaternion
            • Pixel() : nc::imageProcessing::Pixel< dtype >
            • diff --git a/docs/doxygen/html/functions_q.html b/docs/doxygen/html/functions_q.html index 54eac61c9..8f15fcb9a 100644 --- a/docs/doxygen/html/functions_q.html +++ b/docs/doxygen/html/functions_q.html @@ -50,7 +50,7 @@ Logo
              NumCpp -  2.15.0 +  2.16.0
              A Templatized Header Only C++ Implementation of the Python NumPy Library
              diff --git a/docs/doxygen/html/functions_r.html b/docs/doxygen/html/functions_r.html index 7288e3556..e4f1bdfe2 100644 --- a/docs/doxygen/html/functions_r.html +++ b/docs/doxygen/html/functions_r.html @@ -50,7 +50,7 @@ Logo
              NumCpp -  2.15.0 +  2.16.0
              A Templatized Header Only C++ Implementation of the Python NumPy Library
              @@ -118,7 +118,7 @@

              - r -

              • ra() : nc::coordinates::reference_frames::Celestial
              • -
              • RA() : nc::coordinates::reference_frames::RA
              • +
              • RA() : nc::coordinates::reference_frames::RA
              • radians() : nc::coordinates::reference_frames::Dec, nc::coordinates::reference_frames::RA
              • radianSeperation() : nc::coordinates::reference_frames::Celestial
              • radius : nc::coordinates::reference_frames::Geocentric
              • diff --git a/docs/doxygen/html/functions_rela.html b/docs/doxygen/html/functions_rela.html index 9538391dd..32108d599 100644 --- a/docs/doxygen/html/functions_rela.html +++ b/docs/doxygen/html/functions_rela.html @@ -50,7 +50,7 @@ Logo
                NumCpp -  2.15.0 +  2.16.0
                A Templatized Header Only C++ Implementation of the Python NumPy Library
                diff --git a/docs/doxygen/html/functions_s.html b/docs/doxygen/html/functions_s.html index 42fd67946..8b33987f1 100644 --- a/docs/doxygen/html/functions_s.html +++ b/docs/doxygen/html/functions_s.html @@ -50,7 +50,7 @@ Logo
                NumCpp -  2.15.0 +  2.16.0
                A Templatized Header Only C++ Implementation of the Python NumPy Library
                @@ -117,7 +117,7 @@
                Here is a list of all struct and union fields with links to the structures/unions they belong to:

                - s -

                  -
                • s() : nc::linalg::SVD, nc::rotations::Quaternion
                • +
                • s() : nc::linalg::SVD< dtype >, nc::rotations::Quaternion
                • Secant() : nc::roots::Secant
                • second() : nc::DateTime
                • seconds() : nc::coordinates::reference_frames::Dec, nc::coordinates::reference_frames::RA
                • @@ -137,10 +137,10 @@

                  - s -

                  • setUp() : nc::coordinates::reference_frames::ENU
                  • setYear() : nc::DateTime
                  • shape() : nc::DataCube< dtype >, nc::NdArray< dtype, Allocator >
                  • -
                  • Shape() : nc::Shape
                  • +
                  • Shape() : nc::Shape
                  • shuffle() : nc::random::RNG< GeneratorType >
                  • -
                  • Sign : nc::coordinates::reference_frames::Dec
                  • sign() : nc::coordinates::reference_frames::Dec
                  • +
                  • Sign : nc::coordinates::reference_frames::Dec
                  • size() : nc::imageProcessing::Cluster< dtype >, nc::imageProcessing::ClusterMaker< dtype >, nc::NdArray< dtype, Allocator >, nc::Shape
                  • size_type : nc::NdArray< dtype, Allocator >, nc::NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >, nc::NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType >
                  • sizeZ() : nc::DataCube< dtype >
                  • @@ -151,17 +151,18 @@

                    - s -

                    • sliceZAll() : nc::DataCube< dtype >
                    • sliceZAllat() : nc::DataCube< dtype >
                    • sliceZat() : nc::DataCube< dtype >
                    • -
                    • solve() : nc::linalg::SVD, nc::roots::Bisection, nc::roots::Brent, nc::roots::Dekker, nc::roots::Newton, nc::roots::Secant
                    • +
                    • solve() : nc::roots::Bisection, nc::roots::Brent, nc::roots::Dekker, nc::roots::Newton, nc::roots::Secant
                    • sort() : nc::NdArray< dtype, Allocator >
                    • -
                    • standardNormal() : nc::random::RNG< GeneratorType >
                    • +
                    • standardNormal() : nc::random::RNG< GeneratorType >
                    • start : nc::Slice
                    • +
                    • STATIC_ASSERT_ARITHMETIC() : nc::linalg::SVD< dtype >
                    • step : nc::Slice
                    • stop : nc::Slice
                    • str() : nc::coordinates::reference_frames::Celestial, nc::coordinates::reference_frames::Dec, nc::coordinates::reference_frames::RA, nc::imageProcessing::Centroid< dtype >, nc::imageProcessing::Cluster< dtype >, nc::imageProcessing::Pixel< dtype >, nc::NdArray< dtype, Allocator >, nc::polynomial::Poly1d< dtype >, nc::rotations::Quaternion, nc::Shape, nc::Slice
                    • strToTimepoint() : nc::DateTime
                    • studentT() : nc::random::RNG< GeneratorType >
                    • sum() : nc::NdArray< dtype, Allocator >
                    • -
                    • SVD() : nc::linalg::SVD
                    • +
                    • SVD() : nc::linalg::SVD< dtype >
                    • swapaxes() : nc::NdArray< dtype, Allocator >
                    • swapCols() : nc::NdArray< dtype, Allocator >
                    • swapRows() : nc::NdArray< dtype, Allocator >
                    • diff --git a/docs/doxygen/html/functions_t.html b/docs/doxygen/html/functions_t.html index d2fdb4dd7..925633ae7 100644 --- a/docs/doxygen/html/functions_t.html +++ b/docs/doxygen/html/functions_t.html @@ -50,7 +50,7 @@ Logo
                      NumCpp -  2.15.0 +  2.16.0
                      A Templatized Header Only C++ Implementation of the Python NumPy Library
                      @@ -125,6 +125,7 @@

                      - t -

                      • toDCM() : nc::rotations::Quaternion
                      • tofile() : nc::NdArray< dtype, Allocator >
                      • toIndices() : nc::NdArray< dtype, Allocator >, nc::Slice
                      • +
                      • TOLERANCE : nc::linalg::SVD< dtype >
                      • toNdArray() : nc::rotations::Quaternion, nc::Vec2, nc::Vec3
                      • toStlVector() : nc::NdArray< dtype, Allocator >
                      • toStr() : nc::DateTime
                      • diff --git a/docs/doxygen/html/functions_type.html b/docs/doxygen/html/functions_type.html index 54208c087..bfedf1aed 100644 --- a/docs/doxygen/html/functions_type.html +++ b/docs/doxygen/html/functions_type.html @@ -50,7 +50,7 @@ Logo
                        NumCpp -  2.15.0 +  2.16.0
                        A Templatized Header Only C++ Implementation of the Python NumPy Library
                        diff --git a/docs/doxygen/html/functions_u.html b/docs/doxygen/html/functions_u.html index 13f19c9bc..c6740bb62 100644 --- a/docs/doxygen/html/functions_u.html +++ b/docs/doxygen/html/functions_u.html @@ -50,7 +50,7 @@ Logo
                        NumCpp -  2.15.0 +  2.16.0
                        A Templatized Header Only C++ Implementation of the Python NumPy Library
                        @@ -117,7 +117,7 @@
                        Here is a list of all struct and union fields with links to the structures/unions they belong to:

                        - u -

                          -
                        • u() : nc::linalg::SVD
                        • +
                        • u() : nc::linalg::SVD< dtype >
                        • uniform() : nc::random::RNG< GeneratorType >
                        • uniformOnSphere() : nc::random::RNG< GeneratorType >
                        • up() : nc::coordinates::reference_frames::ENU, nc::Vec2, nc::Vec3
                        • diff --git a/docs/doxygen/html/functions_v.html b/docs/doxygen/html/functions_v.html index 494e1244e..0863297e0 100644 --- a/docs/doxygen/html/functions_v.html +++ b/docs/doxygen/html/functions_v.html @@ -50,7 +50,7 @@ Logo
                          NumCpp -  2.15.0 +  2.16.0
                          A Templatized Header Only C++ Implementation of the Python NumPy Library
                          @@ -117,7 +117,7 @@
                          Here is a list of all struct and union fields with links to the structures/unions they belong to:

                          - v -

                            -
                          • v() : nc::linalg::SVD
                          • +
                          • v() : nc::linalg::SVD< dtype >
                          • value : nc::all_arithmetic< Head, Tail... >, nc::all_arithmetic< T >, nc::all_same< T1, Head, Tail... >, nc::all_same< T1, T2 >, nc::greaterThan< Value1, Value2 >, nc::is_complex< T >, nc::is_complex< std::complex< T > >, nc::is_ndarray_int< NdArray< dtype, Allocator > >, nc::is_valid_dtype< dtype >, nc::logger::detail::type_traits::has_serialize< DataType, typename >, nc::logger::detail::type_traits::has_serialize< DataType, std::void_t< std::enable_if_t< std::is_same_v< serialize_t< DataType >, std::string >, int > > >, nc::type_traits::is_ndarray_int< NdArray< dtype, Allocator > >, nc::type_traits::is_ndarray_signed_int< NdArray< dtype, Allocator > >
                          • value_type : nc::logger::detail::BinaryDataLogger< DataType >, nc::NdArray< dtype, Allocator >, nc::NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >, nc::NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType >, nc::NdArrayConstIterator< dtype, PointerType, DifferenceType >, nc::NdArrayIterator< dtype, PointerType, DifferenceType >
                          • Vec2() : nc::Vec2
                          • diff --git a/docs/doxygen/html/functions_vars.html b/docs/doxygen/html/functions_vars.html index 49ce90027..49aea45f0 100644 --- a/docs/doxygen/html/functions_vars.html +++ b/docs/doxygen/html/functions_vars.html @@ -50,7 +50,7 @@ Logo
                            NumCpp -  2.15.0 +  2.16.0
                            A Templatized Header Only C++ Implementation of the Python NumPy Library
                            @@ -196,6 +196,7 @@

                            - s -

                              - t -

                              diff --git a/docs/doxygen/html/functions_w.html b/docs/doxygen/html/functions_w.html index d9874b7df..a1d03e246 100644 --- a/docs/doxygen/html/functions_w.html +++ b/docs/doxygen/html/functions_w.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/functions_x.html b/docs/doxygen/html/functions_x.html index f8bcabff0..441cbcd16 100644 --- a/docs/doxygen/html/functions_x.html +++ b/docs/doxygen/html/functions_x.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/functions_y.html b/docs/doxygen/html/functions_y.html index 686d39b51..02bae97a8 100644 --- a/docs/doxygen/html/functions_y.html +++ b/docs/doxygen/html/functions_y.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/functions_z.html b/docs/doxygen/html/functions_z.html index ad2c11314..4deeede20 100644 --- a/docs/doxygen/html/functions_z.html +++ b/docs/doxygen/html/functions_z.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/functions_~.html b/docs/doxygen/html/functions_~.html index f197b0216..21ee5a376 100644 --- a/docs/doxygen/html/functions_~.html +++ b/docs/doxygen/html/functions_~.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gamma1pm1_8hpp.html b/docs/doxygen/html/gamma1pm1_8hpp.html index 5577e8b0e..98003ac77 100644 --- a/docs/doxygen/html/gamma1pm1_8hpp.html +++ b/docs/doxygen/html/gamma1pm1_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gamma1pm1_8hpp_source.html b/docs/doxygen/html/gamma1pm1_8hpp_source.html index 777ef7703..9fdc8f6ec 100644 --- a/docs/doxygen/html/gamma1pm1_8hpp_source.html +++ b/docs/doxygen/html/gamma1pm1_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gauss__legendre_8hpp.html b/docs/doxygen/html/gauss__legendre_8hpp.html index c48a2d876..b5331c63c 100644 --- a/docs/doxygen/html/gauss__legendre_8hpp.html +++ b/docs/doxygen/html/gauss__legendre_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gauss__legendre_8hpp_source.html b/docs/doxygen/html/gauss__legendre_8hpp_source.html index e5b118351..05a1f8a06 100644 --- a/docs/doxygen/html/gauss__legendre_8hpp_source.html +++ b/docs/doxygen/html/gauss__legendre_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gauss_newton_nlls_8hpp.html b/docs/doxygen/html/gauss_newton_nlls_8hpp.html index b876802e4..d0ffc6109 100644 --- a/docs/doxygen/html/gauss_newton_nlls_8hpp.html +++ b/docs/doxygen/html/gauss_newton_nlls_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gauss_newton_nlls_8hpp_source.html b/docs/doxygen/html/gauss_newton_nlls_8hpp_source.html index 5a2c609c3..8aa39f7cc 100644 --- a/docs/doxygen/html/gauss_newton_nlls_8hpp_source.html +++ b/docs/doxygen/html/gauss_newton_nlls_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gaussian1d_8hpp.html b/docs/doxygen/html/gaussian1d_8hpp.html index d00df0e33..99de730bb 100644 --- a/docs/doxygen/html/gaussian1d_8hpp.html +++ b/docs/doxygen/html/gaussian1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gaussian1d_8hpp_source.html b/docs/doxygen/html/gaussian1d_8hpp_source.html index 0431a88af..1cacc5832 100644 --- a/docs/doxygen/html/gaussian1d_8hpp_source.html +++ b/docs/doxygen/html/gaussian1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gaussian_8hpp.html b/docs/doxygen/html/gaussian_8hpp.html index 4e34b0c39..6d90976bd 100644 --- a/docs/doxygen/html/gaussian_8hpp.html +++ b/docs/doxygen/html/gaussian_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gaussian_8hpp_source.html b/docs/doxygen/html/gaussian_8hpp_source.html index 3335d5be2..5046f2a85 100644 --- a/docs/doxygen/html/gaussian_8hpp_source.html +++ b/docs/doxygen/html/gaussian_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gaussian_filter1d_8hpp.html b/docs/doxygen/html/gaussian_filter1d_8hpp.html index 1d1b75bb1..be5c79a21 100644 --- a/docs/doxygen/html/gaussian_filter1d_8hpp.html +++ b/docs/doxygen/html/gaussian_filter1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gaussian_filter1d_8hpp_source.html b/docs/doxygen/html/gaussian_filter1d_8hpp_source.html index c37a0f0c6..2d732d805 100644 --- a/docs/doxygen/html/gaussian_filter1d_8hpp_source.html +++ b/docs/doxygen/html/gaussian_filter1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gaussian_filter_8hpp.html b/docs/doxygen/html/gaussian_filter_8hpp.html index 4673f8c65..2f5fe27f6 100644 --- a/docs/doxygen/html/gaussian_filter_8hpp.html +++ b/docs/doxygen/html/gaussian_filter_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gaussian_filter_8hpp_source.html b/docs/doxygen/html/gaussian_filter_8hpp_source.html index 6e3888816..34158da87 100644 --- a/docs/doxygen/html/gaussian_filter_8hpp_source.html +++ b/docs/doxygen/html/gaussian_filter_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gcd_8hpp.html b/docs/doxygen/html/gcd_8hpp.html index 2ca0fc95f..683faa609 100644 --- a/docs/doxygen/html/gcd_8hpp.html +++ b/docs/doxygen/html/gcd_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gcd_8hpp_source.html b/docs/doxygen/html/gcd_8hpp_source.html index 2ef154123..8c32b4941 100644 --- a/docs/doxygen/html/gcd_8hpp_source.html +++ b/docs/doxygen/html/gcd_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/generate_centroids_8hpp.html b/docs/doxygen/html/generate_centroids_8hpp.html index 0f277d220..089f1fae9 100644 --- a/docs/doxygen/html/generate_centroids_8hpp.html +++ b/docs/doxygen/html/generate_centroids_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/generate_centroids_8hpp_source.html b/docs/doxygen/html/generate_centroids_8hpp_source.html index 048b3dd35..9632f31b1 100644 --- a/docs/doxygen/html/generate_centroids_8hpp_source.html +++ b/docs/doxygen/html/generate_centroids_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/generate_threshold_8hpp.html b/docs/doxygen/html/generate_threshold_8hpp.html index e7c03f09f..ee8333535 100644 --- a/docs/doxygen/html/generate_threshold_8hpp.html +++ b/docs/doxygen/html/generate_threshold_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/generate_threshold_8hpp_source.html b/docs/doxygen/html/generate_threshold_8hpp_source.html index 7a8bbb9a2..437650468 100644 --- a/docs/doxygen/html/generate_threshold_8hpp_source.html +++ b/docs/doxygen/html/generate_threshold_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/generator_8hpp.html b/docs/doxygen/html/generator_8hpp.html index 02eb7a7f5..87b44d2ed 100644 --- a/docs/doxygen/html/generator_8hpp.html +++ b/docs/doxygen/html/generator_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/generator_8hpp_source.html b/docs/doxygen/html/generator_8hpp_source.html index d18875824..ac41ea929 100644 --- a/docs/doxygen/html/generator_8hpp_source.html +++ b/docs/doxygen/html/generator_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/geocentric_radius_8hpp.html b/docs/doxygen/html/geocentric_radius_8hpp.html index f088d1167..4047b8add 100644 --- a/docs/doxygen/html/geocentric_radius_8hpp.html +++ b/docs/doxygen/html/geocentric_radius_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/geocentric_radius_8hpp_source.html b/docs/doxygen/html/geocentric_radius_8hpp_source.html index 570884f35..2c254a51b 100644 --- a/docs/doxygen/html/geocentric_radius_8hpp_source.html +++ b/docs/doxygen/html/geocentric_radius_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/geocentric_to_l_l_a_8hpp.html b/docs/doxygen/html/geocentric_to_l_l_a_8hpp.html index 5318746bc..a8782501f 100644 --- a/docs/doxygen/html/geocentric_to_l_l_a_8hpp.html +++ b/docs/doxygen/html/geocentric_to_l_l_a_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/geocentric_to_l_l_a_8hpp_source.html b/docs/doxygen/html/geocentric_to_l_l_a_8hpp_source.html index ca93f1c54..9e81dc5d9 100644 --- a/docs/doxygen/html/geocentric_to_l_l_a_8hpp_source.html +++ b/docs/doxygen/html/geocentric_to_l_l_a_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/geometric_8hpp.html b/docs/doxygen/html/geometric_8hpp.html index 3d6a4f9dd..86a670a49 100644 --- a/docs/doxygen/html/geometric_8hpp.html +++ b/docs/doxygen/html/geometric_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/geometric_8hpp_source.html b/docs/doxygen/html/geometric_8hpp_source.html index 650062f97..e6906c113 100644 --- a/docs/doxygen/html/geometric_8hpp_source.html +++ b/docs/doxygen/html/geometric_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/geomspace_8hpp.html b/docs/doxygen/html/geomspace_8hpp.html index d94900f39..0d7248b2d 100644 --- a/docs/doxygen/html/geomspace_8hpp.html +++ b/docs/doxygen/html/geomspace_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/geomspace_8hpp_source.html b/docs/doxygen/html/geomspace_8hpp_source.html index 5245c5a57..9b8c0f97a 100644 --- a/docs/doxygen/html/geomspace_8hpp_source.html +++ b/docs/doxygen/html/geomspace_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/globals.html b/docs/doxygen/html/globals.html index 287029f29..44e496132 100644 --- a/docs/doxygen/html/globals.html +++ b/docs/doxygen/html/globals.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/globals_defs.html b/docs/doxygen/html/globals_defs.html index 77bb2acc9..da05a2695 100644 --- a/docs/doxygen/html/globals_defs.html +++ b/docs/doxygen/html/globals_defs.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gradient_8hpp.html b/docs/doxygen/html/gradient_8hpp.html index 403d32da8..cc170ed8c 100644 --- a/docs/doxygen/html/gradient_8hpp.html +++ b/docs/doxygen/html/gradient_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/gradient_8hpp_source.html b/docs/doxygen/html/gradient_8hpp_source.html index de36f94c8..8346ff808 100644 --- a/docs/doxygen/html/gradient_8hpp_source.html +++ b/docs/doxygen/html/gradient_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/greater_8hpp.html b/docs/doxygen/html/greater_8hpp.html index f8caedf5c..58caa4787 100644 --- a/docs/doxygen/html/greater_8hpp.html +++ b/docs/doxygen/html/greater_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/greater_8hpp_source.html b/docs/doxygen/html/greater_8hpp_source.html index 67e0f66a8..2267b98d4 100644 --- a/docs/doxygen/html/greater_8hpp_source.html +++ b/docs/doxygen/html/greater_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/greater__equal_8hpp.html b/docs/doxygen/html/greater__equal_8hpp.html index ae4ffe301..c42ceece1 100644 --- a/docs/doxygen/html/greater__equal_8hpp.html +++ b/docs/doxygen/html/greater__equal_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/greater__equal_8hpp_source.html b/docs/doxygen/html/greater__equal_8hpp_source.html index 914d7001b..402c85205 100644 --- a/docs/doxygen/html/greater__equal_8hpp_source.html +++ b/docs/doxygen/html/greater__equal_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hamming_8hpp.html b/docs/doxygen/html/hamming_8hpp.html index fc12a7267..c8bcb3754 100644 --- a/docs/doxygen/html/hamming_8hpp.html +++ b/docs/doxygen/html/hamming_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hamming_8hpp_source.html b/docs/doxygen/html/hamming_8hpp_source.html index 6afa189fe..c6e3636e3 100644 --- a/docs/doxygen/html/hamming_8hpp_source.html +++ b/docs/doxygen/html/hamming_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hamming_encode_8hpp.html b/docs/doxygen/html/hamming_encode_8hpp.html index e39ae8655..eda9e52dc 100644 --- a/docs/doxygen/html/hamming_encode_8hpp.html +++ b/docs/doxygen/html/hamming_encode_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hamming_encode_8hpp_source.html b/docs/doxygen/html/hamming_encode_8hpp_source.html index 410357732..1dc1e6e76 100644 --- a/docs/doxygen/html/hamming_encode_8hpp_source.html +++ b/docs/doxygen/html/hamming_encode_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hanning_8hpp.html b/docs/doxygen/html/hanning_8hpp.html index 77b2f9acb..a66a3da5b 100644 --- a/docs/doxygen/html/hanning_8hpp.html +++ b/docs/doxygen/html/hanning_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hanning_8hpp_source.html b/docs/doxygen/html/hanning_8hpp_source.html index 4728018c2..be0a20762 100644 --- a/docs/doxygen/html/hanning_8hpp_source.html +++ b/docs/doxygen/html/hanning_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hat_8hpp.html b/docs/doxygen/html/hat_8hpp.html index 5000344c1..1bb1eaff8 100644 --- a/docs/doxygen/html/hat_8hpp.html +++ b/docs/doxygen/html/hat_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hat_8hpp_source.html b/docs/doxygen/html/hat_8hpp_source.html index 6f0876955..d435fbc61 100644 --- a/docs/doxygen/html/hat_8hpp_source.html +++ b/docs/doxygen/html/hat_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hermite_8hpp.html b/docs/doxygen/html/hermite_8hpp.html index 3af559371..8bc7abc39 100644 --- a/docs/doxygen/html/hermite_8hpp.html +++ b/docs/doxygen/html/hermite_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hermite_8hpp_source.html b/docs/doxygen/html/hermite_8hpp_source.html index 77dc5f439..003a8a9ca 100644 --- a/docs/doxygen/html/hermite_8hpp_source.html +++ b/docs/doxygen/html/hermite_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hierarchy.html b/docs/doxygen/html/hierarchy.html index 4165040fb..309e02091 100644 --- a/docs/doxygen/html/hierarchy.html +++ b/docs/doxygen/html/hierarchy.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -152,7 +152,7 @@  Cnc::is_complex< std::complex< T > >  Cnc::is_ndarray_int< NdArray< dtype, Allocator > >  Cnc::is_valid_dtype< dtype > - Cnc::linalg::SVD + Cnc::linalg::SVD< dtype >Performs the singular value decomposition of a general matrix  Cnc::logger::BinaryLoggerBinary Logger Singleton  Cnc::logger::detail::BinaryDataLogger< DataType >Binary Logger  Cnc::logger::detail::type_traits::has_serialize< DataType, std::void_t< std::enable_if_t< std::is_same_v< serialize_t< DataType >, std::string >, int > > >Type trait to check if a type has a serialize method with the correct signature diff --git a/docs/doxygen/html/hierarchy.js b/docs/doxygen/html/hierarchy.js index ad63b6cd6..d955714dc 100644 --- a/docs/doxygen/html/hierarchy.js +++ b/docs/doxygen/html/hierarchy.js @@ -34,7 +34,7 @@ var hierarchy = [ "nc::is_complex< std::complex< T > >", "structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html", null ], [ "nc::is_ndarray_int< NdArray< dtype, Allocator > >", "structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html", null ], [ "nc::is_valid_dtype< dtype >", "structnc_1_1is__valid__dtype.html", null ], - [ "nc::linalg::SVD", "classnc_1_1linalg_1_1_s_v_d.html", null ], + [ "nc::linalg::SVD< dtype >", "classnc_1_1linalg_1_1_s_v_d.html", null ], [ "nc::logger::BinaryLogger", "classnc_1_1logger_1_1_binary_logger.html", null ], [ "nc::logger::detail::BinaryDataLogger< DataType >", "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html", null ], [ "nc::logger::detail::type_traits::has_serialize< DataType, std::void_t< std::enable_if_t< std::is_same_v< serialize_t< DataType >, std::string >, int > > >", "classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html", null ], diff --git a/docs/doxygen/html/histogram_8hpp.html b/docs/doxygen/html/histogram_8hpp.html index 632280c3b..640266dad 100644 --- a/docs/doxygen/html/histogram_8hpp.html +++ b/docs/doxygen/html/histogram_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/histogram_8hpp_source.html b/docs/doxygen/html/histogram_8hpp_source.html index 3e6cd3f49..f423d5eef 100644 --- a/docs/doxygen/html/histogram_8hpp_source.html +++ b/docs/doxygen/html/histogram_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hsplit_8hpp.html b/docs/doxygen/html/hsplit_8hpp.html index a5924e2bb..ade7592c7 100644 --- a/docs/doxygen/html/hsplit_8hpp.html +++ b/docs/doxygen/html/hsplit_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hsplit_8hpp_source.html b/docs/doxygen/html/hsplit_8hpp_source.html index ae57ba8f5..bfc2ccb72 100644 --- a/docs/doxygen/html/hsplit_8hpp_source.html +++ b/docs/doxygen/html/hsplit_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hstack_8hpp.html b/docs/doxygen/html/hstack_8hpp.html index 596d3d5cf..e3f970322 100644 --- a/docs/doxygen/html/hstack_8hpp.html +++ b/docs/doxygen/html/hstack_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hstack_8hpp_source.html b/docs/doxygen/html/hstack_8hpp_source.html index 45a5cf13a..cac314d6e 100644 --- a/docs/doxygen/html/hstack_8hpp_source.html +++ b/docs/doxygen/html/hstack_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hypot_8hpp.html b/docs/doxygen/html/hypot_8hpp.html index 678a0ce28..c10039d61 100644 --- a/docs/doxygen/html/hypot_8hpp.html +++ b/docs/doxygen/html/hypot_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/hypot_8hpp_source.html b/docs/doxygen/html/hypot_8hpp_source.html index a70340834..9e520f83b 100644 --- a/docs/doxygen/html/hypot_8hpp_source.html +++ b/docs/doxygen/html/hypot_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/identity_8hpp.html b/docs/doxygen/html/identity_8hpp.html index bad8dc311..0c967b7aa 100644 --- a/docs/doxygen/html/identity_8hpp.html +++ b/docs/doxygen/html/identity_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/identity_8hpp_source.html b/docs/doxygen/html/identity_8hpp_source.html index adcde2532..f4d3ab2dc 100644 --- a/docs/doxygen/html/identity_8hpp_source.html +++ b/docs/doxygen/html/identity_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ifft2_8hpp.html b/docs/doxygen/html/ifft2_8hpp.html index 1b2380969..625924138 100644 --- a/docs/doxygen/html/ifft2_8hpp.html +++ b/docs/doxygen/html/ifft2_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ifft2_8hpp_source.html b/docs/doxygen/html/ifft2_8hpp_source.html index de8cef9fc..e37b3f35e 100644 --- a/docs/doxygen/html/ifft2_8hpp_source.html +++ b/docs/doxygen/html/ifft2_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ifft_8hpp.html b/docs/doxygen/html/ifft_8hpp.html index 5b5d40dd2..f97c6dc81 100644 --- a/docs/doxygen/html/ifft_8hpp.html +++ b/docs/doxygen/html/ifft_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ifft_8hpp_source.html b/docs/doxygen/html/ifft_8hpp_source.html index 48853c62c..0514e35bd 100644 --- a/docs/doxygen/html/ifft_8hpp_source.html +++ b/docs/doxygen/html/ifft_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ifftshift_8hpp.html b/docs/doxygen/html/ifftshift_8hpp.html index bdd42998a..33c8acd1f 100644 --- a/docs/doxygen/html/ifftshift_8hpp.html +++ b/docs/doxygen/html/ifftshift_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ifftshift_8hpp_source.html b/docs/doxygen/html/ifftshift_8hpp_source.html index 385564231..e6ec59ee9 100644 --- a/docs/doxygen/html/ifftshift_8hpp_source.html +++ b/docs/doxygen/html/ifftshift_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/imag_8hpp.html b/docs/doxygen/html/imag_8hpp.html index 83e22c539..81c4c7c33 100644 --- a/docs/doxygen/html/imag_8hpp.html +++ b/docs/doxygen/html/imag_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/imag_8hpp_source.html b/docs/doxygen/html/imag_8hpp_source.html index 68060a9ec..f6ced96bd 100644 --- a/docs/doxygen/html/imag_8hpp_source.html +++ b/docs/doxygen/html/imag_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/index.html b/docs/doxygen/html/index.html index d96c6e22b..8b288682e 100644 --- a/docs/doxygen/html/index.html +++ b/docs/doxygen/html/index.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/inner_8hpp.html b/docs/doxygen/html/inner_8hpp.html index d6f0073dd..9d772d90c 100644 --- a/docs/doxygen/html/inner_8hpp.html +++ b/docs/doxygen/html/inner_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/inner_8hpp_source.html b/docs/doxygen/html/inner_8hpp_source.html index 00d473119..3c3b5e5d4 100644 --- a/docs/doxygen/html/inner_8hpp_source.html +++ b/docs/doxygen/html/inner_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/insert_8hpp.html b/docs/doxygen/html/insert_8hpp.html index e7b245c93..a656fe66c 100644 --- a/docs/doxygen/html/insert_8hpp.html +++ b/docs/doxygen/html/insert_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/insert_8hpp_source.html b/docs/doxygen/html/insert_8hpp_source.html index c4e02768e..7c2188b6d 100644 --- a/docs/doxygen/html/insert_8hpp_source.html +++ b/docs/doxygen/html/insert_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/intersect1d_8hpp.html b/docs/doxygen/html/intersect1d_8hpp.html index 74c56deda..952187e5b 100644 --- a/docs/doxygen/html/intersect1d_8hpp.html +++ b/docs/doxygen/html/intersect1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/intersect1d_8hpp_source.html b/docs/doxygen/html/intersect1d_8hpp_source.html index d12b2bf3f..642dc189f 100644 --- a/docs/doxygen/html/intersect1d_8hpp_source.html +++ b/docs/doxygen/html/intersect1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/inv_8hpp.html b/docs/doxygen/html/inv_8hpp.html index 8c2fa1651..097c625fb 100644 --- a/docs/doxygen/html/inv_8hpp.html +++ b/docs/doxygen/html/inv_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/inv_8hpp_source.html b/docs/doxygen/html/inv_8hpp_source.html index 111b85ce2..ecc7308f7 100644 --- a/docs/doxygen/html/inv_8hpp_source.html +++ b/docs/doxygen/html/inv_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/invert_8hpp.html b/docs/doxygen/html/invert_8hpp.html index d883e7000..1629445e7 100644 --- a/docs/doxygen/html/invert_8hpp.html +++ b/docs/doxygen/html/invert_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/invert_8hpp_source.html b/docs/doxygen/html/invert_8hpp_source.html index d8982f249..301afecd3 100644 --- a/docs/doxygen/html/invert_8hpp_source.html +++ b/docs/doxygen/html/invert_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/irfft2_8hpp.html b/docs/doxygen/html/irfft2_8hpp.html index 4a3c9260d..9daa42159 100644 --- a/docs/doxygen/html/irfft2_8hpp.html +++ b/docs/doxygen/html/irfft2_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/irfft2_8hpp_source.html b/docs/doxygen/html/irfft2_8hpp_source.html index 5b35dc538..ab2e5082e 100644 --- a/docs/doxygen/html/irfft2_8hpp_source.html +++ b/docs/doxygen/html/irfft2_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/irfft_8hpp.html b/docs/doxygen/html/irfft_8hpp.html index 51289ae0d..577bc643b 100644 --- a/docs/doxygen/html/irfft_8hpp.html +++ b/docs/doxygen/html/irfft_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/irfft_8hpp_source.html b/docs/doxygen/html/irfft_8hpp_source.html index 08f97b866..ced573f70 100644 --- a/docs/doxygen/html/irfft_8hpp_source.html +++ b/docs/doxygen/html/irfft_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/isclose_8hpp.html b/docs/doxygen/html/isclose_8hpp.html index 61fd74ef0..a5b7fc1f6 100644 --- a/docs/doxygen/html/isclose_8hpp.html +++ b/docs/doxygen/html/isclose_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/isclose_8hpp_source.html b/docs/doxygen/html/isclose_8hpp_source.html index 0fc3d5a94..b7f8f097d 100644 --- a/docs/doxygen/html/isclose_8hpp_source.html +++ b/docs/doxygen/html/isclose_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/isinf_8hpp.html b/docs/doxygen/html/isinf_8hpp.html index 2273f50e9..d5d19554d 100644 --- a/docs/doxygen/html/isinf_8hpp.html +++ b/docs/doxygen/html/isinf_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/isinf_8hpp_source.html b/docs/doxygen/html/isinf_8hpp_source.html index 9e8413a8c..3eb84d0a4 100644 --- a/docs/doxygen/html/isinf_8hpp_source.html +++ b/docs/doxygen/html/isinf_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/isnan_8hpp.html b/docs/doxygen/html/isnan_8hpp.html index b27e6b260..991b6b931 100644 --- a/docs/doxygen/html/isnan_8hpp.html +++ b/docs/doxygen/html/isnan_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/isnan_8hpp_source.html b/docs/doxygen/html/isnan_8hpp_source.html index 4dc32f308..c9f0d148c 100644 --- a/docs/doxygen/html/isnan_8hpp_source.html +++ b/docs/doxygen/html/isnan_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/isneginf_8hpp.html b/docs/doxygen/html/isneginf_8hpp.html index f5857df4e..be34cd765 100644 --- a/docs/doxygen/html/isneginf_8hpp.html +++ b/docs/doxygen/html/isneginf_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/isneginf_8hpp_source.html b/docs/doxygen/html/isneginf_8hpp_source.html index 629588102..4bc60da21 100644 --- a/docs/doxygen/html/isneginf_8hpp_source.html +++ b/docs/doxygen/html/isneginf_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/isposinf_8hpp.html b/docs/doxygen/html/isposinf_8hpp.html index 157a01c4a..087b11db3 100644 --- a/docs/doxygen/html/isposinf_8hpp.html +++ b/docs/doxygen/html/isposinf_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/isposinf_8hpp_source.html b/docs/doxygen/html/isposinf_8hpp_source.html index 6c0f3898e..ce767f339 100644 --- a/docs/doxygen/html/isposinf_8hpp_source.html +++ b/docs/doxygen/html/isposinf_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/kaiser_8hpp.html b/docs/doxygen/html/kaiser_8hpp.html index d5948e731..ac0d5d0e3 100644 --- a/docs/doxygen/html/kaiser_8hpp.html +++ b/docs/doxygen/html/kaiser_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/kaiser_8hpp_source.html b/docs/doxygen/html/kaiser_8hpp_source.html index bd09433c8..23b1a4ad3 100644 --- a/docs/doxygen/html/kaiser_8hpp_source.html +++ b/docs/doxygen/html/kaiser_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/laguerre_8hpp.html b/docs/doxygen/html/laguerre_8hpp.html index b67e22c67..852633f19 100644 --- a/docs/doxygen/html/laguerre_8hpp.html +++ b/docs/doxygen/html/laguerre_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/laguerre_8hpp_source.html b/docs/doxygen/html/laguerre_8hpp_source.html index 1deea4924..7d5e84a61 100644 --- a/docs/doxygen/html/laguerre_8hpp_source.html +++ b/docs/doxygen/html/laguerre_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/lcm_8hpp.html b/docs/doxygen/html/lcm_8hpp.html index beb537538..6a7c5990a 100644 --- a/docs/doxygen/html/lcm_8hpp.html +++ b/docs/doxygen/html/lcm_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/lcm_8hpp_source.html b/docs/doxygen/html/lcm_8hpp_source.html index 108c50ada..22d828544 100644 --- a/docs/doxygen/html/lcm_8hpp_source.html +++ b/docs/doxygen/html/lcm_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ldexp_8hpp.html b/docs/doxygen/html/ldexp_8hpp.html index 48d82946f..98c7b4f04 100644 --- a/docs/doxygen/html/ldexp_8hpp.html +++ b/docs/doxygen/html/ldexp_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ldexp_8hpp_source.html b/docs/doxygen/html/ldexp_8hpp_source.html index 1917caa04..dc16ee7a5 100644 --- a/docs/doxygen/html/ldexp_8hpp_source.html +++ b/docs/doxygen/html/ldexp_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/left__shift_8hpp.html b/docs/doxygen/html/left__shift_8hpp.html index cae768e23..464fce3fe 100644 --- a/docs/doxygen/html/left__shift_8hpp.html +++ b/docs/doxygen/html/left__shift_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/left__shift_8hpp_source.html b/docs/doxygen/html/left__shift_8hpp_source.html index 65b25a8ae..e8ae61ab7 100644 --- a/docs/doxygen/html/left__shift_8hpp_source.html +++ b/docs/doxygen/html/left__shift_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/legendre__p_8hpp.html b/docs/doxygen/html/legendre__p_8hpp.html index 8b39be686..40684f20f 100644 --- a/docs/doxygen/html/legendre__p_8hpp.html +++ b/docs/doxygen/html/legendre__p_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/legendre__p_8hpp_source.html b/docs/doxygen/html/legendre__p_8hpp_source.html index f7d100c65..fccab6802 100644 --- a/docs/doxygen/html/legendre__p_8hpp_source.html +++ b/docs/doxygen/html/legendre__p_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/legendre__q_8hpp.html b/docs/doxygen/html/legendre__q_8hpp.html index 45f88fc76..44a0f62ef 100644 --- a/docs/doxygen/html/legendre__q_8hpp.html +++ b/docs/doxygen/html/legendre__q_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/legendre__q_8hpp_source.html b/docs/doxygen/html/legendre__q_8hpp_source.html index 206d35e05..91545d6fc 100644 --- a/docs/doxygen/html/legendre__q_8hpp_source.html +++ b/docs/doxygen/html/legendre__q_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/less_8hpp.html b/docs/doxygen/html/less_8hpp.html index f634de454..e1c3306e2 100644 --- a/docs/doxygen/html/less_8hpp.html +++ b/docs/doxygen/html/less_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/less_8hpp_source.html b/docs/doxygen/html/less_8hpp_source.html index 86829074b..c9b9d1f0f 100644 --- a/docs/doxygen/html/less_8hpp_source.html +++ b/docs/doxygen/html/less_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/less__equal_8hpp.html b/docs/doxygen/html/less__equal_8hpp.html index 14e7c1031..dd708eaef 100644 --- a/docs/doxygen/html/less__equal_8hpp.html +++ b/docs/doxygen/html/less__equal_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/less__equal_8hpp_source.html b/docs/doxygen/html/less__equal_8hpp_source.html index abd231724..2298b47c6 100644 --- a/docs/doxygen/html/less__equal_8hpp_source.html +++ b/docs/doxygen/html/less__equal_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/linspace_8hpp.html b/docs/doxygen/html/linspace_8hpp.html index 763e6da2a..a7e700a77 100644 --- a/docs/doxygen/html/linspace_8hpp.html +++ b/docs/doxygen/html/linspace_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/linspace_8hpp_source.html b/docs/doxygen/html/linspace_8hpp_source.html index cd5c9347e..614ebc333 100644 --- a/docs/doxygen/html/linspace_8hpp_source.html +++ b/docs/doxygen/html/linspace_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/load_8hpp.html b/docs/doxygen/html/load_8hpp.html index 69ac01a63..1451692d3 100644 --- a/docs/doxygen/html/load_8hpp.html +++ b/docs/doxygen/html/load_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/load_8hpp_source.html b/docs/doxygen/html/load_8hpp_source.html index c51d0d5d7..ed69a932c 100644 --- a/docs/doxygen/html/load_8hpp_source.html +++ b/docs/doxygen/html/load_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/log10_8hpp.html b/docs/doxygen/html/log10_8hpp.html index 093e4c0b4..3e97a2e3a 100644 --- a/docs/doxygen/html/log10_8hpp.html +++ b/docs/doxygen/html/log10_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/log10_8hpp_source.html b/docs/doxygen/html/log10_8hpp_source.html index c240f8770..c554cfe80 100644 --- a/docs/doxygen/html/log10_8hpp_source.html +++ b/docs/doxygen/html/log10_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/log1p_8hpp.html b/docs/doxygen/html/log1p_8hpp.html index c59e6cc7d..15e5d4fe7 100644 --- a/docs/doxygen/html/log1p_8hpp.html +++ b/docs/doxygen/html/log1p_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/log1p_8hpp_source.html b/docs/doxygen/html/log1p_8hpp_source.html index 542396229..a2d5a1e0b 100644 --- a/docs/doxygen/html/log1p_8hpp_source.html +++ b/docs/doxygen/html/log1p_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/log2_8hpp.html b/docs/doxygen/html/log2_8hpp.html index 35bc56a36..3a0a0ca4b 100644 --- a/docs/doxygen/html/log2_8hpp.html +++ b/docs/doxygen/html/log2_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/log2_8hpp_source.html b/docs/doxygen/html/log2_8hpp_source.html index eeb4f1eff..2b316e4ed 100644 --- a/docs/doxygen/html/log2_8hpp_source.html +++ b/docs/doxygen/html/log2_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/log_8hpp.html b/docs/doxygen/html/log_8hpp.html index f4b9a67f7..6aabfb5d7 100644 --- a/docs/doxygen/html/log_8hpp.html +++ b/docs/doxygen/html/log_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/log_8hpp_source.html b/docs/doxygen/html/log_8hpp_source.html index a2d5bb195..62cb232e1 100644 --- a/docs/doxygen/html/log_8hpp_source.html +++ b/docs/doxygen/html/log_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/log__gamma_8hpp.html b/docs/doxygen/html/log__gamma_8hpp.html index a5b70aa1d..cef791106 100644 --- a/docs/doxygen/html/log__gamma_8hpp.html +++ b/docs/doxygen/html/log__gamma_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/log__gamma_8hpp_source.html b/docs/doxygen/html/log__gamma_8hpp_source.html index ec8aa327b..0f09745f0 100644 --- a/docs/doxygen/html/log__gamma_8hpp_source.html +++ b/docs/doxygen/html/log__gamma_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logaddexp2_8hpp.html b/docs/doxygen/html/logaddexp2_8hpp.html index f69824d9a..01f181324 100644 --- a/docs/doxygen/html/logaddexp2_8hpp.html +++ b/docs/doxygen/html/logaddexp2_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logaddexp2_8hpp_source.html b/docs/doxygen/html/logaddexp2_8hpp_source.html index 6b27b03e6..0841f58d5 100644 --- a/docs/doxygen/html/logaddexp2_8hpp_source.html +++ b/docs/doxygen/html/logaddexp2_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logaddexp_8hpp.html b/docs/doxygen/html/logaddexp_8hpp.html index 00d139584..16572d591 100644 --- a/docs/doxygen/html/logaddexp_8hpp.html +++ b/docs/doxygen/html/logaddexp_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logaddexp_8hpp_source.html b/docs/doxygen/html/logaddexp_8hpp_source.html index 76bbdd8e8..2880de3f8 100644 --- a/docs/doxygen/html/logaddexp_8hpp_source.html +++ b/docs/doxygen/html/logaddexp_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logb_8hpp.html b/docs/doxygen/html/logb_8hpp.html index 9c01bddcd..41dcfdc3f 100644 --- a/docs/doxygen/html/logb_8hpp.html +++ b/docs/doxygen/html/logb_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logb_8hpp_source.html b/docs/doxygen/html/logb_8hpp_source.html index 33191fa44..cecb4eef6 100644 --- a/docs/doxygen/html/logb_8hpp_source.html +++ b/docs/doxygen/html/logb_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logical__and_8hpp.html b/docs/doxygen/html/logical__and_8hpp.html index 06ea0d28c..533477b55 100644 --- a/docs/doxygen/html/logical__and_8hpp.html +++ b/docs/doxygen/html/logical__and_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logical__and_8hpp_source.html b/docs/doxygen/html/logical__and_8hpp_source.html index 63c9083db..ed8f7ab47 100644 --- a/docs/doxygen/html/logical__and_8hpp_source.html +++ b/docs/doxygen/html/logical__and_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logical__not_8hpp.html b/docs/doxygen/html/logical__not_8hpp.html index d48061bc1..31766abb4 100644 --- a/docs/doxygen/html/logical__not_8hpp.html +++ b/docs/doxygen/html/logical__not_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logical__not_8hpp_source.html b/docs/doxygen/html/logical__not_8hpp_source.html index 4953dc627..6dadbf1d5 100644 --- a/docs/doxygen/html/logical__not_8hpp_source.html +++ b/docs/doxygen/html/logical__not_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logical__or_8hpp.html b/docs/doxygen/html/logical__or_8hpp.html index ac12d40d6..c53d3a961 100644 --- a/docs/doxygen/html/logical__or_8hpp.html +++ b/docs/doxygen/html/logical__or_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logical__or_8hpp_source.html b/docs/doxygen/html/logical__or_8hpp_source.html index 1d816453d..4f5db7a52 100644 --- a/docs/doxygen/html/logical__or_8hpp_source.html +++ b/docs/doxygen/html/logical__or_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logical__xor_8hpp.html b/docs/doxygen/html/logical__xor_8hpp.html index 8e23bdcd9..77142dbbd 100644 --- a/docs/doxygen/html/logical__xor_8hpp.html +++ b/docs/doxygen/html/logical__xor_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logical__xor_8hpp_source.html b/docs/doxygen/html/logical__xor_8hpp_source.html index 507131a6f..fc1d91229 100644 --- a/docs/doxygen/html/logical__xor_8hpp_source.html +++ b/docs/doxygen/html/logical__xor_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/lognormal_8hpp.html b/docs/doxygen/html/lognormal_8hpp.html index ad2cb3970..bf4e08f55 100644 --- a/docs/doxygen/html/lognormal_8hpp.html +++ b/docs/doxygen/html/lognormal_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/lognormal_8hpp_source.html b/docs/doxygen/html/lognormal_8hpp_source.html index c4a0265bb..9413b5b59 100644 --- a/docs/doxygen/html/lognormal_8hpp_source.html +++ b/docs/doxygen/html/lognormal_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logspace_8hpp.html b/docs/doxygen/html/logspace_8hpp.html index 8ad9160ab..7c62bd1fc 100644 --- a/docs/doxygen/html/logspace_8hpp.html +++ b/docs/doxygen/html/logspace_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/logspace_8hpp_source.html b/docs/doxygen/html/logspace_8hpp_source.html index dd0218492..94bca5282 100644 --- a/docs/doxygen/html/logspace_8hpp_source.html +++ b/docs/doxygen/html/logspace_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/lstsq_8hpp.html b/docs/doxygen/html/lstsq_8hpp.html index f7f15f4c9..711567acb 100644 --- a/docs/doxygen/html/lstsq_8hpp.html +++ b/docs/doxygen/html/lstsq_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -121,7 +121,7 @@

                              Go to the source code of this file.

                              @@ -135,9 +135,9 @@ - - - + + +

                              Functions

                              template<typename dtype >
                              NdArray< doublenc::linalg::lstsq (const NdArray< dtype > &inA, const NdArray< dtype > &inB, double inTolerance=1e-12)
                               
                              template<typename dtype >
                              NdArray< doublenc::linalg::lstsq (const NdArray< dtype > &inA, const NdArray< dtype > &inB)
                               

                              Detailed Description

                              Author
                              David Pilger dpilg.nosp@m.er26.nosp@m.@gmai.nosp@m.l.co.nosp@m.m GitHub Repository
                              diff --git a/docs/doxygen/html/lstsq_8hpp.js b/docs/doxygen/html/lstsq_8hpp.js index fb0738ebf..12d133ba1 100644 --- a/docs/doxygen/html/lstsq_8hpp.js +++ b/docs/doxygen/html/lstsq_8hpp.js @@ -1,4 +1,4 @@ var lstsq_8hpp = [ - [ "lstsq", "lstsq_8hpp.html#a8baf25f50874e4bd27d2644a2730fb03", null ] + [ "lstsq", "lstsq_8hpp.html#af96af1e6e215b975a74f12949b5f0b46", null ] ]; \ No newline at end of file diff --git a/docs/doxygen/html/lstsq_8hpp_source.html b/docs/doxygen/html/lstsq_8hpp_source.html index 9959828b6..e3a2aa244 100644 --- a/docs/doxygen/html/lstsq_8hpp_source.html +++ b/docs/doxygen/html/lstsq_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -126,66 +126,66 @@
                              28#pragma once
                              29
                              - +
                              32#include "NumCpp/NdArray.hpp"
                              33
                              34namespace nc::linalg
                              35{
                              36 //============================================================================
                              37 // Method Description:
                              -
                              57 template<typename dtype>
                              -
                              - -
                              59 {
                              - -
                              61
                              -
                              62 const auto& aShape = inA.shape();
                              -
                              63 const auto& bShape = inB.shape();
                              -
                              64
                              -
                              65 const auto bIsFlat = inB.isflat();
                              -
                              66 if (bIsFlat && bShape.size() != aShape.rows)
                              -
                              67 {
                              -
                              68 THROW_INVALID_ARGUMENT_ERROR("Invalid matrix dimensions");
                              -
                              69 }
                              -
                              70 else if (!bIsFlat && inA.shape().rows != bShape.rows)
                              -
                              71 {
                              -
                              72 THROW_INVALID_ARGUMENT_ERROR("Invalid matrix dimensions");
                              -
                              73 }
                              -
                              74
                              -
                              75 SVD svdSolver(inA.template astype<double>());
                              -
                              76 const double threshold = inTolerance * svdSolver.s().front();
                              -
                              77
                              -
                              78 if (bIsFlat)
                              -
                              79 {
                              -
                              80 return svdSolver.solve(inB.template astype<double>(), threshold);
                              -
                              81 }
                              -
                              82
                              -
                              83 const auto bCast = inB.template astype<double>();
                              -
                              84 const auto bRowSlice = bCast.rSlice();
                              -
                              85
                              -
                              86 auto result = NdArray<double>(aShape.cols, bShape.cols);
                              -
                              87 const auto resultRowSlice = result.rSlice();
                              -
                              88
                              -
                              89 for (uint32 col = 0; col < bShape.cols; ++col)
                              -
                              90 {
                              -
                              91 result.put(resultRowSlice, col, svdSolver.solve(bCast(bRowSlice, col), threshold));
                              -
                              92 }
                              -
                              93
                              -
                              94 return result;
                              -
                              95 }
                              +
                              56 template<typename dtype>
                              +
                              + +
                              58 {
                              + +
                              60
                              +
                              61 const auto& aShape = inA.shape();
                              +
                              62 const auto& bShape = inB.shape();
                              +
                              63
                              +
                              64 const auto bIsFlat = inB.isflat();
                              +
                              65 if (bIsFlat && bShape.size() != aShape.rows)
                              +
                              66 {
                              +
                              67 THROW_INVALID_ARGUMENT_ERROR("Invalid matrix dimensions");
                              +
                              68 }
                              +
                              69 else if (!bIsFlat && inA.shape().rows != bShape.rows)
                              +
                              70 {
                              +
                              71 THROW_INVALID_ARGUMENT_ERROR("Invalid matrix dimensions");
                              +
                              72 }
                              +
                              73
                              +
                              74 SVD svd(inA.template astype<double>());
                              +
                              75
                              +
                              76 if (bIsFlat)
                              +
                              77 {
                              +
                              78 return svd.lstsq(inB.template astype<double>());
                              +
                              79 }
                              +
                              80
                              +
                              81 const auto bCast = inB.template astype<double>();
                              +
                              82 const auto bRowSlice = bCast.rSlice();
                              +
                              83
                              +
                              84 auto result = NdArray<double>(aShape.cols, bShape.cols);
                              +
                              85 const auto resultRowSlice = result.rSlice();
                              +
                              86
                              +
                              87 for (uint32 col = 0; col < bShape.cols; ++col)
                              +
                              88 {
                              +
                              89 result.put(resultRowSlice, col, svd.lstsq(bCast(bRowSlice, col)));
                              +
                              90 }
                              +
                              91
                              +
                              92 return result;
                              +
                              93 }
                              -
                              96} // namespace nc::linalg
                              +
                              94} // namespace nc::linalg
                              #define THROW_INVALID_ARGUMENT_ERROR(msg)
                              Definition Error.hpp:37
                              -
                              #define STATIC_ASSERT_ARITHMETIC(dtype)
                              Definition StaticAsserts.hpp:39
                              Holds 1D and 2D arrays, the main work horse of the NumCpp library.
                              Definition NdArrayCore.hpp:139
                              -
                              Definition SVDClass.hpp:47
                              +
                              Performs the singular value decomposition of a general matrix.
                              Definition svd/svd.hpp:50
                              Definition cholesky.hpp:41
                              -
                              NdArray< double > lstsq(const NdArray< dtype > &inA, const NdArray< dtype > &inB, double inTolerance=1e-12)
                              Definition lstsq.hpp:58
                              +
                              void svd(const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVT)
                              Definition svd.hpp:51
                              +
                              NdArray< double > lstsq(const NdArray< dtype > &inA, const NdArray< dtype > &inB)
                              Definition lstsq.hpp:57
                              NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
                              Definition arange.hpp:59
                              std::uint32_t uint32
                              Definition Types.hpp:40
                              +
                              diff --git a/docs/doxygen/html/lu__decomposition_8hpp.html b/docs/doxygen/html/lu__decomposition_8hpp.html index db93e483e..edc885263 100644 --- a/docs/doxygen/html/lu__decomposition_8hpp.html +++ b/docs/doxygen/html/lu__decomposition_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/lu__decomposition_8hpp_source.html b/docs/doxygen/html/lu__decomposition_8hpp_source.html index e0bee8a62..2c3100021 100644 --- a/docs/doxygen/html/lu__decomposition_8hpp_source.html +++ b/docs/doxygen/html/lu__decomposition_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/matmul_8hpp.html b/docs/doxygen/html/matmul_8hpp.html index 1c71f377d..e68b7af3e 100644 --- a/docs/doxygen/html/matmul_8hpp.html +++ b/docs/doxygen/html/matmul_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/matmul_8hpp_source.html b/docs/doxygen/html/matmul_8hpp_source.html index ad27f6bea..10ee91cca 100644 --- a/docs/doxygen/html/matmul_8hpp_source.html +++ b/docs/doxygen/html/matmul_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/matrix__power_8hpp.html b/docs/doxygen/html/matrix__power_8hpp.html index e0863337f..e32311504 100644 --- a/docs/doxygen/html/matrix__power_8hpp.html +++ b/docs/doxygen/html/matrix__power_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/matrix__power_8hpp_source.html b/docs/doxygen/html/matrix__power_8hpp_source.html index f6bcb23ac..62b0de04b 100644 --- a/docs/doxygen/html/matrix__power_8hpp_source.html +++ b/docs/doxygen/html/matrix__power_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/max_8hpp.html b/docs/doxygen/html/max_8hpp.html index ea3bf9897..17e1822cf 100644 --- a/docs/doxygen/html/max_8hpp.html +++ b/docs/doxygen/html/max_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/max_8hpp_source.html b/docs/doxygen/html/max_8hpp_source.html index a6bfe9e3b..3b4b37873 100644 --- a/docs/doxygen/html/max_8hpp_source.html +++ b/docs/doxygen/html/max_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/maximum_8hpp.html b/docs/doxygen/html/maximum_8hpp.html index 124abe966..0aa559efa 100644 --- a/docs/doxygen/html/maximum_8hpp.html +++ b/docs/doxygen/html/maximum_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/maximum_8hpp_source.html b/docs/doxygen/html/maximum_8hpp_source.html index bcdf4396b..52d75d987 100644 --- a/docs/doxygen/html/maximum_8hpp_source.html +++ b/docs/doxygen/html/maximum_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/maximum_filter1d_8hpp.html b/docs/doxygen/html/maximum_filter1d_8hpp.html index 50c5087b6..1acf3c714 100644 --- a/docs/doxygen/html/maximum_filter1d_8hpp.html +++ b/docs/doxygen/html/maximum_filter1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/maximum_filter1d_8hpp_source.html b/docs/doxygen/html/maximum_filter1d_8hpp_source.html index c37b2daab..1ed8da575 100644 --- a/docs/doxygen/html/maximum_filter1d_8hpp_source.html +++ b/docs/doxygen/html/maximum_filter1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/maximum_filter_8hpp.html b/docs/doxygen/html/maximum_filter_8hpp.html index 9386c2c66..ca567a379 100644 --- a/docs/doxygen/html/maximum_filter_8hpp.html +++ b/docs/doxygen/html/maximum_filter_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/maximum_filter_8hpp_source.html b/docs/doxygen/html/maximum_filter_8hpp_source.html index ff308c9ab..a962386f5 100644 --- a/docs/doxygen/html/maximum_filter_8hpp_source.html +++ b/docs/doxygen/html/maximum_filter_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_building.html b/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_building.html index ef17aa0d2..3447d0a92 100644 --- a/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_building.html +++ b/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_building.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -141,7 +141,7 @@

                              1. Source File

                              add_executable(${PROJECT_NAME} main.cpp)
                              -
                              find_package(NumCpp 2.15.0 REQUIRED)
                              +
                              find_package(NumCpp 2.16.0 REQUIRED)
                              target_link_libraries(${PROJECT_NAME}
                              NumCpp::NumCpp
                              )
                              @@ -155,7 +155,7 @@

                              1. Source File

                              include(FetchContent)
                              FetchContent_Declare(NumCpp
                              GIT_REPOSITORY https://github.com/dpilger26/NumCpp
                              -
                              GIT_TAG Version_2.15.0)
                              +
                              GIT_TAG Version_2.16.0)
                              FetchContent_MakeAvailable(NumCpp)
                              target_link_libraries(${PROJECT_NAME}
                              diff --git a/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_compiler_flags.html b/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_compiler_flags.html index 531f87ac5..b19abcebe 100644 --- a/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_compiler_flags.html +++ b/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_compiler_flags.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_installation.html b/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_installation.html index ff1289a35..013d076f1 100644 --- a/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_installation.html +++ b/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_installation.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_release_notes.html b/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_release_notes.html index bca000cc2..e152b5cc8 100644 --- a/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_release_notes.html +++ b/docs/doxygen/html/md__2home_2dpilger_2_github_2_num_cpp_2docs_2markdown_2_release_notes.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -117,7 +117,21 @@
                              Release Notes
                              -

                              Version 2.15.0

                              +

                              Version 2.16.0

                              + +

                              Version 2.15.0

                              • added fft module for Issue #137
                                • fft::fft https://numpy.org/doc/stable/reference/generated/numpy.fft.fft.html#numpy.fft.fft
                                • diff --git a/docs/doxygen/html/mean_8hpp.html b/docs/doxygen/html/mean_8hpp.html index 431471c98..0244ccb90 100644 --- a/docs/doxygen/html/mean_8hpp.html +++ b/docs/doxygen/html/mean_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mean_8hpp_source.html b/docs/doxygen/html/mean_8hpp_source.html index ff487bf89..2a7c1c289 100644 --- a/docs/doxygen/html/mean_8hpp_source.html +++ b/docs/doxygen/html/mean_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mean_filter1d_8hpp.html b/docs/doxygen/html/mean_filter1d_8hpp.html index cc2c51d95..80bbbbd8a 100644 --- a/docs/doxygen/html/mean_filter1d_8hpp.html +++ b/docs/doxygen/html/mean_filter1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mean_filter1d_8hpp_source.html b/docs/doxygen/html/mean_filter1d_8hpp_source.html index cfad52c61..ffc570569 100644 --- a/docs/doxygen/html/mean_filter1d_8hpp_source.html +++ b/docs/doxygen/html/mean_filter1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mean_filter_8hpp.html b/docs/doxygen/html/mean_filter_8hpp.html index 7f8d989f2..2e9a8b4b2 100644 --- a/docs/doxygen/html/mean_filter_8hpp.html +++ b/docs/doxygen/html/mean_filter_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mean_filter_8hpp_source.html b/docs/doxygen/html/mean_filter_8hpp_source.html index ad8980f47..9e23130d8 100644 --- a/docs/doxygen/html/mean_filter_8hpp_source.html +++ b/docs/doxygen/html/mean_filter_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/median_8hpp.html b/docs/doxygen/html/median_8hpp.html index cd93b70da..156163a24 100644 --- a/docs/doxygen/html/median_8hpp.html +++ b/docs/doxygen/html/median_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/median_8hpp_source.html b/docs/doxygen/html/median_8hpp_source.html index c31e4fab6..45b20326b 100644 --- a/docs/doxygen/html/median_8hpp_source.html +++ b/docs/doxygen/html/median_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/median_filter1d_8hpp.html b/docs/doxygen/html/median_filter1d_8hpp.html index f1620a2bb..084087758 100644 --- a/docs/doxygen/html/median_filter1d_8hpp.html +++ b/docs/doxygen/html/median_filter1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/median_filter1d_8hpp_source.html b/docs/doxygen/html/median_filter1d_8hpp_source.html index 7c8b58772..7083daed0 100644 --- a/docs/doxygen/html/median_filter1d_8hpp_source.html +++ b/docs/doxygen/html/median_filter1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/median_filter_8hpp.html b/docs/doxygen/html/median_filter_8hpp.html index 764e24eb4..5cd298fc1 100644 --- a/docs/doxygen/html/median_filter_8hpp.html +++ b/docs/doxygen/html/median_filter_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/median_filter_8hpp_source.html b/docs/doxygen/html/median_filter_8hpp_source.html index 20885de72..1e426420f 100644 --- a/docs/doxygen/html/median_filter_8hpp_source.html +++ b/docs/doxygen/html/median_filter_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/meshgrid_8hpp.html b/docs/doxygen/html/meshgrid_8hpp.html index aec775e0f..979e9eefd 100644 --- a/docs/doxygen/html/meshgrid_8hpp.html +++ b/docs/doxygen/html/meshgrid_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/meshgrid_8hpp_source.html b/docs/doxygen/html/meshgrid_8hpp_source.html index 6b6e80626..1b3ebc5a4 100644 --- a/docs/doxygen/html/meshgrid_8hpp_source.html +++ b/docs/doxygen/html/meshgrid_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/min_8hpp.html b/docs/doxygen/html/min_8hpp.html index 8223c62f4..09ac4cfed 100644 --- a/docs/doxygen/html/min_8hpp.html +++ b/docs/doxygen/html/min_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/min_8hpp_source.html b/docs/doxygen/html/min_8hpp_source.html index a24fc41b0..593138033 100644 --- a/docs/doxygen/html/min_8hpp_source.html +++ b/docs/doxygen/html/min_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/minimum_8hpp.html b/docs/doxygen/html/minimum_8hpp.html index e2d57ad6c..182bb9064 100644 --- a/docs/doxygen/html/minimum_8hpp.html +++ b/docs/doxygen/html/minimum_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/minimum_8hpp_source.html b/docs/doxygen/html/minimum_8hpp_source.html index 24f283dce..01533f98c 100644 --- a/docs/doxygen/html/minimum_8hpp_source.html +++ b/docs/doxygen/html/minimum_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/minimum_filter1d_8hpp.html b/docs/doxygen/html/minimum_filter1d_8hpp.html index d86a39ed3..b7112aeff 100644 --- a/docs/doxygen/html/minimum_filter1d_8hpp.html +++ b/docs/doxygen/html/minimum_filter1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/minimum_filter1d_8hpp_source.html b/docs/doxygen/html/minimum_filter1d_8hpp_source.html index 67a383126..6e1d9d6f4 100644 --- a/docs/doxygen/html/minimum_filter1d_8hpp_source.html +++ b/docs/doxygen/html/minimum_filter1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/minimum_filter_8hpp.html b/docs/doxygen/html/minimum_filter_8hpp.html index dff0b5d78..87c8f39be 100644 --- a/docs/doxygen/html/minimum_filter_8hpp.html +++ b/docs/doxygen/html/minimum_filter_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/minimum_filter_8hpp_source.html b/docs/doxygen/html/minimum_filter_8hpp_source.html index 8e5b69db9..0d027b9d8 100644 --- a/docs/doxygen/html/minimum_filter_8hpp_source.html +++ b/docs/doxygen/html/minimum_filter_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mirror1d_8hpp.html b/docs/doxygen/html/mirror1d_8hpp.html index e845fdf4a..088c4edd5 100644 --- a/docs/doxygen/html/mirror1d_8hpp.html +++ b/docs/doxygen/html/mirror1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mirror1d_8hpp_source.html b/docs/doxygen/html/mirror1d_8hpp_source.html index 1a6ead19e..929d7b1df 100644 --- a/docs/doxygen/html/mirror1d_8hpp_source.html +++ b/docs/doxygen/html/mirror1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mirror2d_8hpp.html b/docs/doxygen/html/mirror2d_8hpp.html index bf7a86270..94078ec31 100644 --- a/docs/doxygen/html/mirror2d_8hpp.html +++ b/docs/doxygen/html/mirror2d_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mirror2d_8hpp_source.html b/docs/doxygen/html/mirror2d_8hpp_source.html index cba6635e9..8cc01914d 100644 --- a/docs/doxygen/html/mirror2d_8hpp_source.html +++ b/docs/doxygen/html/mirror2d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mod_8hpp.html b/docs/doxygen/html/mod_8hpp.html index 0b557dee5..2912af04e 100644 --- a/docs/doxygen/html/mod_8hpp.html +++ b/docs/doxygen/html/mod_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mod_8hpp_source.html b/docs/doxygen/html/mod_8hpp_source.html index 6f1f9b075..21929dbc8 100644 --- a/docs/doxygen/html/mod_8hpp_source.html +++ b/docs/doxygen/html/mod_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mode_8hpp.html b/docs/doxygen/html/mode_8hpp.html index a7a97d567..b13786c55 100644 --- a/docs/doxygen/html/mode_8hpp.html +++ b/docs/doxygen/html/mode_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/mode_8hpp_source.html b/docs/doxygen/html/mode_8hpp_source.html index 8014e526d..c1dd161b3 100644 --- a/docs/doxygen/html/mode_8hpp_source.html +++ b/docs/doxygen/html/mode_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/multi__dot_8hpp.html b/docs/doxygen/html/multi__dot_8hpp.html index eedb353ce..66452cf13 100644 --- a/docs/doxygen/html/multi__dot_8hpp.html +++ b/docs/doxygen/html/multi__dot_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/multi__dot_8hpp_source.html b/docs/doxygen/html/multi__dot_8hpp_source.html index d03de3563..c73fe08d6 100644 --- a/docs/doxygen/html/multi__dot_8hpp_source.html +++ b/docs/doxygen/html/multi__dot_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/multiply_8hpp.html b/docs/doxygen/html/multiply_8hpp.html index 5119662f3..7c8ab3bf1 100644 --- a/docs/doxygen/html/multiply_8hpp.html +++ b/docs/doxygen/html/multiply_8hpp.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/multiply_8hpp_source.html b/docs/doxygen/html/multiply_8hpp_source.html index 2f221d3a0..fe3c2d50e 100644 --- a/docs/doxygen/html/multiply_8hpp_source.html +++ b/docs/doxygen/html/multiply_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/namespacemembers.html b/docs/doxygen/html/namespacemembers.html index 8d76935db..a8f08e411 100644 --- a/docs/doxygen/html/namespacemembers.html +++ b/docs/doxygen/html/namespacemembers.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/namespacemembers_b.html b/docs/doxygen/html/namespacemembers_b.html index ea969ed5d..5e9cdad38 100644 --- a/docs/doxygen/html/namespacemembers_b.html +++ b/docs/doxygen/html/namespacemembers_b.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/namespacemembers_c.html b/docs/doxygen/html/namespacemembers_c.html index 94ba86ae2..599e7ccd7 100644 --- a/docs/doxygen/html/namespacemembers_c.html +++ b/docs/doxygen/html/namespacemembers_c.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/namespacemembers_d.html b/docs/doxygen/html/namespacemembers_d.html index 5893693ca..3f00268e6 100644 --- a/docs/doxygen/html/namespacemembers_d.html +++ b/docs/doxygen/html/namespacemembers_d.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  diff --git a/docs/doxygen/html/namespacemembers_e.html b/docs/doxygen/html/namespacemembers_e.html index 70dbd60d5..1cd9b48d1 100644 --- a/docs/doxygen/html/namespacemembers_e.html +++ b/docs/doxygen/html/namespacemembers_e.html @@ -50,7 +50,7 @@ Logo
                                  NumCpp -  2.15.0 +  2.16.0
                                  A Templatized Header Only C++ Implementation of the Python NumPy Library
                                  @@ -126,6 +126,8 @@

                                  - e -

                                  • ECEFtoENU() : nc::coordinates::transforms
                                  • ECEFtoLLA() : nc::coordinates::transforms
                                  • ECEFtoNED() : nc::coordinates::transforms
                                  • +
                                  • eig() : nc::linalg
                                  • +
                                  • eigvals() : nc::linalg
                                  • ellint_1() : nc::special
                                  • ellint_2() : nc::special
                                  • ellint_3() : nc::special
                                  • @@ -141,7 +143,7 @@

                                    - e -

                                    • ENUtoLLA() : nc::coordinates::transforms
                                    • ENUtoNED() : nc::coordinates::transforms
                                    • ENUUnitVecsInECEF() : nc::coordinates::transforms
                                    • -
                                    • equal() : nc, nc::stl_algorithms
                                    • +
                                    • equal() : nc, nc::stl_algorithms
                                    • erf() : nc::special
                                    • erf_inv() : nc::special
                                    • erfc() : nc::special
                                    • diff --git a/docs/doxygen/html/namespacemembers_enum.html b/docs/doxygen/html/namespacemembers_enum.html index ca0993ed4..484f9fad8 100644 --- a/docs/doxygen/html/namespacemembers_enum.html +++ b/docs/doxygen/html/namespacemembers_enum.html @@ -50,7 +50,7 @@ Logo
                                      NumCpp -  2.15.0 +  2.16.0
                                      A Templatized Header Only C++ Implementation of the Python NumPy Library
                                      diff --git a/docs/doxygen/html/namespacemembers_f.html b/docs/doxygen/html/namespacemembers_f.html index 4199ecc5b..6271228c2 100644 --- a/docs/doxygen/html/namespacemembers_f.html +++ b/docs/doxygen/html/namespacemembers_f.html @@ -50,7 +50,7 @@ Logo
                                      NumCpp -  2.15.0 +  2.16.0
                                      A Templatized Header Only C++ Implementation of the Python NumPy Library
                                      diff --git a/docs/doxygen/html/namespacemembers_func.html b/docs/doxygen/html/namespacemembers_func.html index 0aac0bf07..4e4382b90 100644 --- a/docs/doxygen/html/namespacemembers_func.html +++ b/docs/doxygen/html/namespacemembers_func.html @@ -50,7 +50,7 @@ Logo
                                      NumCpp -  2.15.0 +  2.16.0
                                      A Templatized Header Only C++ Implementation of the Python NumPy Library
                                      diff --git a/docs/doxygen/html/namespacemembers_func_b.html b/docs/doxygen/html/namespacemembers_func_b.html index 0ccfb5fe9..39ca9dd3d 100644 --- a/docs/doxygen/html/namespacemembers_func_b.html +++ b/docs/doxygen/html/namespacemembers_func_b.html @@ -50,7 +50,7 @@ Logo
                                      NumCpp -  2.15.0 +  2.16.0
                                      A Templatized Header Only C++ Implementation of the Python NumPy Library
                                      diff --git a/docs/doxygen/html/namespacemembers_func_c.html b/docs/doxygen/html/namespacemembers_func_c.html index 9d2963fe1..f7b7b0a33 100644 --- a/docs/doxygen/html/namespacemembers_func_c.html +++ b/docs/doxygen/html/namespacemembers_func_c.html @@ -50,7 +50,7 @@ Logo
                                      NumCpp -  2.15.0 +  2.16.0
                                      A Templatized Header Only C++ Implementation of the Python NumPy Library
                                      diff --git a/docs/doxygen/html/namespacemembers_func_d.html b/docs/doxygen/html/namespacemembers_func_d.html index f21c19d7a..c6b9aaad4 100644 --- a/docs/doxygen/html/namespacemembers_func_d.html +++ b/docs/doxygen/html/namespacemembers_func_d.html @@ -50,7 +50,7 @@ Logo
                                      NumCpp -  2.15.0 +  2.16.0
                                      A Templatized Header Only C++ Implementation of the Python NumPy Library
                                      diff --git a/docs/doxygen/html/namespacemembers_func_e.html b/docs/doxygen/html/namespacemembers_func_e.html index 05f4767d9..5b2e3d372 100644 --- a/docs/doxygen/html/namespacemembers_func_e.html +++ b/docs/doxygen/html/namespacemembers_func_e.html @@ -50,7 +50,7 @@ Logo
                                      NumCpp -  2.15.0 +  2.16.0
                                      A Templatized Header Only C++ Implementation of the Python NumPy Library
                                      @@ -123,10 +123,12 @@

                                      - e -

                                      • ECEFtoENU() : nc::coordinates::transforms
                                      • ECEFtoLLA() : nc::coordinates::transforms
                                      • ECEFtoNED() : nc::coordinates::transforms
                                      • +
                                      • eig() : nc::linalg
                                      • +
                                      • eigvals() : nc::linalg
                                      • ellint_1() : nc::special
                                      • ellint_2() : nc::special
                                      • ellint_3() : nc::special
                                      • -
                                      • empty() : nc
                                      • +
                                      • empty() : nc
                                      • empty_like() : nc
                                      • encode() : nc::edac
                                      • endianess() : nc
                                      • @@ -137,7 +139,7 @@

                                        - e -

                                        • ENUtoNED() : nc::coordinates::transforms
                                        • ENUUnitVecsInECEF() : nc::coordinates::transforms
                                        • equal() : nc, nc::stl_algorithms
                                        • -
                                        • erf() : nc::special
                                        • +
                                        • erf() : nc::special
                                        • erf_inv() : nc::special
                                        • erfc() : nc::special
                                        • erfc_inv() : nc::special
                                        • diff --git a/docs/doxygen/html/namespacemembers_func_f.html b/docs/doxygen/html/namespacemembers_func_f.html index ba6d69ac1..6da91f4aa 100644 --- a/docs/doxygen/html/namespacemembers_func_f.html +++ b/docs/doxygen/html/namespacemembers_func_f.html @@ -50,7 +50,7 @@ Logo
                                          NumCpp -  2.15.0 +  2.16.0
                                          A Templatized Header Only C++ Implementation of the Python NumPy Library
                                          diff --git a/docs/doxygen/html/namespacemembers_func_g.html b/docs/doxygen/html/namespacemembers_func_g.html index e8de1c5ac..07a0b08c2 100644 --- a/docs/doxygen/html/namespacemembers_func_g.html +++ b/docs/doxygen/html/namespacemembers_func_g.html @@ -50,7 +50,7 @@ Logo
                                          NumCpp -  2.15.0 +  2.16.0
                                          A Templatized Header Only C++ Implementation of the Python NumPy Library
                                          diff --git a/docs/doxygen/html/namespacemembers_func_h.html b/docs/doxygen/html/namespacemembers_func_h.html index f05c23f07..cbb5c4299 100644 --- a/docs/doxygen/html/namespacemembers_func_h.html +++ b/docs/doxygen/html/namespacemembers_func_h.html @@ -50,7 +50,7 @@ Logo
                                          NumCpp -  2.15.0 +  2.16.0
                                          A Templatized Header Only C++ Implementation of the Python NumPy Library
                                          diff --git a/docs/doxygen/html/namespacemembers_func_i.html b/docs/doxygen/html/namespacemembers_func_i.html index 97861d6a5..4e49cf69a 100644 --- a/docs/doxygen/html/namespacemembers_func_i.html +++ b/docs/doxygen/html/namespacemembers_func_i.html @@ -50,7 +50,7 @@ Logo
                                          NumCpp -  2.15.0 +  2.16.0
                                          A Templatized Header Only C++ Implementation of the Python NumPy Library
                                          diff --git a/docs/doxygen/html/namespacemembers_func_k.html b/docs/doxygen/html/namespacemembers_func_k.html index b926e5d0c..a776035b9 100644 --- a/docs/doxygen/html/namespacemembers_func_k.html +++ b/docs/doxygen/html/namespacemembers_func_k.html @@ -50,7 +50,7 @@ Logo
                                          NumCpp -  2.15.0 +  2.16.0
                                          A Templatized Header Only C++ Implementation of the Python NumPy Library
                                          diff --git a/docs/doxygen/html/namespacemembers_func_l.html b/docs/doxygen/html/namespacemembers_func_l.html index 07724ac21..de8cbdc75 100644 --- a/docs/doxygen/html/namespacemembers_func_l.html +++ b/docs/doxygen/html/namespacemembers_func_l.html @@ -50,7 +50,7 @@ Logo
                                          NumCpp -  2.15.0 +  2.16.0
                                          A Templatized Header Only C++ Implementation of the Python NumPy Library
                                          @@ -147,7 +147,7 @@

                                          - l -

                              diff --git a/docs/doxygen/html/namespacemembers_func_m.html b/docs/doxygen/html/namespacemembers_func_m.html index ea13b6761..51b22e681 100644 --- a/docs/doxygen/html/namespacemembers_func_m.html +++ b/docs/doxygen/html/namespacemembers_func_m.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacemembers_func_n.html b/docs/doxygen/html/namespacemembers_func_n.html index 4726c54c7..7e73df8bf 100644 --- a/docs/doxygen/html/namespacemembers_func_n.html +++ b/docs/doxygen/html/namespacemembers_func_n.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacemembers_func_o.html b/docs/doxygen/html/namespacemembers_func_o.html index adbbe7573..0857abf39 100644 --- a/docs/doxygen/html/namespacemembers_func_o.html +++ b/docs/doxygen/html/namespacemembers_func_o.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacemembers_func_p.html b/docs/doxygen/html/namespacemembers_func_p.html index 2c61f5bca..c6a20ddf5 100644 --- a/docs/doxygen/html/namespacemembers_func_p.html +++ b/docs/doxygen/html/namespacemembers_func_p.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacemembers_func_r.html b/docs/doxygen/html/namespacemembers_func_r.html index 1b5abb9b7..696905967 100644 --- a/docs/doxygen/html/namespacemembers_func_r.html +++ b/docs/doxygen/html/namespacemembers_func_r.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacemembers_func_s.html b/docs/doxygen/html/namespacemembers_func_s.html index 9c5ec673a..c16320b7a 100644 --- a/docs/doxygen/html/namespacemembers_func_s.html +++ b/docs/doxygen/html/namespacemembers_func_s.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -155,7 +155,8 @@

                              - s -

                              • studentT() : nc::random::detail, nc::random
                              • subtract() : nc
                              • sum() : nc
                              • -
                              • svd() : nc::linalg
                              • +
                              • svd() : nc::linalg
                              • +
                              • svdvals() : nc::linalg
                              • swap() : nc
                              • swapaxes() : nc
                              • swapCols() : nc
                              • diff --git a/docs/doxygen/html/namespacemembers_func_t.html b/docs/doxygen/html/namespacemembers_func_t.html index 212fe785e..a3581df89 100644 --- a/docs/doxygen/html/namespacemembers_func_t.html +++ b/docs/doxygen/html/namespacemembers_func_t.html @@ -50,7 +50,7 @@ Logo
                                NumCpp -  2.15.0 +  2.16.0
                                A Templatized Header Only C++ Implementation of the Python NumPy Library
                                diff --git a/docs/doxygen/html/namespacemembers_func_u.html b/docs/doxygen/html/namespacemembers_func_u.html index 86f066637..35473d4d0 100644 --- a/docs/doxygen/html/namespacemembers_func_u.html +++ b/docs/doxygen/html/namespacemembers_func_u.html @@ -50,7 +50,7 @@ Logo
                                NumCpp -  2.15.0 +  2.16.0
                                A Templatized Header Only C++ Implementation of the Python NumPy Library
                                diff --git a/docs/doxygen/html/namespacemembers_func_v.html b/docs/doxygen/html/namespacemembers_func_v.html index e3e47c78c..c1d246a13 100644 --- a/docs/doxygen/html/namespacemembers_func_v.html +++ b/docs/doxygen/html/namespacemembers_func_v.html @@ -50,7 +50,7 @@ Logo
                                NumCpp -  2.15.0 +  2.16.0
                                A Templatized Header Only C++ Implementation of the Python NumPy Library
                                diff --git a/docs/doxygen/html/namespacemembers_func_w.html b/docs/doxygen/html/namespacemembers_func_w.html index e3970571e..6550ab275 100644 --- a/docs/doxygen/html/namespacemembers_func_w.html +++ b/docs/doxygen/html/namespacemembers_func_w.html @@ -50,7 +50,7 @@ Logo
                                NumCpp -  2.15.0 +  2.16.0
                                A Templatized Header Only C++ Implementation of the Python NumPy Library
                                diff --git a/docs/doxygen/html/namespacemembers_func_z.html b/docs/doxygen/html/namespacemembers_func_z.html index 54d5010e3..824d2d6ac 100644 --- a/docs/doxygen/html/namespacemembers_func_z.html +++ b/docs/doxygen/html/namespacemembers_func_z.html @@ -50,7 +50,7 @@ Logo
                                NumCpp -  2.15.0 +  2.16.0
                                A Templatized Header Only C++ Implementation of the Python NumPy Library
                                diff --git a/docs/doxygen/html/namespacemembers_g.html b/docs/doxygen/html/namespacemembers_g.html index 487bdc75b..9f51feebd 100644 --- a/docs/doxygen/html/namespacemembers_g.html +++ b/docs/doxygen/html/namespacemembers_g.html @@ -50,7 +50,7 @@ Logo
                                NumCpp -  2.15.0 +  2.16.0
                                A Templatized Header Only C++ Implementation of the Python NumPy Library
                                diff --git a/docs/doxygen/html/namespacemembers_h.html b/docs/doxygen/html/namespacemembers_h.html index b4afa750f..188bea269 100644 --- a/docs/doxygen/html/namespacemembers_h.html +++ b/docs/doxygen/html/namespacemembers_h.html @@ -50,7 +50,7 @@ Logo
                                NumCpp -  2.15.0 +  2.16.0
                                A Templatized Header Only C++ Implementation of the Python NumPy Library
                                diff --git a/docs/doxygen/html/namespacemembers_i.html b/docs/doxygen/html/namespacemembers_i.html index d9f0e1116..c9876fe9a 100644 --- a/docs/doxygen/html/namespacemembers_i.html +++ b/docs/doxygen/html/namespacemembers_i.html @@ -50,7 +50,7 @@ Logo
                                NumCpp -  2.15.0 +  2.16.0
                                A Templatized Header Only C++ Implementation of the Python NumPy Library
                                diff --git a/docs/doxygen/html/namespacemembers_j.html b/docs/doxygen/html/namespacemembers_j.html index 26119f5a2..01361355e 100644 --- a/docs/doxygen/html/namespacemembers_j.html +++ b/docs/doxygen/html/namespacemembers_j.html @@ -50,7 +50,7 @@ Logo
                                NumCpp -  2.15.0 +  2.16.0
                                A Templatized Header Only C++ Implementation of the Python NumPy Library
                                diff --git a/docs/doxygen/html/namespacemembers_k.html b/docs/doxygen/html/namespacemembers_k.html index de46fe9a5..fb8d3ba12 100644 --- a/docs/doxygen/html/namespacemembers_k.html +++ b/docs/doxygen/html/namespacemembers_k.html @@ -50,7 +50,7 @@ Logo
                                NumCpp -  2.15.0 +  2.16.0
                                A Templatized Header Only C++ Implementation of the Python NumPy Library
                                diff --git a/docs/doxygen/html/namespacemembers_l.html b/docs/doxygen/html/namespacemembers_l.html index 2518c2120..645c531af 100644 --- a/docs/doxygen/html/namespacemembers_l.html +++ b/docs/doxygen/html/namespacemembers_l.html @@ -50,7 +50,7 @@ Logo
                                NumCpp -  2.15.0 +  2.16.0
                                A Templatized Header Only C++ Implementation of the Python NumPy Library
                                @@ -147,7 +147,7 @@

                                - l -

                              diff --git a/docs/doxygen/html/namespacemembers_m.html b/docs/doxygen/html/namespacemembers_m.html index 6fe7e31ec..1c9b546b6 100644 --- a/docs/doxygen/html/namespacemembers_m.html +++ b/docs/doxygen/html/namespacemembers_m.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacemembers_n.html b/docs/doxygen/html/namespacemembers_n.html index ad8137c2b..00ec7ce55 100644 --- a/docs/doxygen/html/namespacemembers_n.html +++ b/docs/doxygen/html/namespacemembers_n.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacemembers_o.html b/docs/doxygen/html/namespacemembers_o.html index 74e311f72..acf340c2e 100644 --- a/docs/doxygen/html/namespacemembers_o.html +++ b/docs/doxygen/html/namespacemembers_o.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacemembers_p.html b/docs/doxygen/html/namespacemembers_p.html index 9b4dcb62f..7601c6efe 100644 --- a/docs/doxygen/html/namespacemembers_p.html +++ b/docs/doxygen/html/namespacemembers_p.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacemembers_r.html b/docs/doxygen/html/namespacemembers_r.html index 94c6a6364..002fc3929 100644 --- a/docs/doxygen/html/namespacemembers_r.html +++ b/docs/doxygen/html/namespacemembers_r.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacemembers_s.html b/docs/doxygen/html/namespacemembers_s.html index 6bd2294e6..0acc1f6c6 100644 --- a/docs/doxygen/html/namespacemembers_s.html +++ b/docs/doxygen/html/namespacemembers_s.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -163,7 +163,8 @@

                              - s -

                              + + +

                              ◆ eig()

                              + +
                              +
                              +
                              +template<typename dtype >
                              + + + + + + + + + + + + + + + + + + +
                              std::pair< NdArray< double >, NdArray< double > > nc::linalg::eig (const NdArray< dtype > & inA,
                              double inTolerance = 1e-12 
                              )
                              +
                              +

                              Compute the eigen values and eigen vectors of a real symmetric matrix.

                              +

                              NumPy Reference: https://numpy.org/doc/stable/reference/generated/numpy.linalg.eig.html#numpy.linalg.eig

                              +
                              Parameters
                              + + + +
                              inAMatrix for which the eigen values and eigen vectors will be computed, must be a real, symmetric MxM array
                              inTolerance(default 1e-12)
                              +
                              +
                              +
                              Returns
                              std::pair<NdArray<double>, NdArray<double>> eigen values and eigen vectors
                              + +
                              +
                              + +

                              ◆ eigvals()

                              + +
                              +
                              +
                              +template<typename dtype >
                              + + + + + + + + + + + + + + + + + + +
                              NdArray< double > nc::linalg::eigvals (const NdArray< dtype > & inA,
                              double inTolerance = 1e-12 
                              )
                              +
                              +

                              Compute the eigen values of a real symmetric matrix.

                              +

                              NumPy Reference: https://numpy.org/doc/stable/reference/generated/numpy.linalg.eigvals.html

                              +
                              Parameters
                              + + + +
                              inAMatrix for which the eigen values and will be computed, must be a real, symmetric MxM array
                              inTolerance(default 1e-12)
                              +
                              +
                              +
                              Returns
                              NdArray
                              +
                              @@ -460,8 +550,8 @@

                              -

                              ◆ lstsq()

                              + +

                              ◆ lstsq()

                              @@ -478,13 +568,7 @@

                              const NdArray< dtype > &  - inB, - - - - - double  - inTolerance = 1e-12  + inB  @@ -498,8 +582,7 @@

                              Parameters
                              - - +
                              inAcoefficient matrix
                              inBOrdinate or "dependent variable" values. If b is two-dimensional, the least-squares solution is calculated for each of the K columns of b.
                              inTolerance(default 1e-12)
                              inBOrdinate or "dependent variable" values. If b is two-dimensional, the least-squares solution is calculated for each of the K columns of b.
                              @@ -704,8 +787,8 @@

                              -

                              ◆ svd()

                              + +

                              ◆ svd()

                              @@ -734,7 +817,7 @@

                              NdArray< double > &  - outVt  + outVT  @@ -750,13 +833,42 @@

                              inArrayNdArray to be SVDed outUNdArray output U outSNdArray output S - outVtNdArray output V transpose + outVTNdArray output V transpose
                              Examples
                              ReadMe.cpp.
                              +

                              +
                              + +

                              ◆ svdvals()

                              + +
                              +
                              +
                              +template<typename dtype >
                              + + + + + + + + +
                              NdArray< double > nc::linalg::svdvals (const NdArray< dtype > & inArray)
                              +
                              +

                              Singular Value Decomposition.

                              +

                              NumPy Reference: https://numpy.org/doc/stable/reference/generated/numpy.linalg.svd.html

                              +
                              Parameters
                              + + +
                              inArrayNdArray to be SVDed
                              +
                              +
                              +
                              Returns
                              array of singular values
                              +

                              diff --git a/docs/doxygen/html/namespacenc_1_1linalg.js b/docs/doxygen/html/namespacenc_1_1linalg.js index 6c6f67256..df9c045f1 100644 --- a/docs/doxygen/html/namespacenc_1_1linalg.js +++ b/docs/doxygen/html/namespacenc_1_1linalg.js @@ -6,17 +6,20 @@ var namespacenc_1_1linalg = [ "SVD", "classnc_1_1linalg_1_1_s_v_d.html", "classnc_1_1linalg_1_1_s_v_d" ], [ "cholesky", "namespacenc_1_1linalg.html#ae97a3a4f8b9f2d4253060db5928da6d1", null ], [ "det", "namespacenc_1_1linalg.html#a560873e98ef9b3d8da501ad6feb121e9", null ], + [ "eig", "namespacenc_1_1linalg.html#a1b037ada059b1292a794e6ffb1823a05", null ], + [ "eigvals", "namespacenc_1_1linalg.html#a2853cd2015993be7a86f9ba823601ca6", null ], [ "gaussNewtonNlls", "namespacenc_1_1linalg.html#a9de81d7c677cb58615fba70679e73f66", null ], [ "hat", "namespacenc_1_1linalg.html#ad93ac021edcd0c8f81891c93996dee25", null ], [ "hat", "namespacenc_1_1linalg.html#af55949f0049c2a7b1a3e1f36a31a678f", null ], [ "hat", "namespacenc_1_1linalg.html#afa7cc2a8a4084e94b4af00484d3a511e", null ], [ "inv", "namespacenc_1_1linalg.html#a2eeb58d0a34e50e79fcfe59f71c61b4d", null ], - [ "lstsq", "namespacenc_1_1linalg.html#a8baf25f50874e4bd27d2644a2730fb03", null ], + [ "lstsq", "namespacenc_1_1linalg.html#af96af1e6e215b975a74f12949b5f0b46", null ], [ "lu_decomposition", "namespacenc_1_1linalg.html#a60e7cebe243cc88b69d508b569456300", null ], [ "matrix_power", "namespacenc_1_1linalg.html#a59c33bf492f64017c673a151f890dcbf", null ], [ "multi_dot", "namespacenc_1_1linalg.html#a46188c640b2c3ee74418db676e8f3bce", null ], [ "pinv", "namespacenc_1_1linalg.html#a1ab0529b2e6d2bd4668051b8b7dcb85b", null ], [ "pivotLU_decomposition", "namespacenc_1_1linalg.html#a7e29068f07fa422d6c9185a4d91bf6a2", null ], [ "solve", "namespacenc_1_1linalg.html#afc9432e7c93e830c4ff8cff7f0a15771", null ], - [ "svd", "namespacenc_1_1linalg.html#acb38ad2613d50422afc539d005159055", null ] + [ "svd", "namespacenc_1_1linalg.html#a305c49baed6667d8d64b9cd13f2c5060", null ], + [ "svdvals", "namespacenc_1_1linalg.html#a9c3f05864405242a8917530242cdda9c", null ] ]; \ No newline at end of file diff --git a/docs/doxygen/html/namespacenc_1_1linalg_1_1detail.html b/docs/doxygen/html/namespacenc_1_1linalg_1_1detail.html index bd4898d79..cb3ba659b 100644 --- a/docs/doxygen/html/namespacenc_1_1linalg_1_1detail.html +++ b/docs/doxygen/html/namespacenc_1_1linalg_1_1detail.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1logger.html b/docs/doxygen/html/namespacenc_1_1logger.html index 7a526e9d3..a99a4c632 100644 --- a/docs/doxygen/html/namespacenc_1_1logger.html +++ b/docs/doxygen/html/namespacenc_1_1logger.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1logger_1_1detail.html b/docs/doxygen/html/namespacenc_1_1logger_1_1detail.html index ed2a7e2c9..fe5f1a409 100644 --- a/docs/doxygen/html/namespacenc_1_1logger_1_1detail.html +++ b/docs/doxygen/html/namespacenc_1_1logger_1_1detail.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1logger_1_1detail_1_1type__traits.html b/docs/doxygen/html/namespacenc_1_1logger_1_1detail_1_1type__traits.html index e938046cc..dd829c8c7 100644 --- a/docs/doxygen/html/namespacenc_1_1logger_1_1detail_1_1type__traits.html +++ b/docs/doxygen/html/namespacenc_1_1logger_1_1detail_1_1type__traits.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1polynomial.html b/docs/doxygen/html/namespacenc_1_1polynomial.html index dd936df11..4741a0067 100644 --- a/docs/doxygen/html/namespacenc_1_1polynomial.html +++ b/docs/doxygen/html/namespacenc_1_1polynomial.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1random.html b/docs/doxygen/html/namespacenc_1_1random.html index 6058ee559..d95493898 100644 --- a/docs/doxygen/html/namespacenc_1_1random.html +++ b/docs/doxygen/html/namespacenc_1_1random.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1random_1_1detail.html b/docs/doxygen/html/namespacenc_1_1random_1_1detail.html index 351adab30..fcf5e7551 100644 --- a/docs/doxygen/html/namespacenc_1_1random_1_1detail.html +++ b/docs/doxygen/html/namespacenc_1_1random_1_1detail.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1roots.html b/docs/doxygen/html/namespacenc_1_1roots.html index 36a9f5963..eae074a92 100644 --- a/docs/doxygen/html/namespacenc_1_1roots.html +++ b/docs/doxygen/html/namespacenc_1_1roots.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1rotations.html b/docs/doxygen/html/namespacenc_1_1rotations.html index c948d0216..8a496b07a 100644 --- a/docs/doxygen/html/namespacenc_1_1rotations.html +++ b/docs/doxygen/html/namespacenc_1_1rotations.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1special.html b/docs/doxygen/html/namespacenc_1_1special.html index 25024e536..f15e484b4 100644 --- a/docs/doxygen/html/namespacenc_1_1special.html +++ b/docs/doxygen/html/namespacenc_1_1special.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1stl__algorithms.html b/docs/doxygen/html/namespacenc_1_1stl__algorithms.html index 0d86d39cb..555f05d97 100644 --- a/docs/doxygen/html/namespacenc_1_1stl__algorithms.html +++ b/docs/doxygen/html/namespacenc_1_1stl__algorithms.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1type__traits.html b/docs/doxygen/html/namespacenc_1_1type__traits.html index 27e736b1b..c081f82b8 100644 --- a/docs/doxygen/html/namespacenc_1_1type__traits.html +++ b/docs/doxygen/html/namespacenc_1_1type__traits.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1utils.html b/docs/doxygen/html/namespacenc_1_1utils.html index 70b277b8d..7f54f7d03 100644 --- a/docs/doxygen/html/namespacenc_1_1utils.html +++ b/docs/doxygen/html/namespacenc_1_1utils.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespacenc_1_1utils_1_1timeit__detail.html b/docs/doxygen/html/namespacenc_1_1utils_1_1timeit__detail.html index 9ca5996e1..96de3a3a9 100644 --- a/docs/doxygen/html/namespacenc_1_1utils_1_1timeit__detail.html +++ b/docs/doxygen/html/namespacenc_1_1utils_1_1timeit__detail.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/namespaces.html b/docs/doxygen/html/namespaces.html index e073f08d4..31fead184 100644 --- a/docs/doxygen/html/namespaces.html +++ b/docs/doxygen/html/namespaces.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -156,7 +156,7 @@  CLegendrePolynomial  Nlinalg  Ndetail - CSVD + CSVDPerforms the singular value decomposition of a general matrix  Nlogger  NdetailRegister a global logger  Ntype_traits diff --git a/docs/doxygen/html/nan__to__num_8hpp.html b/docs/doxygen/html/nan__to__num_8hpp.html index 2fc4fde96..9bc4bd3cf 100644 --- a/docs/doxygen/html/nan__to__num_8hpp.html +++ b/docs/doxygen/html/nan__to__num_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nan__to__num_8hpp_source.html b/docs/doxygen/html/nan__to__num_8hpp_source.html index bfbf8fc47..018e833e3 100644 --- a/docs/doxygen/html/nan__to__num_8hpp_source.html +++ b/docs/doxygen/html/nan__to__num_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanargmax_8hpp.html b/docs/doxygen/html/nanargmax_8hpp.html index 4c59f255b..0e6bfbcc0 100644 --- a/docs/doxygen/html/nanargmax_8hpp.html +++ b/docs/doxygen/html/nanargmax_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanargmax_8hpp_source.html b/docs/doxygen/html/nanargmax_8hpp_source.html index b987725f5..cd93931f0 100644 --- a/docs/doxygen/html/nanargmax_8hpp_source.html +++ b/docs/doxygen/html/nanargmax_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanargmin_8hpp.html b/docs/doxygen/html/nanargmin_8hpp.html index 684795da8..857b1fe2a 100644 --- a/docs/doxygen/html/nanargmin_8hpp.html +++ b/docs/doxygen/html/nanargmin_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanargmin_8hpp_source.html b/docs/doxygen/html/nanargmin_8hpp_source.html index 799116df6..e3a9efd3e 100644 --- a/docs/doxygen/html/nanargmin_8hpp_source.html +++ b/docs/doxygen/html/nanargmin_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nancumprod_8hpp.html b/docs/doxygen/html/nancumprod_8hpp.html index 57161382d..1384ea691 100644 --- a/docs/doxygen/html/nancumprod_8hpp.html +++ b/docs/doxygen/html/nancumprod_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nancumprod_8hpp_source.html b/docs/doxygen/html/nancumprod_8hpp_source.html index 05e4062dd..f158ea199 100644 --- a/docs/doxygen/html/nancumprod_8hpp_source.html +++ b/docs/doxygen/html/nancumprod_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nancumsum_8hpp.html b/docs/doxygen/html/nancumsum_8hpp.html index d90b14d21..b1a3f9646 100644 --- a/docs/doxygen/html/nancumsum_8hpp.html +++ b/docs/doxygen/html/nancumsum_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nancumsum_8hpp_source.html b/docs/doxygen/html/nancumsum_8hpp_source.html index 2fbab7e77..7b266fd4e 100644 --- a/docs/doxygen/html/nancumsum_8hpp_source.html +++ b/docs/doxygen/html/nancumsum_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanmax_8hpp.html b/docs/doxygen/html/nanmax_8hpp.html index 2a98c6061..87c2db143 100644 --- a/docs/doxygen/html/nanmax_8hpp.html +++ b/docs/doxygen/html/nanmax_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanmax_8hpp_source.html b/docs/doxygen/html/nanmax_8hpp_source.html index e9b368658..5f1ac8b6c 100644 --- a/docs/doxygen/html/nanmax_8hpp_source.html +++ b/docs/doxygen/html/nanmax_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanmean_8hpp.html b/docs/doxygen/html/nanmean_8hpp.html index e0bbd66cd..ef49b5d69 100644 --- a/docs/doxygen/html/nanmean_8hpp.html +++ b/docs/doxygen/html/nanmean_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanmean_8hpp_source.html b/docs/doxygen/html/nanmean_8hpp_source.html index 9faf05b8b..0ebe0db15 100644 --- a/docs/doxygen/html/nanmean_8hpp_source.html +++ b/docs/doxygen/html/nanmean_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanmedian_8hpp.html b/docs/doxygen/html/nanmedian_8hpp.html index cfd86c884..97620746f 100644 --- a/docs/doxygen/html/nanmedian_8hpp.html +++ b/docs/doxygen/html/nanmedian_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanmedian_8hpp_source.html b/docs/doxygen/html/nanmedian_8hpp_source.html index 033371739..22ff3092c 100644 --- a/docs/doxygen/html/nanmedian_8hpp_source.html +++ b/docs/doxygen/html/nanmedian_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanmin_8hpp.html b/docs/doxygen/html/nanmin_8hpp.html index 3524132be..b709f9a6f 100644 --- a/docs/doxygen/html/nanmin_8hpp.html +++ b/docs/doxygen/html/nanmin_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanmin_8hpp_source.html b/docs/doxygen/html/nanmin_8hpp_source.html index a5f14d70c..bc30175dc 100644 --- a/docs/doxygen/html/nanmin_8hpp_source.html +++ b/docs/doxygen/html/nanmin_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanpercentile_8hpp.html b/docs/doxygen/html/nanpercentile_8hpp.html index a8257400b..4ae574a7d 100644 --- a/docs/doxygen/html/nanpercentile_8hpp.html +++ b/docs/doxygen/html/nanpercentile_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanpercentile_8hpp_source.html b/docs/doxygen/html/nanpercentile_8hpp_source.html index d5ac921cf..362163713 100644 --- a/docs/doxygen/html/nanpercentile_8hpp_source.html +++ b/docs/doxygen/html/nanpercentile_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanprod_8hpp.html b/docs/doxygen/html/nanprod_8hpp.html index 84266bf03..0b3ab0fc8 100644 --- a/docs/doxygen/html/nanprod_8hpp.html +++ b/docs/doxygen/html/nanprod_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanprod_8hpp_source.html b/docs/doxygen/html/nanprod_8hpp_source.html index 463074477..cc34cec20 100644 --- a/docs/doxygen/html/nanprod_8hpp_source.html +++ b/docs/doxygen/html/nanprod_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nans_8hpp.html b/docs/doxygen/html/nans_8hpp.html index b473bb343..62892dd22 100644 --- a/docs/doxygen/html/nans_8hpp.html +++ b/docs/doxygen/html/nans_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nans_8hpp_source.html b/docs/doxygen/html/nans_8hpp_source.html index d2ec86906..658c4e302 100644 --- a/docs/doxygen/html/nans_8hpp_source.html +++ b/docs/doxygen/html/nans_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nans__like_8hpp.html b/docs/doxygen/html/nans__like_8hpp.html index 17d4b884a..1971a14a9 100644 --- a/docs/doxygen/html/nans__like_8hpp.html +++ b/docs/doxygen/html/nans__like_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nans__like_8hpp_source.html b/docs/doxygen/html/nans__like_8hpp_source.html index caf9dbb7a..502433fde 100644 --- a/docs/doxygen/html/nans__like_8hpp_source.html +++ b/docs/doxygen/html/nans__like_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanstdev_8hpp.html b/docs/doxygen/html/nanstdev_8hpp.html index d94103b52..6a19c9ce8 100644 --- a/docs/doxygen/html/nanstdev_8hpp.html +++ b/docs/doxygen/html/nanstdev_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanstdev_8hpp_source.html b/docs/doxygen/html/nanstdev_8hpp_source.html index 8e581b7d2..df5b61c44 100644 --- a/docs/doxygen/html/nanstdev_8hpp_source.html +++ b/docs/doxygen/html/nanstdev_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nansum_8hpp.html b/docs/doxygen/html/nansum_8hpp.html index b67fe5937..1ddce30a3 100644 --- a/docs/doxygen/html/nansum_8hpp.html +++ b/docs/doxygen/html/nansum_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nansum_8hpp_source.html b/docs/doxygen/html/nansum_8hpp_source.html index dce0139dd..026d65b7a 100644 --- a/docs/doxygen/html/nansum_8hpp_source.html +++ b/docs/doxygen/html/nansum_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanvar_8hpp.html b/docs/doxygen/html/nanvar_8hpp.html index 0f7ac50eb..12fc58dac 100644 --- a/docs/doxygen/html/nanvar_8hpp.html +++ b/docs/doxygen/html/nanvar_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nanvar_8hpp_source.html b/docs/doxygen/html/nanvar_8hpp_source.html index f7d39b618..457d4d7e0 100644 --- a/docs/doxygen/html/nanvar_8hpp_source.html +++ b/docs/doxygen/html/nanvar_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/navtreedata.js b/docs/doxygen/html/navtreedata.js index 7a102e160..b0e055946 100644 --- a/docs/doxygen/html/navtreedata.js +++ b/docs/doxygen/html/navtreedata.js @@ -68,27 +68,27 @@ var NAVTREEINDEX = "_a_e_r_8hpp.html", "_functions_8hpp.html", "_random_2laplace_8hpp_source.html", -"arctan2_8hpp.html#a3d3c4c6b273e6eee45cf6359cf621980", -"classnc_1_1_data_cube.html#ae1a2b07f302a0eaf5d88b53ae2b1032d", -"classnc_1_1_nd_array.html#a4a493445c10ed3c299632bf8c7077cfb", -"classnc_1_1_nd_array.html#ad542648eb1451d93172a598b20585c9b", -"classnc_1_1_nd_array_iterator.html#a60d5e768fcd13cedd43febeb28148aea", -"classnc_1_1coordinates_1_1_cartesian.html#a6103f46e12b66ef0ab6f344a0688f228", -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac3efcb3adec07253d12d8b95c9c36b1a", -"classnc_1_1image_processing_1_1_pixel.html#ae47f279d2f0ba0921027e787e3773ee8", -"classnc_1_1random_1_1_r_n_g.html#ac22ec36dc61b3c1b3272eaf401ca7aa8", -"classnc_1_1rotations_1_1_quaternion.html#ab77da90ef63465f79bd79348330ca9a4", -"ellint__1_8hpp.html#a0198bebbecba53e96b36d270be457490", -"functions_~.html", -"logaddexp2_8hpp.html#a3e9f3a1d30bf2d5f83c8120680dea2a0", -"namespacenc.html#a1a94a76a63d77e13fddf0cfbad1fd562", -"namespacenc.html#a74174a26b4b6db41951d9ce4222ea724", -"namespacenc.html#acb0128da9c31422e62814a91d2075d9d", -"namespacenc_1_1fft.html#a116f74f399fd3283ec2446dec7d0cd1d", -"namespacenc_1_1random_1_1detail.html#ac1ca9eacb56a06f62433997a1338aa6d", -"norm_8hpp.html#a95b39a38a98986f81650168075d642d3", -"round_8hpp.html", -"tri_8hpp.html#a05c4de5a2c55f32884dec4b1d5634a36" +"arctan2_8hpp_source.html", +"classnc_1_1_data_cube.html#ae1bad1dd6ef3179273aaac7848ff87e0", +"classnc_1_1_nd_array.html#a4c605ecc083de3f2778d082f2cef2baa", +"classnc_1_1_nd_array.html#ad5f870f49c9601930423258dcc723c8e", +"classnc_1_1_nd_array_iterator.html#a6ae3aca3c7cb79a9fd985c1820b74c39", +"classnc_1_1coordinates_1_1_cartesian.html#a6a34b091a9bf8f03654a533bb469f66c", +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac77a08a542ba4d873c0a86047b25953d", +"classnc_1_1integrate_1_1_legendre_polynomial.html", +"classnc_1_1random_1_1_r_n_g.html#ab6d643e302961dd57e28d5cef0124377", +"classnc_1_1rotations_1_1_quaternion.html#ab054e067fc333a48582e291f95120866", +"dump_8hpp.html", +"functions_s.html", +"log2_8hpp_source.html", +"namespacenc.html#a171381462e430870904ae2a24ce2541a", +"namespacenc.html#a7227073082d530baaf7ebb96ee06995b", +"namespacenc.html#ac8b9e6bc83f8c55a3ae8bebb3dd00424", +"namespacenc_1_1endian.html", +"namespacenc_1_1random_1_1detail.html#a8a32f909feccd6758fdaf83e9165a9e1", +"non_central_chi_squared_8hpp.html#a3323c8874267147ac892a4140d2b3f8c", +"rodrigues_rotation_8hpp.html", +"tofile_8hpp.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; diff --git a/docs/doxygen/html/navtreeindex10.js b/docs/doxygen/html/navtreeindex10.js index 6e04f6258..94b55dfac 100644 --- a/docs/doxygen/html/navtreeindex10.js +++ b/docs/doxygen/html/navtreeindex10.js @@ -1,46 +1,50 @@ var NAVTREEINDEX10 = { -"classnc_1_1image_processing_1_1_pixel.html#ae47f279d2f0ba0921027e787e3773ee8":[4,0,0,9,3,6], -"classnc_1_1integrate_1_1_legendre_polynomial.html":[5,0,0,2,0], "classnc_1_1integrate_1_1_legendre_polynomial.html":[4,0,0,10,0], "classnc_1_1integrate_1_1_legendre_polynomial.html#a2e1fefae138e66215cd7586a85fc3642":[5,0,0,2,0,0], "classnc_1_1integrate_1_1_legendre_polynomial.html#a2e1fefae138e66215cd7586a85fc3642":[4,0,0,10,0,0], "classnc_1_1integrate_1_1_legendre_polynomial.html#a50df5ad7c7312b1bf814fcf8b5bb0d94":[5,0,0,2,0,1], "classnc_1_1integrate_1_1_legendre_polynomial.html#a50df5ad7c7312b1bf814fcf8b5bb0d94":[4,0,0,10,0,1], -"classnc_1_1integrate_1_1_legendre_polynomial.html#a5a97c4c53f878cda71129dbd4398b1a9":[5,0,0,2,0,2], "classnc_1_1integrate_1_1_legendre_polynomial.html#a5a97c4c53f878cda71129dbd4398b1a9":[4,0,0,10,0,2], +"classnc_1_1integrate_1_1_legendre_polynomial.html#a5a97c4c53f878cda71129dbd4398b1a9":[5,0,0,2,0,2], "classnc_1_1linalg_1_1_s_v_d.html":[4,0,0,11,1], "classnc_1_1linalg_1_1_s_v_d.html":[5,0,0,3,0], -"classnc_1_1linalg_1_1_s_v_d.html#a5f8126b97109ff2929842d861522de19":[5,0,0,3,0,2], -"classnc_1_1linalg_1_1_s_v_d.html#a5f8126b97109ff2929842d861522de19":[4,0,0,11,1,2], -"classnc_1_1linalg_1_1_s_v_d.html#aa3628ab32a1117f00645ce377c4b8654":[4,0,0,11,1,1], -"classnc_1_1linalg_1_1_s_v_d.html#aa3628ab32a1117f00645ce377c4b8654":[5,0,0,3,0,1], -"classnc_1_1linalg_1_1_s_v_d.html#ab0ff491e89a4242d15854683d0a45650":[4,0,0,11,1,4], -"classnc_1_1linalg_1_1_s_v_d.html#ab0ff491e89a4242d15854683d0a45650":[5,0,0,3,0,4], -"classnc_1_1linalg_1_1_s_v_d.html#ae0561bbc9633e436139258b0c70b98ba":[4,0,0,11,1,0], -"classnc_1_1linalg_1_1_s_v_d.html#ae0561bbc9633e436139258b0c70b98ba":[5,0,0,3,0,0], -"classnc_1_1linalg_1_1_s_v_d.html#af28a679bf8a8ef8af95184a26a6fbb4e":[4,0,0,11,1,3], -"classnc_1_1linalg_1_1_s_v_d.html#af28a679bf8a8ef8af95184a26a6fbb4e":[5,0,0,3,0,3], +"classnc_1_1linalg_1_1_s_v_d.html#a158910084dd44940dca481dbf5f92382":[4,0,0,11,1,5], +"classnc_1_1linalg_1_1_s_v_d.html#a158910084dd44940dca481dbf5f92382":[5,0,0,3,0,5], +"classnc_1_1linalg_1_1_s_v_d.html#a16f7636b9dc063e1636effbc71240f4b":[5,0,0,3,0,3], +"classnc_1_1linalg_1_1_s_v_d.html#a16f7636b9dc063e1636effbc71240f4b":[4,0,0,11,1,3], +"classnc_1_1linalg_1_1_s_v_d.html#a38a3dacc268968d6910618f0ff79073e":[4,0,0,11,1,4], +"classnc_1_1linalg_1_1_s_v_d.html#a38a3dacc268968d6910618f0ff79073e":[5,0,0,3,0,4], +"classnc_1_1linalg_1_1_s_v_d.html#a6dd64d76d201318568ce13eb305810fd":[5,0,0,3,0,7], +"classnc_1_1linalg_1_1_s_v_d.html#a6dd64d76d201318568ce13eb305810fd":[4,0,0,11,1,7], +"classnc_1_1linalg_1_1_s_v_d.html#a81c5d57cc757e95a3dc48cec03ca80fb":[4,0,0,11,1,2], +"classnc_1_1linalg_1_1_s_v_d.html#a81c5d57cc757e95a3dc48cec03ca80fb":[5,0,0,3,0,2], +"classnc_1_1linalg_1_1_s_v_d.html#ab4ba7cba1b76cd0a05805c894b93e356":[5,0,0,3,0,0], +"classnc_1_1linalg_1_1_s_v_d.html#ab4ba7cba1b76cd0a05805c894b93e356":[4,0,0,11,1,0], +"classnc_1_1linalg_1_1_s_v_d.html#ac242186475a35804492d717f933024bd":[5,0,0,3,0,1], +"classnc_1_1linalg_1_1_s_v_d.html#ac242186475a35804492d717f933024bd":[4,0,0,11,1,1], +"classnc_1_1linalg_1_1_s_v_d.html#adc73c87eefc76c303ef510b5c2534fa3":[4,0,0,11,1,6], +"classnc_1_1linalg_1_1_s_v_d.html#adc73c87eefc76c303ef510b5c2534fa3":[5,0,0,3,0,6], "classnc_1_1logger_1_1_binary_logger.html":[5,0,0,4,1], "classnc_1_1logger_1_1_binary_logger.html":[4,0,0,12,1], -"classnc_1_1logger_1_1_binary_logger.html#a10ad51c791e577870b345fc922d74ed6":[4,0,0,12,1,7], "classnc_1_1logger_1_1_binary_logger.html#a10ad51c791e577870b345fc922d74ed6":[5,0,0,4,1,7], -"classnc_1_1logger_1_1_binary_logger.html#a14fe5ec6cdfacc1f9ee3822e941c0dd6":[4,0,0,12,1,5], +"classnc_1_1logger_1_1_binary_logger.html#a10ad51c791e577870b345fc922d74ed6":[4,0,0,12,1,7], "classnc_1_1logger_1_1_binary_logger.html#a14fe5ec6cdfacc1f9ee3822e941c0dd6":[5,0,0,4,1,5], +"classnc_1_1logger_1_1_binary_logger.html#a14fe5ec6cdfacc1f9ee3822e941c0dd6":[4,0,0,12,1,5], "classnc_1_1logger_1_1_binary_logger.html#a19c5b505be266ecb6d7426a58f0fbde7":[4,0,0,12,1,0], "classnc_1_1logger_1_1_binary_logger.html#a19c5b505be266ecb6d7426a58f0fbde7":[5,0,0,4,1,0], -"classnc_1_1logger_1_1_binary_logger.html#a304694a5e06d6fa9311119443d38d9ec":[5,0,0,4,1,1], "classnc_1_1logger_1_1_binary_logger.html#a304694a5e06d6fa9311119443d38d9ec":[4,0,0,12,1,1], -"classnc_1_1logger_1_1_binary_logger.html#a3396f8d7deb522f18f6e74de79af70c7":[5,0,0,4,1,4], +"classnc_1_1logger_1_1_binary_logger.html#a304694a5e06d6fa9311119443d38d9ec":[5,0,0,4,1,1], "classnc_1_1logger_1_1_binary_logger.html#a3396f8d7deb522f18f6e74de79af70c7":[4,0,0,12,1,4], -"classnc_1_1logger_1_1_binary_logger.html#abf341d2d1c67e4b91a30abd1a2be81dc":[5,0,0,4,1,6], +"classnc_1_1logger_1_1_binary_logger.html#a3396f8d7deb522f18f6e74de79af70c7":[5,0,0,4,1,4], "classnc_1_1logger_1_1_binary_logger.html#abf341d2d1c67e4b91a30abd1a2be81dc":[4,0,0,12,1,6], -"classnc_1_1logger_1_1_binary_logger.html#aca073e629ccc22b17819e14145455e56":[4,0,0,12,1,3], +"classnc_1_1logger_1_1_binary_logger.html#abf341d2d1c67e4b91a30abd1a2be81dc":[5,0,0,4,1,6], "classnc_1_1logger_1_1_binary_logger.html#aca073e629ccc22b17819e14145455e56":[5,0,0,4,1,3], -"classnc_1_1logger_1_1_binary_logger.html#accc7216d949492b2e5f2ccc74454c2ce":[4,0,0,12,1,2], +"classnc_1_1logger_1_1_binary_logger.html#aca073e629ccc22b17819e14145455e56":[4,0,0,12,1,3], "classnc_1_1logger_1_1_binary_logger.html#accc7216d949492b2e5f2ccc74454c2ce":[5,0,0,4,1,2], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html":[4,0,0,12,0,1], +"classnc_1_1logger_1_1_binary_logger.html#accc7216d949492b2e5f2ccc74454c2ce":[4,0,0,12,1,2], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html":[5,0,0,4,0,1], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html":[4,0,0,12,0,1], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a06c26c8a3f5e41865221329bf35836b2":[5,0,0,4,0,1,3], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a06c26c8a3f5e41865221329bf35836b2":[4,0,0,12,0,1,3], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a0bf9236c9f4cff4de753547d6ebae1ae":[5,0,0,4,0,1,22], @@ -49,134 +53,134 @@ var NAVTREEINDEX10 = "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a2c2b5fcd121c9857f5db4ab6662ea1e9":[4,0,0,12,0,1,5], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a3aca7ed321528ee82085970a7b15887c":[5,0,0,4,0,1,15], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a3aca7ed321528ee82085970a7b15887c":[4,0,0,12,0,1,15], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a3add35e141c5f4ad3452af9587a42dcd":[5,0,0,4,0,1,13], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a3add35e141c5f4ad3452af9587a42dcd":[4,0,0,12,0,1,13], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a3add35e141c5f4ad3452af9587a42dcd":[5,0,0,4,0,1,13], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a6e662caa3a0096321c77bff6a426735d":[5,0,0,4,0,1,16], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a6e662caa3a0096321c77bff6a426735d":[4,0,0,12,0,1,16], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a746e1215de525e2f8912e9cdecb39e19":[5,0,0,4,0,1,11], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a746e1215de525e2f8912e9cdecb39e19":[4,0,0,12,0,1,11], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a90ce6de1083f65dd45ad637c9998bd01":[5,0,0,4,0,1,0], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a90ce6de1083f65dd45ad637c9998bd01":[4,0,0,12,0,1,0], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#aa26f32ed5901a96cf7231568012cbe1c":[5,0,0,4,0,1,18], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#aa26f32ed5901a96cf7231568012cbe1c":[4,0,0,12,0,1,18], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#aa9a6bca969be19115457bd5bd37b6f7f":[4,0,0,12,0,1,2], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#aa26f32ed5901a96cf7231568012cbe1c":[5,0,0,4,0,1,18], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#aa9a6bca969be19115457bd5bd37b6f7f":[5,0,0,4,0,1,2], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#aaab1d5f2c6eef6295f2c7b8535e3a739":[4,0,0,12,0,1,9], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#aa9a6bca969be19115457bd5bd37b6f7f":[4,0,0,12,0,1,2], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#aaab1d5f2c6eef6295f2c7b8535e3a739":[5,0,0,4,0,1,9], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#aaab1d5f2c6eef6295f2c7b8535e3a739":[4,0,0,12,0,1,9], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ace9074b5e2606016922d5361cfb98444":[4,0,0,12,0,1,21], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ace9074b5e2606016922d5361cfb98444":[5,0,0,4,0,1,21], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad0e4ed44b40dd968cc573331a00d2663":[4,0,0,12,0,1,17], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad0e4ed44b40dd968cc573331a00d2663":[5,0,0,4,0,1,17], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad1387de397a0a5109b3d8f0da4c9abd9":[4,0,0,12,0,1,6], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad1387de397a0a5109b3d8f0da4c9abd9":[5,0,0,4,0,1,6], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad35652c4b06036e4a1b32b0cd0de47b3":[4,0,0,12,0,1,7], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad1387de397a0a5109b3d8f0da4c9abd9":[4,0,0,12,0,1,6], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad35652c4b06036e4a1b32b0cd0de47b3":[5,0,0,4,0,1,7], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad35652c4b06036e4a1b32b0cd0de47b3":[4,0,0,12,0,1,7], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad3b59c6bea547cf8d83b5987a87e2d24":[5,0,0,4,0,1,4], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad3b59c6bea547cf8d83b5987a87e2d24":[4,0,0,12,0,1,4], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad873766c32fc73b7d67bcac5362d2731":[5,0,0,4,0,1,8], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad873766c32fc73b7d67bcac5362d2731":[4,0,0,12,0,1,8], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ade350e9f0fadf0cb73a5fd663fe7aa6e":[4,0,0,12,0,1,1], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ad873766c32fc73b7d67bcac5362d2731":[5,0,0,4,0,1,8], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ade350e9f0fadf0cb73a5fd663fe7aa6e":[5,0,0,4,0,1,1], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ade350e9f0fadf0cb73a5fd663fe7aa6e":[4,0,0,12,0,1,1], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae22bd6c329f8c98eff7015d73ac29462":[5,0,0,4,0,1,20], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae22bd6c329f8c98eff7015d73ac29462":[4,0,0,12,0,1,20], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae5dc8913ba9d11738f57dbf9a21189d1":[4,0,0,12,0,1,14], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae5dc8913ba9d11738f57dbf9a21189d1":[5,0,0,4,0,1,14], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae9dab4ac4deca2a3c0613af1714e4a08":[5,0,0,4,0,1,12], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae5dc8913ba9d11738f57dbf9a21189d1":[4,0,0,12,0,1,14], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae9dab4ac4deca2a3c0613af1714e4a08":[4,0,0,12,0,1,12], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afb999d453f7b893f479337922bf80c9b":[5,0,0,4,0,1,10], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae9dab4ac4deca2a3c0613af1714e4a08":[5,0,0,4,0,1,12], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afb999d453f7b893f479337922bf80c9b":[4,0,0,12,0,1,10], -"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afc00f8619bae364550863354d4deaf3c":[4,0,0,12,0,1,19], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afb999d453f7b893f479337922bf80c9b":[5,0,0,4,0,1,10], "classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afc00f8619bae364550863354d4deaf3c":[5,0,0,4,0,1,19], -"classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html":[5,0,0,4,0,0,0], +"classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afc00f8619bae364550863354d4deaf3c":[4,0,0,12,0,1,19], "classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html":[4,0,0,12,0,0,0], +"classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html":[5,0,0,4,0,0,0], "classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html#abcefce32a229b9072bce3593e02fe319":[4,0,0,12,0,0,0,0], "classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html#abcefce32a229b9072bce3593e02fe319":[5,0,0,4,0,0,0,0], -"classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html":[4,0,0,12,0,0,1], "classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html":[5,0,0,4,0,0,1], +"classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html":[4,0,0,12,0,0,1], "classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html#a5fb6e321c54ab9ccc32f1754ec99edb4":[4,0,0,12,0,0,1,0], "classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html#a5fb6e321c54ab9ccc32f1754ec99edb4":[5,0,0,4,0,0,1,0], -"classnc_1_1polynomial_1_1_poly1d.html":[5,0,0,5,0], "classnc_1_1polynomial_1_1_poly1d.html":[4,0,0,13,0], -"classnc_1_1polynomial_1_1_poly1d.html#a013822c468194720dbc7e70438746fc5":[5,0,0,5,0,17], +"classnc_1_1polynomial_1_1_poly1d.html":[5,0,0,5,0], "classnc_1_1polynomial_1_1_poly1d.html#a013822c468194720dbc7e70438746fc5":[4,0,0,13,0,17], +"classnc_1_1polynomial_1_1_poly1d.html#a013822c468194720dbc7e70438746fc5":[5,0,0,5,0,17], "classnc_1_1polynomial_1_1_poly1d.html#a0d0536c7341e12fe924e00d0f0f40a05":[4,0,0,13,0,13], "classnc_1_1polynomial_1_1_poly1d.html#a0d0536c7341e12fe924e00d0f0f40a05":[5,0,0,5,0,13], -"classnc_1_1polynomial_1_1_poly1d.html#a194a8f7ba0dcf3087779fdd37be77df6":[5,0,0,5,0,8], "classnc_1_1polynomial_1_1_poly1d.html#a194a8f7ba0dcf3087779fdd37be77df6":[4,0,0,13,0,8], -"classnc_1_1polynomial_1_1_poly1d.html#a1b995f2dd0a04fcb33345a1232c66e6f":[5,0,0,5,0,20], +"classnc_1_1polynomial_1_1_poly1d.html#a194a8f7ba0dcf3087779fdd37be77df6":[5,0,0,5,0,8], "classnc_1_1polynomial_1_1_poly1d.html#a1b995f2dd0a04fcb33345a1232c66e6f":[4,0,0,13,0,20], -"classnc_1_1polynomial_1_1_poly1d.html#a28696fdd89d1c2f32c4a0f899f07ae60":[4,0,0,13,0,15], +"classnc_1_1polynomial_1_1_poly1d.html#a1b995f2dd0a04fcb33345a1232c66e6f":[5,0,0,5,0,20], "classnc_1_1polynomial_1_1_poly1d.html#a28696fdd89d1c2f32c4a0f899f07ae60":[5,0,0,5,0,15], +"classnc_1_1polynomial_1_1_poly1d.html#a28696fdd89d1c2f32c4a0f899f07ae60":[4,0,0,13,0,15], "classnc_1_1polynomial_1_1_poly1d.html#a2fb68aababcddb6da10c9b1ffc29f727":[5,0,0,5,0,7], "classnc_1_1polynomial_1_1_poly1d.html#a2fb68aababcddb6da10c9b1ffc29f727":[4,0,0,13,0,7], -"classnc_1_1polynomial_1_1_poly1d.html#a30777a0dd9351cf64f96959dad0d9ba5":[5,0,0,5,0,0], "classnc_1_1polynomial_1_1_poly1d.html#a30777a0dd9351cf64f96959dad0d9ba5":[4,0,0,13,0,0], -"classnc_1_1polynomial_1_1_poly1d.html#a36254243c290ca82f43f3e6c8b5b6c10":[4,0,0,13,0,10], +"classnc_1_1polynomial_1_1_poly1d.html#a30777a0dd9351cf64f96959dad0d9ba5":[5,0,0,5,0,0], "classnc_1_1polynomial_1_1_poly1d.html#a36254243c290ca82f43f3e6c8b5b6c10":[5,0,0,5,0,10], -"classnc_1_1polynomial_1_1_poly1d.html#a4060b78a9003acdf231f0cbba5c422ec":[4,0,0,13,0,14], +"classnc_1_1polynomial_1_1_poly1d.html#a36254243c290ca82f43f3e6c8b5b6c10":[4,0,0,13,0,10], "classnc_1_1polynomial_1_1_poly1d.html#a4060b78a9003acdf231f0cbba5c422ec":[5,0,0,5,0,14], -"classnc_1_1polynomial_1_1_poly1d.html#a4f7f317a4ecbc855aabd4087e1c1b9a2":[5,0,0,5,0,1], +"classnc_1_1polynomial_1_1_poly1d.html#a4060b78a9003acdf231f0cbba5c422ec":[4,0,0,13,0,14], "classnc_1_1polynomial_1_1_poly1d.html#a4f7f317a4ecbc855aabd4087e1c1b9a2":[4,0,0,13,0,1], -"classnc_1_1polynomial_1_1_poly1d.html#a69e6f1c7698236f2a361b598767a5d38":[4,0,0,13,0,18], +"classnc_1_1polynomial_1_1_poly1d.html#a4f7f317a4ecbc855aabd4087e1c1b9a2":[5,0,0,5,0,1], "classnc_1_1polynomial_1_1_poly1d.html#a69e6f1c7698236f2a361b598767a5d38":[5,0,0,5,0,18], +"classnc_1_1polynomial_1_1_poly1d.html#a69e6f1c7698236f2a361b598767a5d38":[4,0,0,13,0,18], "classnc_1_1polynomial_1_1_poly1d.html#a6a062e1c37f8ed8619997014e36e9658":[5,0,0,5,0,9], "classnc_1_1polynomial_1_1_poly1d.html#a6a062e1c37f8ed8619997014e36e9658":[4,0,0,13,0,9], "classnc_1_1polynomial_1_1_poly1d.html#a7e31c4af1b8b0bfe211725224ad44d6b":[4,0,0,13,0,3], "classnc_1_1polynomial_1_1_poly1d.html#a7e31c4af1b8b0bfe211725224ad44d6b":[5,0,0,5,0,3], -"classnc_1_1polynomial_1_1_poly1d.html#a881a194909e80712919e961452a61f8f":[5,0,0,5,0,6], "classnc_1_1polynomial_1_1_poly1d.html#a881a194909e80712919e961452a61f8f":[4,0,0,13,0,6], -"classnc_1_1polynomial_1_1_poly1d.html#a8fe067a57f7a064a81eccf4fb7c5a74d":[4,0,0,13,0,16], +"classnc_1_1polynomial_1_1_poly1d.html#a881a194909e80712919e961452a61f8f":[5,0,0,5,0,6], "classnc_1_1polynomial_1_1_poly1d.html#a8fe067a57f7a064a81eccf4fb7c5a74d":[5,0,0,5,0,16], -"classnc_1_1polynomial_1_1_poly1d.html#a9a5873bc4f595a80ecb4380c1abe9d23":[4,0,0,13,0,11], +"classnc_1_1polynomial_1_1_poly1d.html#a8fe067a57f7a064a81eccf4fb7c5a74d":[4,0,0,13,0,16], "classnc_1_1polynomial_1_1_poly1d.html#a9a5873bc4f595a80ecb4380c1abe9d23":[5,0,0,5,0,11], -"classnc_1_1polynomial_1_1_poly1d.html#aa5c091077a037bab14a1c558ece21435":[4,0,0,13,0,23], +"classnc_1_1polynomial_1_1_poly1d.html#a9a5873bc4f595a80ecb4380c1abe9d23":[4,0,0,13,0,11], "classnc_1_1polynomial_1_1_poly1d.html#aa5c091077a037bab14a1c558ece21435":[5,0,0,5,0,23], -"classnc_1_1polynomial_1_1_poly1d.html#ab17f5e0983d6c66a3419cb331d158395":[4,0,0,13,0,22], +"classnc_1_1polynomial_1_1_poly1d.html#aa5c091077a037bab14a1c558ece21435":[4,0,0,13,0,23], "classnc_1_1polynomial_1_1_poly1d.html#ab17f5e0983d6c66a3419cb331d158395":[5,0,0,5,0,22], +"classnc_1_1polynomial_1_1_poly1d.html#ab17f5e0983d6c66a3419cb331d158395":[4,0,0,13,0,22], "classnc_1_1polynomial_1_1_poly1d.html#ab2156e21533f3d21b39dfd351178c0ad":[5,0,0,5,0,19], "classnc_1_1polynomial_1_1_poly1d.html#ab2156e21533f3d21b39dfd351178c0ad":[4,0,0,13,0,19], -"classnc_1_1polynomial_1_1_poly1d.html#ab978ca2f65c7cd640309c1be86aa9141":[5,0,0,5,0,21], "classnc_1_1polynomial_1_1_poly1d.html#ab978ca2f65c7cd640309c1be86aa9141":[4,0,0,13,0,21], -"classnc_1_1polynomial_1_1_poly1d.html#ac82910d648a2a3cfd2301e12907414dd":[5,0,0,5,0,12], +"classnc_1_1polynomial_1_1_poly1d.html#ab978ca2f65c7cd640309c1be86aa9141":[5,0,0,5,0,21], "classnc_1_1polynomial_1_1_poly1d.html#ac82910d648a2a3cfd2301e12907414dd":[4,0,0,13,0,12], -"classnc_1_1polynomial_1_1_poly1d.html#adcbfe7e5fe2ed3b73bc5c81a73ece1cb":[4,0,0,13,0,2], +"classnc_1_1polynomial_1_1_poly1d.html#ac82910d648a2a3cfd2301e12907414dd":[5,0,0,5,0,12], "classnc_1_1polynomial_1_1_poly1d.html#adcbfe7e5fe2ed3b73bc5c81a73ece1cb":[5,0,0,5,0,2], +"classnc_1_1polynomial_1_1_poly1d.html#adcbfe7e5fe2ed3b73bc5c81a73ece1cb":[4,0,0,13,0,2], "classnc_1_1polynomial_1_1_poly1d.html#adcedc353f4d1f6cbc5e89d37a7b1f6fd":[4,0,0,13,0,24], "classnc_1_1polynomial_1_1_poly1d.html#adcedc353f4d1f6cbc5e89d37a7b1f6fd":[5,0,0,5,0,24], "classnc_1_1polynomial_1_1_poly1d.html#adf75c8dad7d05c35e4364149f87cf693":[5,0,0,5,0,4], "classnc_1_1polynomial_1_1_poly1d.html#adf75c8dad7d05c35e4364149f87cf693":[4,0,0,13,0,4], -"classnc_1_1polynomial_1_1_poly1d.html#aefda1bab9a8a39f11f8bd74febfaf879":[5,0,0,5,0,5], "classnc_1_1polynomial_1_1_poly1d.html#aefda1bab9a8a39f11f8bd74febfaf879":[4,0,0,13,0,5], -"classnc_1_1random_1_1_r_n_g.html":[4,0,0,14,1], +"classnc_1_1polynomial_1_1_poly1d.html#aefda1bab9a8a39f11f8bd74febfaf879":[5,0,0,5,0,5], "classnc_1_1random_1_1_r_n_g.html":[5,0,0,6,0], +"classnc_1_1random_1_1_r_n_g.html":[4,0,0,14,1], "classnc_1_1random_1_1_r_n_g.html#a06e911772eb937ef54b43333c62d377e":[4,0,0,14,1,43], "classnc_1_1random_1_1_r_n_g.html#a06e911772eb937ef54b43333c62d377e":[5,0,0,6,0,43], "classnc_1_1random_1_1_r_n_g.html#a0760b569fdf025da3d6c882f54bbb2b3":[5,0,0,6,0,35], "classnc_1_1random_1_1_r_n_g.html#a0760b569fdf025da3d6c882f54bbb2b3":[4,0,0,14,1,35], "classnc_1_1random_1_1_r_n_g.html#a08105745a540e6ad098c3025d4054830":[4,0,0,14,1,15], "classnc_1_1random_1_1_r_n_g.html#a08105745a540e6ad098c3025d4054830":[5,0,0,6,0,15], -"classnc_1_1random_1_1_r_n_g.html#a0ee6a1fe5b078e6c88ada5c69a2a890d":[4,0,0,14,1,23], "classnc_1_1random_1_1_r_n_g.html#a0ee6a1fe5b078e6c88ada5c69a2a890d":[5,0,0,6,0,23], +"classnc_1_1random_1_1_r_n_g.html#a0ee6a1fe5b078e6c88ada5c69a2a890d":[4,0,0,14,1,23], "classnc_1_1random_1_1_r_n_g.html#a12c376e4e1e6c71d0ed7efdc720484e1":[5,0,0,6,0,3], "classnc_1_1random_1_1_r_n_g.html#a12c376e4e1e6c71d0ed7efdc720484e1":[4,0,0,14,1,3], "classnc_1_1random_1_1_r_n_g.html#a19e62f1d8c49f784836b1c3942ccae0a":[5,0,0,6,0,54], "classnc_1_1random_1_1_r_n_g.html#a19e62f1d8c49f784836b1c3942ccae0a":[4,0,0,14,1,54], -"classnc_1_1random_1_1_r_n_g.html#a1df9a95c6264a2896991fc9795d528dc":[4,0,0,14,1,55], "classnc_1_1random_1_1_r_n_g.html#a1df9a95c6264a2896991fc9795d528dc":[5,0,0,6,0,55], -"classnc_1_1random_1_1_r_n_g.html#a23f3e5fc32a71376bd7c46b0d53976e3":[4,0,0,14,1,45], +"classnc_1_1random_1_1_r_n_g.html#a1df9a95c6264a2896991fc9795d528dc":[4,0,0,14,1,55], "classnc_1_1random_1_1_r_n_g.html#a23f3e5fc32a71376bd7c46b0d53976e3":[5,0,0,6,0,45], -"classnc_1_1random_1_1_r_n_g.html#a2bfbb2ffadb33143b31879845b5047f4":[5,0,0,6,0,8], +"classnc_1_1random_1_1_r_n_g.html#a23f3e5fc32a71376bd7c46b0d53976e3":[4,0,0,14,1,45], "classnc_1_1random_1_1_r_n_g.html#a2bfbb2ffadb33143b31879845b5047f4":[4,0,0,14,1,8], -"classnc_1_1random_1_1_r_n_g.html#a2d57790f9bf574286990c91d1d758192":[5,0,0,6,0,6], +"classnc_1_1random_1_1_r_n_g.html#a2bfbb2ffadb33143b31879845b5047f4":[5,0,0,6,0,8], "classnc_1_1random_1_1_r_n_g.html#a2d57790f9bf574286990c91d1d758192":[4,0,0,14,1,6], +"classnc_1_1random_1_1_r_n_g.html#a2d57790f9bf574286990c91d1d758192":[5,0,0,6,0,6], "classnc_1_1random_1_1_r_n_g.html#a31c17ed48b3d97e4888bbbd2d56c5243":[4,0,0,14,1,28], "classnc_1_1random_1_1_r_n_g.html#a31c17ed48b3d97e4888bbbd2d56c5243":[5,0,0,6,0,28], -"classnc_1_1random_1_1_r_n_g.html#a325ddc3ae1b4d11d90ac4f7eb5af4e25":[5,0,0,6,0,10], "classnc_1_1random_1_1_r_n_g.html#a325ddc3ae1b4d11d90ac4f7eb5af4e25":[4,0,0,14,1,10], -"classnc_1_1random_1_1_r_n_g.html#a341f65c24142339cead2ef0a2470e791":[5,0,0,6,0,12], +"classnc_1_1random_1_1_r_n_g.html#a325ddc3ae1b4d11d90ac4f7eb5af4e25":[5,0,0,6,0,10], "classnc_1_1random_1_1_r_n_g.html#a341f65c24142339cead2ef0a2470e791":[4,0,0,14,1,12], -"classnc_1_1random_1_1_r_n_g.html#a3611e59a0d206bfb567ea3d840ec5fe9":[5,0,0,6,0,44], +"classnc_1_1random_1_1_r_n_g.html#a341f65c24142339cead2ef0a2470e791":[5,0,0,6,0,12], "classnc_1_1random_1_1_r_n_g.html#a3611e59a0d206bfb567ea3d840ec5fe9":[4,0,0,14,1,44], +"classnc_1_1random_1_1_r_n_g.html#a3611e59a0d206bfb567ea3d840ec5fe9":[5,0,0,6,0,44], "classnc_1_1random_1_1_r_n_g.html#a3637febf358cb70540e8fe099120b922":[4,0,0,14,1,5], "classnc_1_1random_1_1_r_n_g.html#a3637febf358cb70540e8fe099120b922":[5,0,0,6,0,5], "classnc_1_1random_1_1_r_n_g.html#a3a65dc0a17943c15f87769e1d5d45b8c":[4,0,0,14,1,29], @@ -185,12 +189,12 @@ var NAVTREEINDEX10 = "classnc_1_1random_1_1_r_n_g.html#a461f38b5aef6ae05b79e26cdaa3e0ca9":[5,0,0,6,0,51], "classnc_1_1random_1_1_r_n_g.html#a4706294a8b8ee0ec46dde802d2b37e1d":[4,0,0,14,1,53], "classnc_1_1random_1_1_r_n_g.html#a4706294a8b8ee0ec46dde802d2b37e1d":[5,0,0,6,0,53], -"classnc_1_1random_1_1_r_n_g.html#a4c43b36d7a177163187befacfcb37034":[4,0,0,14,1,31], "classnc_1_1random_1_1_r_n_g.html#a4c43b36d7a177163187befacfcb37034":[5,0,0,6,0,31], +"classnc_1_1random_1_1_r_n_g.html#a4c43b36d7a177163187befacfcb37034":[4,0,0,14,1,31], "classnc_1_1random_1_1_r_n_g.html#a52d59c71cef03d8efd60cfe8db5f0009":[5,0,0,6,0,40], "classnc_1_1random_1_1_r_n_g.html#a52d59c71cef03d8efd60cfe8db5f0009":[4,0,0,14,1,40], -"classnc_1_1random_1_1_r_n_g.html#a53920102dbb082afdfd4890b73c2aec3":[4,0,0,14,1,36], "classnc_1_1random_1_1_r_n_g.html#a53920102dbb082afdfd4890b73c2aec3":[5,0,0,6,0,36], +"classnc_1_1random_1_1_r_n_g.html#a53920102dbb082afdfd4890b73c2aec3":[4,0,0,14,1,36], "classnc_1_1random_1_1_r_n_g.html#a54de489fff5609feed653b80b83680bb":[5,0,0,6,0,41], "classnc_1_1random_1_1_r_n_g.html#a54de489fff5609feed653b80b83680bb":[4,0,0,14,1,41], "classnc_1_1random_1_1_r_n_g.html#a561bec2943118105989cf8b6c969be89":[5,0,0,6,0,42], @@ -205,28 +209,28 @@ var NAVTREEINDEX10 = "classnc_1_1random_1_1_r_n_g.html#a66b9ba155b496bdc9e3d5609121cf528":[4,0,0,14,1,46], "classnc_1_1random_1_1_r_n_g.html#a68549ab6c5785632bc5d0e0b4350e220":[4,0,0,14,1,1], "classnc_1_1random_1_1_r_n_g.html#a68549ab6c5785632bc5d0e0b4350e220":[5,0,0,6,0,1], -"classnc_1_1random_1_1_r_n_g.html#a6c8199f0f3aa6438fcb893aee0b5cdcc":[4,0,0,14,1,56], "classnc_1_1random_1_1_r_n_g.html#a6c8199f0f3aa6438fcb893aee0b5cdcc":[5,0,0,6,0,56], +"classnc_1_1random_1_1_r_n_g.html#a6c8199f0f3aa6438fcb893aee0b5cdcc":[4,0,0,14,1,56], "classnc_1_1random_1_1_r_n_g.html#a722b97fd101adf88ed061fe5d7b04dd9":[4,0,0,14,1,32], "classnc_1_1random_1_1_r_n_g.html#a722b97fd101adf88ed061fe5d7b04dd9":[5,0,0,6,0,32], -"classnc_1_1random_1_1_r_n_g.html#a769a75c202cb7933d8dff00baf3ae026":[5,0,0,6,0,25], "classnc_1_1random_1_1_r_n_g.html#a769a75c202cb7933d8dff00baf3ae026":[4,0,0,14,1,25], +"classnc_1_1random_1_1_r_n_g.html#a769a75c202cb7933d8dff00baf3ae026":[5,0,0,6,0,25], "classnc_1_1random_1_1_r_n_g.html#a77c47616bc244a197edc12d24b6e8bce":[4,0,0,14,1,11], "classnc_1_1random_1_1_r_n_g.html#a77c47616bc244a197edc12d24b6e8bce":[5,0,0,6,0,11], -"classnc_1_1random_1_1_r_n_g.html#a77e61ce3a9dc97b6d94d1e33486e4dde":[5,0,0,6,0,9], "classnc_1_1random_1_1_r_n_g.html#a77e61ce3a9dc97b6d94d1e33486e4dde":[4,0,0,14,1,9], +"classnc_1_1random_1_1_r_n_g.html#a77e61ce3a9dc97b6d94d1e33486e4dde":[5,0,0,6,0,9], "classnc_1_1random_1_1_r_n_g.html#a7a8cf1c4f63f4c5c2a378dda89ff2203":[4,0,0,14,1,17], "classnc_1_1random_1_1_r_n_g.html#a7a8cf1c4f63f4c5c2a378dda89ff2203":[5,0,0,6,0,17], -"classnc_1_1random_1_1_r_n_g.html#a7bc35c4f5072b85f250e179b3b0204f2":[4,0,0,14,1,18], "classnc_1_1random_1_1_r_n_g.html#a7bc35c4f5072b85f250e179b3b0204f2":[5,0,0,6,0,18], -"classnc_1_1random_1_1_r_n_g.html#a87cea23ca82fb07d030fb5ac54144b75":[4,0,0,14,1,47], +"classnc_1_1random_1_1_r_n_g.html#a7bc35c4f5072b85f250e179b3b0204f2":[4,0,0,14,1,18], "classnc_1_1random_1_1_r_n_g.html#a87cea23ca82fb07d030fb5ac54144b75":[5,0,0,6,0,47], -"classnc_1_1random_1_1_r_n_g.html#a8882c8c42caef3308bba1cfddb456221":[5,0,0,6,0,57], +"classnc_1_1random_1_1_r_n_g.html#a87cea23ca82fb07d030fb5ac54144b75":[4,0,0,14,1,47], "classnc_1_1random_1_1_r_n_g.html#a8882c8c42caef3308bba1cfddb456221":[4,0,0,14,1,57], -"classnc_1_1random_1_1_r_n_g.html#a8a8f4bb2d6e33f448defc0e07922d22d":[4,0,0,14,1,22], +"classnc_1_1random_1_1_r_n_g.html#a8882c8c42caef3308bba1cfddb456221":[5,0,0,6,0,57], "classnc_1_1random_1_1_r_n_g.html#a8a8f4bb2d6e33f448defc0e07922d22d":[5,0,0,6,0,22], -"classnc_1_1random_1_1_r_n_g.html#a8bc6fdb5a026802d0ba696cddc27cb81":[4,0,0,14,1,13], +"classnc_1_1random_1_1_r_n_g.html#a8a8f4bb2d6e33f448defc0e07922d22d":[4,0,0,14,1,22], "classnc_1_1random_1_1_r_n_g.html#a8bc6fdb5a026802d0ba696cddc27cb81":[5,0,0,6,0,13], +"classnc_1_1random_1_1_r_n_g.html#a8bc6fdb5a026802d0ba696cddc27cb81":[4,0,0,14,1,13], "classnc_1_1random_1_1_r_n_g.html#a968778762895842912026116b208cb76":[4,0,0,14,1,52], "classnc_1_1random_1_1_r_n_g.html#a968778762895842912026116b208cb76":[5,0,0,6,0,52], "classnc_1_1random_1_1_r_n_g.html#a96bb27d60c7d5241ab503d032d3a1841":[5,0,0,6,0,37], @@ -241,13 +245,9 @@ var NAVTREEINDEX10 = "classnc_1_1random_1_1_r_n_g.html#aab4f39a4bc337a897bf4534d828ad7a0":[4,0,0,14,1,48], "classnc_1_1random_1_1_r_n_g.html#ab38aaa373d489a9210751f12e52d8c8f":[5,0,0,6,0,14], "classnc_1_1random_1_1_r_n_g.html#ab38aaa373d489a9210751f12e52d8c8f":[4,0,0,14,1,14], -"classnc_1_1random_1_1_r_n_g.html#ab4c52249d04f6d8ee215e4067b0ba3cb":[4,0,0,14,1,27], "classnc_1_1random_1_1_r_n_g.html#ab4c52249d04f6d8ee215e4067b0ba3cb":[5,0,0,6,0,27], -"classnc_1_1random_1_1_r_n_g.html#ab5ba9d32c4d0ef34396b3535f97bc19e":[4,0,0,14,1,26], +"classnc_1_1random_1_1_r_n_g.html#ab4c52249d04f6d8ee215e4067b0ba3cb":[4,0,0,14,1,27], "classnc_1_1random_1_1_r_n_g.html#ab5ba9d32c4d0ef34396b3535f97bc19e":[5,0,0,6,0,26], -"classnc_1_1random_1_1_r_n_g.html#ab6d643e302961dd57e28d5cef0124377":[5,0,0,6,0,60], -"classnc_1_1random_1_1_r_n_g.html#ab6d643e302961dd57e28d5cef0124377":[4,0,0,14,1,60], -"classnc_1_1random_1_1_r_n_g.html#ac146e159274ef14850643e7dadb25555":[4,0,0,14,1,24], -"classnc_1_1random_1_1_r_n_g.html#ac146e159274ef14850643e7dadb25555":[5,0,0,6,0,24], -"classnc_1_1random_1_1_r_n_g.html#ac22ec36dc61b3c1b3272eaf401ca7aa8":[5,0,0,6,0,2] +"classnc_1_1random_1_1_r_n_g.html#ab5ba9d32c4d0ef34396b3535f97bc19e":[4,0,0,14,1,26], +"classnc_1_1random_1_1_r_n_g.html#ab6d643e302961dd57e28d5cef0124377":[4,0,0,14,1,60] }; diff --git a/docs/doxygen/html/navtreeindex11.js b/docs/doxygen/html/navtreeindex11.js index a95348a3c..94adae91c 100644 --- a/docs/doxygen/html/navtreeindex11.js +++ b/docs/doxygen/html/navtreeindex11.js @@ -1,10 +1,14 @@ var NAVTREEINDEX11 = { +"classnc_1_1random_1_1_r_n_g.html#ab6d643e302961dd57e28d5cef0124377":[5,0,0,6,0,60], +"classnc_1_1random_1_1_r_n_g.html#ac146e159274ef14850643e7dadb25555":[5,0,0,6,0,24], +"classnc_1_1random_1_1_r_n_g.html#ac146e159274ef14850643e7dadb25555":[4,0,0,14,1,24], +"classnc_1_1random_1_1_r_n_g.html#ac22ec36dc61b3c1b3272eaf401ca7aa8":[5,0,0,6,0,2], "classnc_1_1random_1_1_r_n_g.html#ac22ec36dc61b3c1b3272eaf401ca7aa8":[4,0,0,14,1,2], -"classnc_1_1random_1_1_r_n_g.html#ac3733e5f3856ea7d9657663cdfc97e27":[5,0,0,6,0,59], "classnc_1_1random_1_1_r_n_g.html#ac3733e5f3856ea7d9657663cdfc97e27":[4,0,0,14,1,59], -"classnc_1_1random_1_1_r_n_g.html#ad28cf8c6f5a889faa3eb6662201baf31":[5,0,0,6,0,50], +"classnc_1_1random_1_1_r_n_g.html#ac3733e5f3856ea7d9657663cdfc97e27":[5,0,0,6,0,59], "classnc_1_1random_1_1_r_n_g.html#ad28cf8c6f5a889faa3eb6662201baf31":[4,0,0,14,1,50], +"classnc_1_1random_1_1_r_n_g.html#ad28cf8c6f5a889faa3eb6662201baf31":[5,0,0,6,0,50], "classnc_1_1random_1_1_r_n_g.html#ada9c17d19a87ab7eb29604a5713ff4e0":[5,0,0,6,0,49], "classnc_1_1random_1_1_r_n_g.html#ada9c17d19a87ab7eb29604a5713ff4e0":[4,0,0,14,1,49], "classnc_1_1random_1_1_r_n_g.html#adf3d1bf9626cff6b393bc236389db52d":[4,0,0,14,1,58], @@ -15,48 +19,48 @@ var NAVTREEINDEX11 = "classnc_1_1random_1_1_r_n_g.html#aea082fd631056fa79f07290db7f83632":[4,0,0,14,1,19], "classnc_1_1random_1_1_r_n_g.html#aea354ddc8f6443ee46ab3e77f89a15a3":[5,0,0,6,0,39], "classnc_1_1random_1_1_r_n_g.html#aea354ddc8f6443ee46ab3e77f89a15a3":[4,0,0,14,1,39], -"classnc_1_1random_1_1_r_n_g.html#aec3bb65482e529f982386a4cc9701228":[5,0,0,6,0,20], "classnc_1_1random_1_1_r_n_g.html#aec3bb65482e529f982386a4cc9701228":[4,0,0,14,1,20], +"classnc_1_1random_1_1_r_n_g.html#aec3bb65482e529f982386a4cc9701228":[5,0,0,6,0,20], "classnc_1_1random_1_1_r_n_g.html#aef31a7b85c359992d6f7e101f991c145":[5,0,0,6,0,38], "classnc_1_1random_1_1_r_n_g.html#aef31a7b85c359992d6f7e101f991c145":[4,0,0,14,1,38], "classnc_1_1random_1_1_r_n_g.html#af33db571bd6dd997aeb37c11113894e6":[5,0,0,6,0,33], "classnc_1_1random_1_1_r_n_g.html#af33db571bd6dd997aeb37c11113894e6":[4,0,0,14,1,33], -"classnc_1_1roots_1_1_bisection.html":[4,0,0,15,0], "classnc_1_1roots_1_1_bisection.html":[5,0,0,7,0], +"classnc_1_1roots_1_1_bisection.html":[4,0,0,15,0], "classnc_1_1roots_1_1_bisection.html#a05985162d3dac7a0919319c6cde74895":[5,0,0,7,0,1], "classnc_1_1roots_1_1_bisection.html#a05985162d3dac7a0919319c6cde74895":[4,0,0,15,0,1], -"classnc_1_1roots_1_1_bisection.html#a1199a68b6f57fee8b24bfc59ffeff486":[5,0,0,7,0,6], "classnc_1_1roots_1_1_bisection.html#a1199a68b6f57fee8b24bfc59ffeff486":[4,0,0,15,0,6], +"classnc_1_1roots_1_1_bisection.html#a1199a68b6f57fee8b24bfc59ffeff486":[5,0,0,7,0,6], "classnc_1_1roots_1_1_bisection.html#a5e0d0c67681add5f2feec713901539df":[5,0,0,7,0,2], "classnc_1_1roots_1_1_bisection.html#a5e0d0c67681add5f2feec713901539df":[4,0,0,15,0,2], "classnc_1_1roots_1_1_bisection.html#a5eafe219bb90f82da4ece84f012a411a":[4,0,0,15,0,7], "classnc_1_1roots_1_1_bisection.html#a5eafe219bb90f82da4ece84f012a411a":[5,0,0,7,0,7], "classnc_1_1roots_1_1_bisection.html#a84d7f2f7412d1f54861edeacc7bc0c20":[5,0,0,7,0,9], "classnc_1_1roots_1_1_bisection.html#a84d7f2f7412d1f54861edeacc7bc0c20":[4,0,0,15,0,9], -"classnc_1_1roots_1_1_bisection.html#a85e79a4794bc3a6ac6bc3564956737a2":[4,0,0,15,0,5], "classnc_1_1roots_1_1_bisection.html#a85e79a4794bc3a6ac6bc3564956737a2":[5,0,0,7,0,5], -"classnc_1_1roots_1_1_bisection.html#a9b1c4ea8cf91c5308020c105293b4a02":[4,0,0,15,0,8], +"classnc_1_1roots_1_1_bisection.html#a85e79a4794bc3a6ac6bc3564956737a2":[4,0,0,15,0,5], "classnc_1_1roots_1_1_bisection.html#a9b1c4ea8cf91c5308020c105293b4a02":[5,0,0,7,0,8], -"classnc_1_1roots_1_1_bisection.html#ab3192d0f9de4b8b27b23013c65489e5a":[4,0,0,15,0,4], +"classnc_1_1roots_1_1_bisection.html#a9b1c4ea8cf91c5308020c105293b4a02":[4,0,0,15,0,8], "classnc_1_1roots_1_1_bisection.html#ab3192d0f9de4b8b27b23013c65489e5a":[5,0,0,7,0,4], -"classnc_1_1roots_1_1_bisection.html#ad0262a1a694e734ebc154c77f010bcff":[4,0,0,15,0,3], +"classnc_1_1roots_1_1_bisection.html#ab3192d0f9de4b8b27b23013c65489e5a":[4,0,0,15,0,4], "classnc_1_1roots_1_1_bisection.html#ad0262a1a694e734ebc154c77f010bcff":[5,0,0,7,0,3], -"classnc_1_1roots_1_1_bisection.html#ae9ccce420ccf01a829b0138f264956cb":[4,0,0,15,0,0], +"classnc_1_1roots_1_1_bisection.html#ad0262a1a694e734ebc154c77f010bcff":[4,0,0,15,0,3], "classnc_1_1roots_1_1_bisection.html#ae9ccce420ccf01a829b0138f264956cb":[5,0,0,7,0,0], -"classnc_1_1roots_1_1_brent.html":[5,0,0,7,1], +"classnc_1_1roots_1_1_bisection.html#ae9ccce420ccf01a829b0138f264956cb":[4,0,0,15,0,0], "classnc_1_1roots_1_1_brent.html":[4,0,0,15,1], -"classnc_1_1roots_1_1_brent.html#a1e9cf8f7be13c7bbb42a073ec9eb5369":[4,0,0,15,1,1], +"classnc_1_1roots_1_1_brent.html":[5,0,0,7,1], "classnc_1_1roots_1_1_brent.html#a1e9cf8f7be13c7bbb42a073ec9eb5369":[5,0,0,7,1,1], +"classnc_1_1roots_1_1_brent.html#a1e9cf8f7be13c7bbb42a073ec9eb5369":[4,0,0,15,1,1], "classnc_1_1roots_1_1_brent.html#a3853981ca1113723006b6627d96d378b":[4,0,0,15,1,6], "classnc_1_1roots_1_1_brent.html#a3853981ca1113723006b6627d96d378b":[5,0,0,7,1,6], "classnc_1_1roots_1_1_brent.html#a5eafe219bb90f82da4ece84f012a411a":[4,0,0,15,1,7], "classnc_1_1roots_1_1_brent.html#a5eafe219bb90f82da4ece84f012a411a":[5,0,0,7,1,7], "classnc_1_1roots_1_1_brent.html#a84d7f2f7412d1f54861edeacc7bc0c20":[4,0,0,15,1,9], "classnc_1_1roots_1_1_brent.html#a84d7f2f7412d1f54861edeacc7bc0c20":[5,0,0,7,1,9], -"classnc_1_1roots_1_1_brent.html#a85e79a4794bc3a6ac6bc3564956737a2":[4,0,0,15,1,5], "classnc_1_1roots_1_1_brent.html#a85e79a4794bc3a6ac6bc3564956737a2":[5,0,0,7,1,5], -"classnc_1_1roots_1_1_brent.html#a9b1c4ea8cf91c5308020c105293b4a02":[4,0,0,15,1,8], +"classnc_1_1roots_1_1_brent.html#a85e79a4794bc3a6ac6bc3564956737a2":[4,0,0,15,1,5], "classnc_1_1roots_1_1_brent.html#a9b1c4ea8cf91c5308020c105293b4a02":[5,0,0,7,1,8], +"classnc_1_1roots_1_1_brent.html#a9b1c4ea8cf91c5308020c105293b4a02":[4,0,0,15,1,8], "classnc_1_1roots_1_1_brent.html#ab3192d0f9de4b8b27b23013c65489e5a":[4,0,0,15,1,4], "classnc_1_1roots_1_1_brent.html#ab3192d0f9de4b8b27b23013c65489e5a":[5,0,0,7,1,4], "classnc_1_1roots_1_1_brent.html#ad0262a1a694e734ebc154c77f010bcff":[4,0,0,15,1,3], @@ -71,70 +75,70 @@ var NAVTREEINDEX11 = "classnc_1_1roots_1_1_dekker.html#a49413387fbe4d12e20569d175fa7f486":[4,0,0,15,2,2], "classnc_1_1roots_1_1_dekker.html#a5da7506a8f371764d0fae321fe081111":[5,0,0,7,2,6], "classnc_1_1roots_1_1_dekker.html#a5da7506a8f371764d0fae321fe081111":[4,0,0,15,2,6], -"classnc_1_1roots_1_1_dekker.html#a5eafe219bb90f82da4ece84f012a411a":[4,0,0,15,2,7], "classnc_1_1roots_1_1_dekker.html#a5eafe219bb90f82da4ece84f012a411a":[5,0,0,7,2,7], -"classnc_1_1roots_1_1_dekker.html#a77b88bb369da2d03d34717b7d8e0a2ab":[4,0,0,15,2,0], +"classnc_1_1roots_1_1_dekker.html#a5eafe219bb90f82da4ece84f012a411a":[4,0,0,15,2,7], "classnc_1_1roots_1_1_dekker.html#a77b88bb369da2d03d34717b7d8e0a2ab":[5,0,0,7,2,0], -"classnc_1_1roots_1_1_dekker.html#a84d7f2f7412d1f54861edeacc7bc0c20":[4,0,0,15,2,9], +"classnc_1_1roots_1_1_dekker.html#a77b88bb369da2d03d34717b7d8e0a2ab":[4,0,0,15,2,0], "classnc_1_1roots_1_1_dekker.html#a84d7f2f7412d1f54861edeacc7bc0c20":[5,0,0,7,2,9], +"classnc_1_1roots_1_1_dekker.html#a84d7f2f7412d1f54861edeacc7bc0c20":[4,0,0,15,2,9], "classnc_1_1roots_1_1_dekker.html#a85e79a4794bc3a6ac6bc3564956737a2":[4,0,0,15,2,5], "classnc_1_1roots_1_1_dekker.html#a85e79a4794bc3a6ac6bc3564956737a2":[5,0,0,7,2,5], "classnc_1_1roots_1_1_dekker.html#a9b1c4ea8cf91c5308020c105293b4a02":[4,0,0,15,2,8], "classnc_1_1roots_1_1_dekker.html#a9b1c4ea8cf91c5308020c105293b4a02":[5,0,0,7,2,8], -"classnc_1_1roots_1_1_dekker.html#ab0a5db20e82cfd3ef95810ccb7d8c4e6":[5,0,0,7,2,1], "classnc_1_1roots_1_1_dekker.html#ab0a5db20e82cfd3ef95810ccb7d8c4e6":[4,0,0,15,2,1], -"classnc_1_1roots_1_1_dekker.html#ab3192d0f9de4b8b27b23013c65489e5a":[5,0,0,7,2,4], +"classnc_1_1roots_1_1_dekker.html#ab0a5db20e82cfd3ef95810ccb7d8c4e6":[5,0,0,7,2,1], "classnc_1_1roots_1_1_dekker.html#ab3192d0f9de4b8b27b23013c65489e5a":[4,0,0,15,2,4], -"classnc_1_1roots_1_1_dekker.html#ad0262a1a694e734ebc154c77f010bcff":[5,0,0,7,2,3], +"classnc_1_1roots_1_1_dekker.html#ab3192d0f9de4b8b27b23013c65489e5a":[5,0,0,7,2,4], "classnc_1_1roots_1_1_dekker.html#ad0262a1a694e734ebc154c77f010bcff":[4,0,0,15,2,3], +"classnc_1_1roots_1_1_dekker.html#ad0262a1a694e734ebc154c77f010bcff":[5,0,0,7,2,3], "classnc_1_1roots_1_1_iteration.html":[5,0,0,7,3], "classnc_1_1roots_1_1_iteration.html":[4,0,0,15,3], -"classnc_1_1roots_1_1_iteration.html#a2d7285a81c033d56ce8283b6dbfca136":[5,0,0,7,3,0], "classnc_1_1roots_1_1_iteration.html#a2d7285a81c033d56ce8283b6dbfca136":[4,0,0,15,3,0], +"classnc_1_1roots_1_1_iteration.html#a2d7285a81c033d56ce8283b6dbfca136":[5,0,0,7,3,0], "classnc_1_1roots_1_1_iteration.html#a44492e4a1849938cd7017154213ec002":[5,0,0,7,3,2], "classnc_1_1roots_1_1_iteration.html#a44492e4a1849938cd7017154213ec002":[4,0,0,15,3,2], "classnc_1_1roots_1_1_iteration.html#a5eafe219bb90f82da4ece84f012a411a":[4,0,0,15,3,6], "classnc_1_1roots_1_1_iteration.html#a5eafe219bb90f82da4ece84f012a411a":[5,0,0,7,3,6], "classnc_1_1roots_1_1_iteration.html#a7948f08cfaa01f5685ec35149bf6bba0":[4,0,0,15,3,1], "classnc_1_1roots_1_1_iteration.html#a7948f08cfaa01f5685ec35149bf6bba0":[5,0,0,7,3,1], -"classnc_1_1roots_1_1_iteration.html#a84d7f2f7412d1f54861edeacc7bc0c20":[4,0,0,15,3,8], "classnc_1_1roots_1_1_iteration.html#a84d7f2f7412d1f54861edeacc7bc0c20":[5,0,0,7,3,8], -"classnc_1_1roots_1_1_iteration.html#a85e79a4794bc3a6ac6bc3564956737a2":[4,0,0,15,3,5], +"classnc_1_1roots_1_1_iteration.html#a84d7f2f7412d1f54861edeacc7bc0c20":[4,0,0,15,3,8], "classnc_1_1roots_1_1_iteration.html#a85e79a4794bc3a6ac6bc3564956737a2":[5,0,0,7,3,5], -"classnc_1_1roots_1_1_iteration.html#a9b1c4ea8cf91c5308020c105293b4a02":[4,0,0,15,3,7], +"classnc_1_1roots_1_1_iteration.html#a85e79a4794bc3a6ac6bc3564956737a2":[4,0,0,15,3,5], "classnc_1_1roots_1_1_iteration.html#a9b1c4ea8cf91c5308020c105293b4a02":[5,0,0,7,3,7], +"classnc_1_1roots_1_1_iteration.html#a9b1c4ea8cf91c5308020c105293b4a02":[4,0,0,15,3,7], "classnc_1_1roots_1_1_iteration.html#ab3192d0f9de4b8b27b23013c65489e5a":[4,0,0,15,3,4], "classnc_1_1roots_1_1_iteration.html#ab3192d0f9de4b8b27b23013c65489e5a":[5,0,0,7,3,4], -"classnc_1_1roots_1_1_iteration.html#ad0262a1a694e734ebc154c77f010bcff":[5,0,0,7,3,3], "classnc_1_1roots_1_1_iteration.html#ad0262a1a694e734ebc154c77f010bcff":[4,0,0,15,3,3], -"classnc_1_1roots_1_1_newton.html":[5,0,0,7,4], +"classnc_1_1roots_1_1_iteration.html#ad0262a1a694e734ebc154c77f010bcff":[5,0,0,7,3,3], "classnc_1_1roots_1_1_newton.html":[4,0,0,15,4], -"classnc_1_1roots_1_1_newton.html#a25702b087e2e9917af0c31fe1dbdf442":[5,0,0,7,4,2], +"classnc_1_1roots_1_1_newton.html":[5,0,0,7,4], "classnc_1_1roots_1_1_newton.html#a25702b087e2e9917af0c31fe1dbdf442":[4,0,0,15,4,2], +"classnc_1_1roots_1_1_newton.html#a25702b087e2e9917af0c31fe1dbdf442":[5,0,0,7,4,2], "classnc_1_1roots_1_1_newton.html#a5eafe219bb90f82da4ece84f012a411a":[5,0,0,7,4,7], "classnc_1_1roots_1_1_newton.html#a5eafe219bb90f82da4ece84f012a411a":[4,0,0,15,4,7], -"classnc_1_1roots_1_1_newton.html#a84d7f2f7412d1f54861edeacc7bc0c20":[4,0,0,15,4,9], "classnc_1_1roots_1_1_newton.html#a84d7f2f7412d1f54861edeacc7bc0c20":[5,0,0,7,4,9], -"classnc_1_1roots_1_1_newton.html#a85e79a4794bc3a6ac6bc3564956737a2":[4,0,0,15,4,5], +"classnc_1_1roots_1_1_newton.html#a84d7f2f7412d1f54861edeacc7bc0c20":[4,0,0,15,4,9], "classnc_1_1roots_1_1_newton.html#a85e79a4794bc3a6ac6bc3564956737a2":[5,0,0,7,4,5], -"classnc_1_1roots_1_1_newton.html#a9b1c4ea8cf91c5308020c105293b4a02":[5,0,0,7,4,8], +"classnc_1_1roots_1_1_newton.html#a85e79a4794bc3a6ac6bc3564956737a2":[4,0,0,15,4,5], "classnc_1_1roots_1_1_newton.html#a9b1c4ea8cf91c5308020c105293b4a02":[4,0,0,15,4,8], +"classnc_1_1roots_1_1_newton.html#a9b1c4ea8cf91c5308020c105293b4a02":[5,0,0,7,4,8], "classnc_1_1roots_1_1_newton.html#aaed2535d1abdb0c6790aea60762ed789":[5,0,0,7,4,6], "classnc_1_1roots_1_1_newton.html#aaed2535d1abdb0c6790aea60762ed789":[4,0,0,15,4,6], -"classnc_1_1roots_1_1_newton.html#ab3192d0f9de4b8b27b23013c65489e5a":[4,0,0,15,4,4], "classnc_1_1roots_1_1_newton.html#ab3192d0f9de4b8b27b23013c65489e5a":[5,0,0,7,4,4], +"classnc_1_1roots_1_1_newton.html#ab3192d0f9de4b8b27b23013c65489e5a":[4,0,0,15,4,4], "classnc_1_1roots_1_1_newton.html#ab5b82361c4ce325e6165e023c0255d3e":[5,0,0,7,4,0], "classnc_1_1roots_1_1_newton.html#ab5b82361c4ce325e6165e023c0255d3e":[4,0,0,15,4,0], -"classnc_1_1roots_1_1_newton.html#ad0262a1a694e734ebc154c77f010bcff":[4,0,0,15,4,3], "classnc_1_1roots_1_1_newton.html#ad0262a1a694e734ebc154c77f010bcff":[5,0,0,7,4,3], -"classnc_1_1roots_1_1_newton.html#aecc72e3899f42b277536689439ea24bc":[4,0,0,15,4,1], +"classnc_1_1roots_1_1_newton.html#ad0262a1a694e734ebc154c77f010bcff":[4,0,0,15,4,3], "classnc_1_1roots_1_1_newton.html#aecc72e3899f42b277536689439ea24bc":[5,0,0,7,4,1], -"classnc_1_1roots_1_1_secant.html":[5,0,0,7,5], +"classnc_1_1roots_1_1_newton.html#aecc72e3899f42b277536689439ea24bc":[4,0,0,15,4,1], "classnc_1_1roots_1_1_secant.html":[4,0,0,15,5], -"classnc_1_1roots_1_1_secant.html#a3fefb4412402aa20eeabb85145463d70":[4,0,0,15,5,6], +"classnc_1_1roots_1_1_secant.html":[5,0,0,7,5], "classnc_1_1roots_1_1_secant.html#a3fefb4412402aa20eeabb85145463d70":[5,0,0,7,5,6], -"classnc_1_1roots_1_1_secant.html#a5eafe219bb90f82da4ece84f012a411a":[5,0,0,7,5,7], +"classnc_1_1roots_1_1_secant.html#a3fefb4412402aa20eeabb85145463d70":[4,0,0,15,5,6], "classnc_1_1roots_1_1_secant.html#a5eafe219bb90f82da4ece84f012a411a":[4,0,0,15,5,7], +"classnc_1_1roots_1_1_secant.html#a5eafe219bb90f82da4ece84f012a411a":[5,0,0,7,5,7], "classnc_1_1roots_1_1_secant.html#a84d7f2f7412d1f54861edeacc7bc0c20":[5,0,0,7,5,9], "classnc_1_1roots_1_1_secant.html#a84d7f2f7412d1f54861edeacc7bc0c20":[4,0,0,15,5,9], "classnc_1_1roots_1_1_secant.html#a85e79a4794bc3a6ac6bc3564956737a2":[4,0,0,15,5,5], @@ -143,52 +147,52 @@ var NAVTREEINDEX11 = "classnc_1_1roots_1_1_secant.html#a9b1c4ea8cf91c5308020c105293b4a02":[4,0,0,15,5,8], "classnc_1_1roots_1_1_secant.html#aa5eb3c22ecf2ef92a381b6cf54fb1f83":[4,0,0,15,5,2], "classnc_1_1roots_1_1_secant.html#aa5eb3c22ecf2ef92a381b6cf54fb1f83":[5,0,0,7,5,2], -"classnc_1_1roots_1_1_secant.html#ab3192d0f9de4b8b27b23013c65489e5a":[4,0,0,15,5,4], "classnc_1_1roots_1_1_secant.html#ab3192d0f9de4b8b27b23013c65489e5a":[5,0,0,7,5,4], +"classnc_1_1roots_1_1_secant.html#ab3192d0f9de4b8b27b23013c65489e5a":[4,0,0,15,5,4], "classnc_1_1roots_1_1_secant.html#ad0262a1a694e734ebc154c77f010bcff":[4,0,0,15,5,3], "classnc_1_1roots_1_1_secant.html#ad0262a1a694e734ebc154c77f010bcff":[5,0,0,7,5,3], "classnc_1_1roots_1_1_secant.html#adedf56589f2027e224d6044a071f20e3":[5,0,0,7,5,1], "classnc_1_1roots_1_1_secant.html#adedf56589f2027e224d6044a071f20e3":[4,0,0,15,5,1], -"classnc_1_1roots_1_1_secant.html#af8afc48a7393e85103a9c2acc662c63b":[5,0,0,7,5,0], "classnc_1_1roots_1_1_secant.html#af8afc48a7393e85103a9c2acc662c63b":[4,0,0,15,5,0], -"classnc_1_1rotations_1_1_d_c_m.html":[5,0,0,8,0], +"classnc_1_1roots_1_1_secant.html#af8afc48a7393e85103a9c2acc662c63b":[5,0,0,7,5,0], "classnc_1_1rotations_1_1_d_c_m.html":[4,0,0,16,0], +"classnc_1_1rotations_1_1_d_c_m.html":[5,0,0,8,0], "classnc_1_1rotations_1_1_d_c_m.html#a06a1a09ec0bb27c45690afbc08d22f50":[4,0,0,16,0,0], "classnc_1_1rotations_1_1_d_c_m.html#a06a1a09ec0bb27c45690afbc08d22f50":[5,0,0,8,0,0], "classnc_1_1rotations_1_1_d_c_m.html#a06b61d863ede73a445a5fb6b5a0673a2":[5,0,0,8,0,3], "classnc_1_1rotations_1_1_d_c_m.html#a06b61d863ede73a445a5fb6b5a0673a2":[4,0,0,16,0,3], -"classnc_1_1rotations_1_1_d_c_m.html#a178b8bf61941070bd629263312b627dd":[4,0,0,16,0,9], "classnc_1_1rotations_1_1_d_c_m.html#a178b8bf61941070bd629263312b627dd":[5,0,0,8,0,9], +"classnc_1_1rotations_1_1_d_c_m.html#a178b8bf61941070bd629263312b627dd":[4,0,0,16,0,9], "classnc_1_1rotations_1_1_d_c_m.html#a1c5d11f29221326e532335cc5fe01906":[5,0,0,8,0,7], "classnc_1_1rotations_1_1_d_c_m.html#a1c5d11f29221326e532335cc5fe01906":[4,0,0,16,0,7], "classnc_1_1rotations_1_1_d_c_m.html#a626b0bd2a3cf54e958f5c4d89b3c843b":[5,0,0,8,0,10], "classnc_1_1rotations_1_1_d_c_m.html#a626b0bd2a3cf54e958f5c4d89b3c843b":[4,0,0,16,0,10], "classnc_1_1rotations_1_1_d_c_m.html#a726e1d9c5e2a88dbd7e70b8fc9d55fbf":[5,0,0,8,0,5], "classnc_1_1rotations_1_1_d_c_m.html#a726e1d9c5e2a88dbd7e70b8fc9d55fbf":[4,0,0,16,0,5], -"classnc_1_1rotations_1_1_d_c_m.html#ab1947c7618408b063b704ec391e27888":[4,0,0,16,0,4], "classnc_1_1rotations_1_1_d_c_m.html#ab1947c7618408b063b704ec391e27888":[5,0,0,8,0,4], -"classnc_1_1rotations_1_1_d_c_m.html#ab72e3514a6022ebea6e63030eb0d2418":[4,0,0,16,0,2], +"classnc_1_1rotations_1_1_d_c_m.html#ab1947c7618408b063b704ec391e27888":[4,0,0,16,0,4], "classnc_1_1rotations_1_1_d_c_m.html#ab72e3514a6022ebea6e63030eb0d2418":[5,0,0,8,0,2], -"classnc_1_1rotations_1_1_d_c_m.html#ac562518ebdec1ce36cf8897a16f16fca":[5,0,0,8,0,6], +"classnc_1_1rotations_1_1_d_c_m.html#ab72e3514a6022ebea6e63030eb0d2418":[4,0,0,16,0,2], "classnc_1_1rotations_1_1_d_c_m.html#ac562518ebdec1ce36cf8897a16f16fca":[4,0,0,16,0,6], -"classnc_1_1rotations_1_1_d_c_m.html#aef0f27b195b93151a94cb86ca9fa21c9":[5,0,0,8,0,8], +"classnc_1_1rotations_1_1_d_c_m.html#ac562518ebdec1ce36cf8897a16f16fca":[5,0,0,8,0,6], "classnc_1_1rotations_1_1_d_c_m.html#aef0f27b195b93151a94cb86ca9fa21c9":[4,0,0,16,0,8], -"classnc_1_1rotations_1_1_d_c_m.html#afede4ed689a9771968945857c7cd0c1d":[5,0,0,8,0,1], +"classnc_1_1rotations_1_1_d_c_m.html#aef0f27b195b93151a94cb86ca9fa21c9":[5,0,0,8,0,8], "classnc_1_1rotations_1_1_d_c_m.html#afede4ed689a9771968945857c7cd0c1d":[4,0,0,16,0,1], +"classnc_1_1rotations_1_1_d_c_m.html#afede4ed689a9771968945857c7cd0c1d":[5,0,0,8,0,1], "classnc_1_1rotations_1_1_quaternion.html":[4,0,0,16,1], "classnc_1_1rotations_1_1_quaternion.html":[5,0,0,8,1], -"classnc_1_1rotations_1_1_quaternion.html#a075b6f1befef247f5d638c91e1a451fd":[4,0,0,16,1,41], "classnc_1_1rotations_1_1_quaternion.html#a075b6f1befef247f5d638c91e1a451fd":[5,0,0,8,1,41], -"classnc_1_1rotations_1_1_quaternion.html#a0ddeeba7435df3364f262215f24c93c1":[4,0,0,16,1,44], +"classnc_1_1rotations_1_1_quaternion.html#a075b6f1befef247f5d638c91e1a451fd":[4,0,0,16,1,41], "classnc_1_1rotations_1_1_quaternion.html#a0ddeeba7435df3364f262215f24c93c1":[5,0,0,8,1,44], -"classnc_1_1rotations_1_1_quaternion.html#a184f5c55ea78128aec0ad4f72b4d5a59":[5,0,0,8,1,7], +"classnc_1_1rotations_1_1_quaternion.html#a0ddeeba7435df3364f262215f24c93c1":[4,0,0,16,1,44], "classnc_1_1rotations_1_1_quaternion.html#a184f5c55ea78128aec0ad4f72b4d5a59":[4,0,0,16,1,7], -"classnc_1_1rotations_1_1_quaternion.html#a25202016ba38847906709881202a8e56":[4,0,0,16,1,52], +"classnc_1_1rotations_1_1_quaternion.html#a184f5c55ea78128aec0ad4f72b4d5a59":[5,0,0,8,1,7], "classnc_1_1rotations_1_1_quaternion.html#a25202016ba38847906709881202a8e56":[5,0,0,8,1,52], +"classnc_1_1rotations_1_1_quaternion.html#a25202016ba38847906709881202a8e56":[4,0,0,16,1,52], "classnc_1_1rotations_1_1_quaternion.html#a26f2a9303f0521ee36d92467ab45e3ab":[5,0,0,8,1,37], "classnc_1_1rotations_1_1_quaternion.html#a26f2a9303f0521ee36d92467ab45e3ab":[4,0,0,16,1,37], -"classnc_1_1rotations_1_1_quaternion.html#a30fe8031959271e5b0134a0c562713b4":[5,0,0,8,1,47], "classnc_1_1rotations_1_1_quaternion.html#a30fe8031959271e5b0134a0c562713b4":[4,0,0,16,1,47], +"classnc_1_1rotations_1_1_quaternion.html#a30fe8031959271e5b0134a0c562713b4":[5,0,0,8,1,47], "classnc_1_1rotations_1_1_quaternion.html#a314478702a3da52f2be3f422057d8732":[5,0,0,8,1,17], "classnc_1_1rotations_1_1_quaternion.html#a314478702a3da52f2be3f422057d8732":[4,0,0,16,1,17], "classnc_1_1rotations_1_1_quaternion.html#a34f25fa102a594dff4679d74837001ce":[5,0,0,8,1,38], @@ -219,8 +223,8 @@ var NAVTREEINDEX11 = "classnc_1_1rotations_1_1_quaternion.html#a687155cd6469c095941b94a738119da9":[4,0,0,16,1,43], "classnc_1_1rotations_1_1_quaternion.html#a68e07632cd09569ad607cb802b400ded":[4,0,0,16,1,46], "classnc_1_1rotations_1_1_quaternion.html#a68e07632cd09569ad607cb802b400ded":[5,0,0,8,1,46], -"classnc_1_1rotations_1_1_quaternion.html#a6a2a9788df1d79c9e90223c68d5bef55":[4,0,0,16,1,32], "classnc_1_1rotations_1_1_quaternion.html#a6a2a9788df1d79c9e90223c68d5bef55":[5,0,0,8,1,32], +"classnc_1_1rotations_1_1_quaternion.html#a6a2a9788df1d79c9e90223c68d5bef55":[4,0,0,16,1,32], "classnc_1_1rotations_1_1_quaternion.html#a7a39f199e4d1ad773b93c69e66ae0415":[5,0,0,8,1,42], "classnc_1_1rotations_1_1_quaternion.html#a7a39f199e4d1ad773b93c69e66ae0415":[4,0,0,16,1,42], "classnc_1_1rotations_1_1_quaternion.html#a7a59f6daaafd941879abecff8d3a1348":[4,0,0,16,1,49], @@ -229,25 +233,21 @@ var NAVTREEINDEX11 = "classnc_1_1rotations_1_1_quaternion.html#a815d72f9b492ff821077d5d4652b7985":[5,0,0,8,1,36], "classnc_1_1rotations_1_1_quaternion.html#a81b7db9d5e593a61272e09ce7dcc1325":[4,0,0,16,1,6], "classnc_1_1rotations_1_1_quaternion.html#a81b7db9d5e593a61272e09ce7dcc1325":[5,0,0,8,1,6], -"classnc_1_1rotations_1_1_quaternion.html#a82f40acb2292256faffab2b88aa38208":[5,0,0,8,1,33], "classnc_1_1rotations_1_1_quaternion.html#a82f40acb2292256faffab2b88aa38208":[4,0,0,16,1,33], -"classnc_1_1rotations_1_1_quaternion.html#a864a93abf9478d9f47fd9eadeb745b18":[5,0,0,8,1,39], +"classnc_1_1rotations_1_1_quaternion.html#a82f40acb2292256faffab2b88aa38208":[5,0,0,8,1,33], "classnc_1_1rotations_1_1_quaternion.html#a864a93abf9478d9f47fd9eadeb745b18":[4,0,0,16,1,39], +"classnc_1_1rotations_1_1_quaternion.html#a864a93abf9478d9f47fd9eadeb745b18":[5,0,0,8,1,39], "classnc_1_1rotations_1_1_quaternion.html#a8c498c295071b8b787902044bf87d34d":[4,0,0,16,1,1], "classnc_1_1rotations_1_1_quaternion.html#a8c498c295071b8b787902044bf87d34d":[5,0,0,8,1,1], -"classnc_1_1rotations_1_1_quaternion.html#a97a81255a6bb91049b1ad7e7b83e2f7f":[5,0,0,8,1,22], "classnc_1_1rotations_1_1_quaternion.html#a97a81255a6bb91049b1ad7e7b83e2f7f":[4,0,0,16,1,22], -"classnc_1_1rotations_1_1_quaternion.html#a9b0634474b2ff27f9443ba256ea00ab1":[5,0,0,8,1,14], +"classnc_1_1rotations_1_1_quaternion.html#a97a81255a6bb91049b1ad7e7b83e2f7f":[5,0,0,8,1,22], "classnc_1_1rotations_1_1_quaternion.html#a9b0634474b2ff27f9443ba256ea00ab1":[4,0,0,16,1,14], +"classnc_1_1rotations_1_1_quaternion.html#a9b0634474b2ff27f9443ba256ea00ab1":[5,0,0,8,1,14], "classnc_1_1rotations_1_1_quaternion.html#aa2eee61d3a428a558f28d1bb6cc6a048":[4,0,0,16,1,16], "classnc_1_1rotations_1_1_quaternion.html#aa2eee61d3a428a558f28d1bb6cc6a048":[5,0,0,8,1,16], "classnc_1_1rotations_1_1_quaternion.html#aaf688fafc4714f1da399e265c8e49a8d":[4,0,0,16,1,51], "classnc_1_1rotations_1_1_quaternion.html#aaf688fafc4714f1da399e265c8e49a8d":[5,0,0,8,1,51], "classnc_1_1rotations_1_1_quaternion.html#aaf9230af84ef1133ca9483da561b0450":[4,0,0,16,1,45], "classnc_1_1rotations_1_1_quaternion.html#aaf9230af84ef1133ca9483da561b0450":[5,0,0,8,1,45], -"classnc_1_1rotations_1_1_quaternion.html#ab054e067fc333a48582e291f95120866":[5,0,0,8,1,31], -"classnc_1_1rotations_1_1_quaternion.html#ab054e067fc333a48582e291f95120866":[4,0,0,16,1,31], -"classnc_1_1rotations_1_1_quaternion.html#ab055510c1338490b957de867cecaf790":[4,0,0,16,1,18], -"classnc_1_1rotations_1_1_quaternion.html#ab055510c1338490b957de867cecaf790":[5,0,0,8,1,18], -"classnc_1_1rotations_1_1_quaternion.html#ab77da90ef63465f79bd79348330ca9a4":[4,0,0,16,1,50] +"classnc_1_1rotations_1_1_quaternion.html#ab054e067fc333a48582e291f95120866":[4,0,0,16,1,31] }; diff --git a/docs/doxygen/html/navtreeindex12.js b/docs/doxygen/html/navtreeindex12.js index b303970ba..5f46b4436 100644 --- a/docs/doxygen/html/navtreeindex12.js +++ b/docs/doxygen/html/navtreeindex12.js @@ -1,38 +1,42 @@ var NAVTREEINDEX12 = { +"classnc_1_1rotations_1_1_quaternion.html#ab054e067fc333a48582e291f95120866":[5,0,0,8,1,31], +"classnc_1_1rotations_1_1_quaternion.html#ab055510c1338490b957de867cecaf790":[4,0,0,16,1,18], +"classnc_1_1rotations_1_1_quaternion.html#ab055510c1338490b957de867cecaf790":[5,0,0,8,1,18], "classnc_1_1rotations_1_1_quaternion.html#ab77da90ef63465f79bd79348330ca9a4":[5,0,0,8,1,50], +"classnc_1_1rotations_1_1_quaternion.html#ab77da90ef63465f79bd79348330ca9a4":[4,0,0,16,1,50], "classnc_1_1rotations_1_1_quaternion.html#abbacae2cb36d4f7e93e1cf130f8ca6b4":[4,0,0,16,1,5], "classnc_1_1rotations_1_1_quaternion.html#abbacae2cb36d4f7e93e1cf130f8ca6b4":[5,0,0,8,1,5], -"classnc_1_1rotations_1_1_quaternion.html#ac2fe3ccf8397a29a3c06622acc6ff725":[4,0,0,16,1,25], "classnc_1_1rotations_1_1_quaternion.html#ac2fe3ccf8397a29a3c06622acc6ff725":[5,0,0,8,1,25], -"classnc_1_1rotations_1_1_quaternion.html#acb62c703a1f96333bf76ad0735cb8b97":[5,0,0,8,1,15], +"classnc_1_1rotations_1_1_quaternion.html#ac2fe3ccf8397a29a3c06622acc6ff725":[4,0,0,16,1,25], "classnc_1_1rotations_1_1_quaternion.html#acb62c703a1f96333bf76ad0735cb8b97":[4,0,0,16,1,15], +"classnc_1_1rotations_1_1_quaternion.html#acb62c703a1f96333bf76ad0735cb8b97":[5,0,0,8,1,15], "classnc_1_1rotations_1_1_quaternion.html#accfd9115d723d83ea3deb8ff3aece958":[5,0,0,8,1,27], "classnc_1_1rotations_1_1_quaternion.html#accfd9115d723d83ea3deb8ff3aece958":[4,0,0,16,1,27], "classnc_1_1rotations_1_1_quaternion.html#ad63920fa01f5bd4949c0fbb3ff7c7137":[4,0,0,16,1,23], "classnc_1_1rotations_1_1_quaternion.html#ad63920fa01f5bd4949c0fbb3ff7c7137":[5,0,0,8,1,23], -"classnc_1_1rotations_1_1_quaternion.html#ad6eb2370d77e01a944c4b32a48966e76":[4,0,0,16,1,29], "classnc_1_1rotations_1_1_quaternion.html#ad6eb2370d77e01a944c4b32a48966e76":[5,0,0,8,1,29], -"classnc_1_1rotations_1_1_quaternion.html#adad6ca92266f6090930addc585900805":[4,0,0,16,1,21], +"classnc_1_1rotations_1_1_quaternion.html#ad6eb2370d77e01a944c4b32a48966e76":[4,0,0,16,1,29], "classnc_1_1rotations_1_1_quaternion.html#adad6ca92266f6090930addc585900805":[5,0,0,8,1,21], -"classnc_1_1rotations_1_1_quaternion.html#adcf57fd29d62e19f5c764750262ff7c3":[4,0,0,16,1,19], +"classnc_1_1rotations_1_1_quaternion.html#adad6ca92266f6090930addc585900805":[4,0,0,16,1,21], "classnc_1_1rotations_1_1_quaternion.html#adcf57fd29d62e19f5c764750262ff7c3":[5,0,0,8,1,19], -"classnc_1_1rotations_1_1_quaternion.html#addcc7fb7b4acd4201e7f5b90ef207f4d":[5,0,0,8,1,4], +"classnc_1_1rotations_1_1_quaternion.html#adcf57fd29d62e19f5c764750262ff7c3":[4,0,0,16,1,19], "classnc_1_1rotations_1_1_quaternion.html#addcc7fb7b4acd4201e7f5b90ef207f4d":[4,0,0,16,1,4], +"classnc_1_1rotations_1_1_quaternion.html#addcc7fb7b4acd4201e7f5b90ef207f4d":[5,0,0,8,1,4], "classnc_1_1rotations_1_1_quaternion.html#ade406544e8360506bb77102d17b14e61":[4,0,0,16,1,11], "classnc_1_1rotations_1_1_quaternion.html#ade406544e8360506bb77102d17b14e61":[5,0,0,8,1,11], -"classnc_1_1rotations_1_1_quaternion.html#ae093d333b66b63eeef5704be4a374af2":[4,0,0,16,1,13], "classnc_1_1rotations_1_1_quaternion.html#ae093d333b66b63eeef5704be4a374af2":[5,0,0,8,1,13], +"classnc_1_1rotations_1_1_quaternion.html#ae093d333b66b63eeef5704be4a374af2":[4,0,0,16,1,13], "classnc_1_1rotations_1_1_quaternion.html#ae64d991c058b8646a98682fc8b3c1e18":[5,0,0,8,1,10], "classnc_1_1rotations_1_1_quaternion.html#ae64d991c058b8646a98682fc8b3c1e18":[4,0,0,16,1,10], -"classnc_1_1rotations_1_1_quaternion.html#aeef47bcd4879e9727ac33838aaac3112":[5,0,0,8,1,8], "classnc_1_1rotations_1_1_quaternion.html#aeef47bcd4879e9727ac33838aaac3112":[4,0,0,16,1,8], +"classnc_1_1rotations_1_1_quaternion.html#aeef47bcd4879e9727ac33838aaac3112":[5,0,0,8,1,8], "classnc_1_1rotations_1_1_quaternion.html#af150a85479ebc3348ed733715bec6084":[5,0,0,8,1,30], "classnc_1_1rotations_1_1_quaternion.html#af150a85479ebc3348ed733715bec6084":[4,0,0,16,1,30], "classnc_1_1rotations_1_1_quaternion.html#af5136e02f6b852d9f91c70c2c6bf66a8":[5,0,0,8,1,24], "classnc_1_1rotations_1_1_quaternion.html#af5136e02f6b852d9f91c70c2c6bf66a8":[4,0,0,16,1,24], -"classnc_1_1rotations_1_1_quaternion.html#aff32c4f1c065428e8ed31e552a1c8e53":[4,0,0,16,1,35], "classnc_1_1rotations_1_1_quaternion.html#aff32c4f1c065428e8ed31e552a1c8e53":[5,0,0,8,1,35], +"classnc_1_1rotations_1_1_quaternion.html#aff32c4f1c065428e8ed31e552a1c8e53":[4,0,0,16,1,35], "clip_8hpp.html":[6,0,1,0,5,44], "clip_8hpp.html#a5200696e06dadf4eca2f0d7332ed4af1":[6,0,1,0,5,44,1], "clip_8hpp.html#aa1313316a42eb015a3a5af69150bae19":[6,0,1,0,5,44,0], @@ -245,9 +249,5 @@ var NAVTREEINDEX12 = "dot_8hpp.html#a086a6d6780772c795a63787412e4e813":[6,0,1,0,5,73,2], "dot_8hpp.html#a50b693e816ecaa711b09997abaacec9a":[6,0,1,0,5,73,0], "dot_8hpp.html#adb9aa482fe676e54d83d35ec2b761635":[6,0,1,0,5,73,1], -"dot_8hpp_source.html":[6,0,1,0,5,73], -"dump_8hpp.html":[6,0,1,0,5,74], -"dump_8hpp.html#af6e71bd96dbc78f9ca018d2da0a7e653":[6,0,1,0,5,74,0], -"dump_8hpp_source.html":[6,0,1,0,5,74], -"ellint__1_8hpp.html":[6,0,1,0,16,21] +"dot_8hpp_source.html":[6,0,1,0,5,73] }; diff --git a/docs/doxygen/html/navtreeindex13.js b/docs/doxygen/html/navtreeindex13.js index b6555e30f..9b44b8b2a 100644 --- a/docs/doxygen/html/navtreeindex13.js +++ b/docs/doxygen/html/navtreeindex13.js @@ -1,5 +1,15 @@ var NAVTREEINDEX13 = { +"dump_8hpp.html":[6,0,1,0,5,74], +"dump_8hpp.html#af6e71bd96dbc78f9ca018d2da0a7e653":[6,0,1,0,5,74,0], +"dump_8hpp_source.html":[6,0,1,0,5,74], +"eig_8hpp.html":[6,0,1,0,8,3], +"eig_8hpp.html#a1b037ada059b1292a794e6ffb1823a05":[6,0,1,0,8,3,0], +"eig_8hpp_source.html":[6,0,1,0,8,3], +"eigvals_8hpp.html":[6,0,1,0,8,4], +"eigvals_8hpp.html#a2853cd2015993be7a86f9ba823601ca6":[6,0,1,0,8,4,0], +"eigvals_8hpp_source.html":[6,0,1,0,8,4], +"ellint__1_8hpp.html":[6,0,1,0,16,21], "ellint__1_8hpp.html#a0198bebbecba53e96b36d270be457490":[6,0,1,0,16,21,0], "ellint__1_8hpp.html#aa7fd769db69bde9583f039306c011816":[6,0,1,0,16,21,1], "ellint__1_8hpp_source.html":[6,0,1,0,16,21], @@ -239,15 +249,5 @@ var NAVTREEINDEX13 = "functions_p.html":[5,3,0,15], "functions_q.html":[5,3,0,16], "functions_r.html":[5,3,0,17], -"functions_rela.html":[5,3,5], -"functions_s.html":[5,3,0,18], -"functions_t.html":[5,3,0,19], -"functions_type.html":[5,3,3], -"functions_u.html":[5,3,0,20], -"functions_v.html":[5,3,0,21], -"functions_vars.html":[5,3,2], -"functions_w.html":[5,3,0,22], -"functions_x.html":[5,3,0,23], -"functions_y.html":[5,3,0,24], -"functions_z.html":[5,3,0,25] +"functions_rela.html":[5,3,5] }; diff --git a/docs/doxygen/html/navtreeindex14.js b/docs/doxygen/html/navtreeindex14.js index 7a90d5282..a528f373e 100644 --- a/docs/doxygen/html/navtreeindex14.js +++ b/docs/doxygen/html/navtreeindex14.js @@ -1,5 +1,15 @@ var NAVTREEINDEX14 = { +"functions_s.html":[5,3,0,18], +"functions_t.html":[5,3,0,19], +"functions_type.html":[5,3,3], +"functions_u.html":[5,3,0,20], +"functions_v.html":[5,3,0,21], +"functions_vars.html":[5,3,2], +"functions_w.html":[5,3,0,22], +"functions_x.html":[5,3,0,23], +"functions_y.html":[5,3,0,24], +"functions_z.html":[5,3,0,25], "functions_~.html":[5,3,0,26], "gamma1pm1_8hpp.html":[6,0,1,0,16,31], "gamma1pm1_8hpp.html#a7b98a5eedb6e5354adbab8dcfe1ce4e1":[6,0,1,0,16,31,0], @@ -8,9 +18,9 @@ var NAVTREEINDEX14 = "gauss__legendre_8hpp.html":[6,0,1,0,7,0], "gauss__legendre_8hpp.html#af7d17b4e025bf94f903d3c671da3baf7":[6,0,1,0,7,0,1], "gauss__legendre_8hpp_source.html":[6,0,1,0,7,0], -"gauss_newton_nlls_8hpp.html":[6,0,1,0,8,3], -"gauss_newton_nlls_8hpp.html#a9de81d7c677cb58615fba70679e73f66":[6,0,1,0,8,3,0], -"gauss_newton_nlls_8hpp_source.html":[6,0,1,0,8,3], +"gauss_newton_nlls_8hpp.html":[6,0,1,0,8,5], +"gauss_newton_nlls_8hpp.html#a9de81d7c677cb58615fba70679e73f66":[6,0,1,0,8,5,0], +"gauss_newton_nlls_8hpp_source.html":[6,0,1,0,8,5], "gaussian1d_8hpp.html":[6,0,1,0,17,4], "gaussian1d_8hpp.html#a263704ee2cc6ab3f77b462522c7150f8":[6,0,1,0,17,4,0], "gaussian1d_8hpp_source.html":[6,0,1,0,17,4], @@ -84,11 +94,11 @@ var NAVTREEINDEX14 = "hanning_8hpp.html":[6,0,1,0,5,112], "hanning_8hpp.html#a118a8a728566b57cf3000d6f0bc8c0ca":[6,0,1,0,5,112,0], "hanning_8hpp_source.html":[6,0,1,0,5,112], -"hat_8hpp.html":[6,0,1,0,8,4], -"hat_8hpp.html#ad93ac021edcd0c8f81891c93996dee25":[6,0,1,0,8,4,0], -"hat_8hpp.html#af55949f0049c2a7b1a3e1f36a31a678f":[6,0,1,0,8,4,1], -"hat_8hpp.html#afa7cc2a8a4084e94b4af00484d3a511e":[6,0,1,0,8,4,2], -"hat_8hpp_source.html":[6,0,1,0,8,4], +"hat_8hpp.html":[6,0,1,0,8,6], +"hat_8hpp.html#ad93ac021edcd0c8f81891c93996dee25":[6,0,1,0,8,6,0], +"hat_8hpp.html#af55949f0049c2a7b1a3e1f36a31a678f":[6,0,1,0,8,6,1], +"hat_8hpp.html#afa7cc2a8a4084e94b4af00484d3a511e":[6,0,1,0,8,6,2], +"hat_8hpp_source.html":[6,0,1,0,8,6], "hermite_8hpp.html":[6,0,1,0,11,2], "hermite_8hpp.html#ade1c7e2792babf10bfaa60ff14156c12":[6,0,1,0,11,2,0], "hermite_8hpp.html#aeea1ebbc592a6a8c533f2230fb0f6f10":[6,0,1,0,11,2,1], @@ -152,9 +162,9 @@ var NAVTREEINDEX14 = "intersect1d_8hpp.html":[6,0,1,0,5,122], "intersect1d_8hpp.html#a35cdd4bb265142ff795a9990ed42a5c0":[6,0,1,0,5,122,0], "intersect1d_8hpp_source.html":[6,0,1,0,5,122], -"inv_8hpp.html":[6,0,1,0,8,5], -"inv_8hpp.html#a2eeb58d0a34e50e79fcfe59f71c61b4d":[6,0,1,0,8,5,0], -"inv_8hpp_source.html":[6,0,1,0,8,5], +"inv_8hpp.html":[6,0,1,0,8,7], +"inv_8hpp.html#a2eeb58d0a34e50e79fcfe59f71c61b4d":[6,0,1,0,8,7,0], +"inv_8hpp_source.html":[6,0,1,0,8,7], "invert_8hpp.html":[6,0,1,0,5,123], "invert_8hpp.html#ac3b291f1a3eb0042fcf73671cdde3cbc":[6,0,1,0,5,123,0], "invert_8hpp_source.html":[6,0,1,0,5,123], @@ -239,15 +249,5 @@ var NAVTREEINDEX14 = "log1p_8hpp_source.html":[6,0,1,0,5,139], "log2_8hpp.html":[6,0,1,0,5,140], "log2_8hpp.html#a48cbc16dc706678b6f85e655e935cd41":[6,0,1,0,5,140,1], -"log2_8hpp.html#a536e5046481a32bd6955a222f323393a":[6,0,1,0,5,140,0], -"log2_8hpp_source.html":[6,0,1,0,5,140], -"log_8hpp.html":[6,0,1,0,5,137], -"log_8hpp.html#a3f08d373ae167ac90d3bb6b6c4da0fb9":[6,0,1,0,5,137,1], -"log_8hpp.html#aba925957229bf54bfe854be197cd3d52":[6,0,1,0,5,137,0], -"log_8hpp_source.html":[6,0,1,0,5,137], -"log__gamma_8hpp.html":[6,0,1,0,16,32], -"log__gamma_8hpp.html#a11ec3d4677a53eafd8b0144cd6e42ce3":[6,0,1,0,16,32,1], -"log__gamma_8hpp.html#addebe777849a11f027a793975a53b653":[6,0,1,0,16,32,0], -"log__gamma_8hpp_source.html":[6,0,1,0,16,32], -"logaddexp2_8hpp.html":[6,0,1,0,5,142] +"log2_8hpp.html#a536e5046481a32bd6955a222f323393a":[6,0,1,0,5,140,0] }; diff --git a/docs/doxygen/html/navtreeindex15.js b/docs/doxygen/html/navtreeindex15.js index 35c88f030..afcf51614 100644 --- a/docs/doxygen/html/navtreeindex15.js +++ b/docs/doxygen/html/navtreeindex15.js @@ -1,5 +1,15 @@ var NAVTREEINDEX15 = { +"log2_8hpp_source.html":[6,0,1,0,5,140], +"log_8hpp.html":[6,0,1,0,5,137], +"log_8hpp.html#a3f08d373ae167ac90d3bb6b6c4da0fb9":[6,0,1,0,5,137,1], +"log_8hpp.html#aba925957229bf54bfe854be197cd3d52":[6,0,1,0,5,137,0], +"log_8hpp_source.html":[6,0,1,0,5,137], +"log__gamma_8hpp.html":[6,0,1,0,16,32], +"log__gamma_8hpp.html#a11ec3d4677a53eafd8b0144cd6e42ce3":[6,0,1,0,16,32,1], +"log__gamma_8hpp.html#addebe777849a11f027a793975a53b653":[6,0,1,0,16,32,0], +"log__gamma_8hpp_source.html":[6,0,1,0,16,32], +"logaddexp2_8hpp.html":[6,0,1,0,5,142], "logaddexp2_8hpp.html#a3e9f3a1d30bf2d5f83c8120680dea2a0":[6,0,1,0,5,142,0], "logaddexp2_8hpp.html#add38cc125a3fa63eae0b05b7b5ce7a0d":[6,0,1,0,5,142,1], "logaddexp2_8hpp_source.html":[6,0,1,0,5,142], @@ -32,20 +42,20 @@ var NAVTREEINDEX15 = "logspace_8hpp.html":[6,0,1,0,5,148], "logspace_8hpp.html#af30d297f088e3b9356cdba5cb76e70cc":[6,0,1,0,5,148,0], "logspace_8hpp_source.html":[6,0,1,0,5,148], -"lstsq_8hpp.html":[6,0,1,0,8,6], -"lstsq_8hpp.html#a8baf25f50874e4bd27d2644a2730fb03":[6,0,1,0,8,6,0], -"lstsq_8hpp_source.html":[6,0,1,0,8,6], -"lu__decomposition_8hpp.html":[6,0,1,0,8,7], -"lu__decomposition_8hpp.html#a60e7cebe243cc88b69d508b569456300":[6,0,1,0,8,7,0], -"lu__decomposition_8hpp_source.html":[6,0,1,0,8,7], +"lstsq_8hpp.html":[6,0,1,0,8,8], +"lstsq_8hpp.html#af96af1e6e215b975a74f12949b5f0b46":[6,0,1,0,8,8,0], +"lstsq_8hpp_source.html":[6,0,1,0,8,8], +"lu__decomposition_8hpp.html":[6,0,1,0,8,9], +"lu__decomposition_8hpp.html#a60e7cebe243cc88b69d508b569456300":[6,0,1,0,8,9,0], +"lu__decomposition_8hpp_source.html":[6,0,1,0,8,9], "matmul_8hpp.html":[6,0,1,0,5,149], "matmul_8hpp.html#a225e40b104aeec5dcee81e4d7ff5089f":[6,0,1,0,5,149,2], "matmul_8hpp.html#a2641ebcbac9389cb1637a2ca85baa8d5":[6,0,1,0,5,149,1], "matmul_8hpp.html#a666207bcb1e7fe5993aa707cfd8b1f50":[6,0,1,0,5,149,0], "matmul_8hpp_source.html":[6,0,1,0,5,149], -"matrix__power_8hpp.html":[6,0,1,0,8,8], -"matrix__power_8hpp.html#a59c33bf492f64017c673a151f890dcbf":[6,0,1,0,8,8,0], -"matrix__power_8hpp_source.html":[6,0,1,0,8,8], +"matrix__power_8hpp.html":[6,0,1,0,8,10], +"matrix__power_8hpp.html#a59c33bf492f64017c673a151f890dcbf":[6,0,1,0,8,10,0], +"matrix__power_8hpp_source.html":[6,0,1,0,8,10], "max_8hpp.html":[6,0,1,0,5,150], "max_8hpp.html#af37a6766f3bd9a7f83d32834d2a699b1":[6,0,1,0,5,150,0], "max_8hpp_source.html":[6,0,1,0,5,150], @@ -114,9 +124,9 @@ var NAVTREEINDEX15 = "mode_8hpp.html#a4e465e07206ae516930757d7faa4b0e3":[6,0,1,0,5,158,0], "mode_8hpp.html#ac793d41e8676c144fcf6c382918fef0d":[6,0,1,0,5,158,1], "mode_8hpp_source.html":[6,0,1,0,5,158], -"multi__dot_8hpp.html":[6,0,1,0,8,9], -"multi__dot_8hpp.html#a46188c640b2c3ee74418db676e8f3bce":[6,0,1,0,8,9,0], -"multi__dot_8hpp_source.html":[6,0,1,0,8,9], +"multi__dot_8hpp.html":[6,0,1,0,8,11], +"multi__dot_8hpp.html#a46188c640b2c3ee74418db676e8f3bce":[6,0,1,0,8,11,0], +"multi__dot_8hpp_source.html":[6,0,1,0,8,11], "multiply_8hpp.html":[6,0,1,0,5,159], "multiply_8hpp.html#a0db75e1181a2ea7f85bd945ae8e487cc":[6,0,1,0,5,159,0], "multiply_8hpp.html#a0fa194554132829026d06a8f707838a3":[6,0,1,0,5,159,1], @@ -239,15 +249,5 @@ var NAVTREEINDEX15 = "namespacenc.html#a12d4f20d25827a76565f265895686e0a":[4,0,0,497], "namespacenc.html#a12dc4de59262e3513a002b83b43626dd":[4,0,0,453], "namespacenc.html#a142bd95cc364924602eedeb78a979aa0":[4,0,0,281], -"namespacenc.html#a168850b112c794c6c33ba7c4c58ba290":[4,0,0,480], -"namespacenc.html#a171381462e430870904ae2a24ce2541a":[4,0,0,139], -"namespacenc.html#a171da00c79cfbc9500916b6ac4d3de70":[4,0,0,557], -"namespacenc.html#a17440059a0560c2091bbddbba29f36e0":[4,0,0,654], -"namespacenc.html#a1769d68f44f9c98d94dd412bc32a9bb5":[4,0,0,428], -"namespacenc.html#a187fc881530133757395c45fe137b71b":[4,0,0,292], -"namespacenc.html#a18a12b37f7ffc1f68517a2ffa27fe2da":[4,0,0,524], -"namespacenc.html#a18bd03abafb0570af48a5d97d71ad532":[4,0,0,166], -"namespacenc.html#a198857bb3bf09efffcc94e6aa3fbed87":[4,0,0,683], -"namespacenc.html#a19a21c68cb53309ac33e9c1a7b5d2513":[4,0,0,595], -"namespacenc.html#a1a03f98fb97804c4ce6c2940de85bee0":[4,0,0,498] +"namespacenc.html#a168850b112c794c6c33ba7c4c58ba290":[4,0,0,480] }; diff --git a/docs/doxygen/html/navtreeindex16.js b/docs/doxygen/html/navtreeindex16.js index f748e2a4b..af663d25c 100644 --- a/docs/doxygen/html/navtreeindex16.js +++ b/docs/doxygen/html/navtreeindex16.js @@ -1,5 +1,15 @@ var NAVTREEINDEX16 = { +"namespacenc.html#a171381462e430870904ae2a24ce2541a":[4,0,0,139], +"namespacenc.html#a171da00c79cfbc9500916b6ac4d3de70":[4,0,0,557], +"namespacenc.html#a17440059a0560c2091bbddbba29f36e0":[4,0,0,654], +"namespacenc.html#a1769d68f44f9c98d94dd412bc32a9bb5":[4,0,0,428], +"namespacenc.html#a187fc881530133757395c45fe137b71b":[4,0,0,292], +"namespacenc.html#a18a12b37f7ffc1f68517a2ffa27fe2da":[4,0,0,524], +"namespacenc.html#a18bd03abafb0570af48a5d97d71ad532":[4,0,0,166], +"namespacenc.html#a198857bb3bf09efffcc94e6aa3fbed87":[4,0,0,683], +"namespacenc.html#a19a21c68cb53309ac33e9c1a7b5d2513":[4,0,0,595], +"namespacenc.html#a1a03f98fb97804c4ce6c2940de85bee0":[4,0,0,498], "namespacenc.html#a1a94a76a63d77e13fddf0cfbad1fd562":[4,0,0,301], "namespacenc.html#a1ae30700a2db1cd8e44fa59b84c2b547":[4,0,0,323], "namespacenc.html#a1b71f03b842e44890312fa09ed1aa594":[4,0,0,109], @@ -239,15 +249,5 @@ var NAVTREEINDEX16 = "namespacenc.html#a6fcf78ca062b9526400c42b9c42a451a":[4,0,0,421], "namespacenc.html#a70086f6838e32bc48d4c509fc06b4e65":[4,0,0,580], "namespacenc.html#a7067b2b1095d5a094a1f4287888819f8":[4,0,0,553], -"namespacenc.html#a712445c9dd3bb483ae6a6be90e79c3e8":[4,0,0,157], -"namespacenc.html#a7227073082d530baaf7ebb96ee06995b":[4,0,0,475], -"namespacenc.html#a7229b43ce1e19fb560d461b6beda24af":[4,0,0,308], -"namespacenc.html#a724cd71c78633aa5a757aa76b514f46a":[4,0,0,506], -"namespacenc.html#a725eab730b946eca5d197933b9f955fa":[4,0,0,100], -"namespacenc.html#a726e4282f63047fc7a8863e73c7c2fe3":[4,0,0,144], -"namespacenc.html#a73096b21189fdc428553b7ab7a5ad556":[4,0,0,609], -"namespacenc.html#a735d4d07ccf9a9dea9089fd0c53c531f":[4,0,0,668], -"namespacenc.html#a7369ac32ffe3cc5d42c50239c1642182":[4,0,0,501], -"namespacenc.html#a736de91eb8f79bfaf4dc92d7161f1c87":[4,0,0,178], -"namespacenc.html#a73bde45c6281ba3a75e213a2675fa479":[4,0,0,585] +"namespacenc.html#a712445c9dd3bb483ae6a6be90e79c3e8":[4,0,0,157] }; diff --git a/docs/doxygen/html/navtreeindex17.js b/docs/doxygen/html/navtreeindex17.js index 0bbe4f8b2..398ad65a9 100644 --- a/docs/doxygen/html/navtreeindex17.js +++ b/docs/doxygen/html/navtreeindex17.js @@ -1,5 +1,15 @@ var NAVTREEINDEX17 = { +"namespacenc.html#a7227073082d530baaf7ebb96ee06995b":[4,0,0,475], +"namespacenc.html#a7229b43ce1e19fb560d461b6beda24af":[4,0,0,308], +"namespacenc.html#a724cd71c78633aa5a757aa76b514f46a":[4,0,0,506], +"namespacenc.html#a725eab730b946eca5d197933b9f955fa":[4,0,0,100], +"namespacenc.html#a726e4282f63047fc7a8863e73c7c2fe3":[4,0,0,144], +"namespacenc.html#a73096b21189fdc428553b7ab7a5ad556":[4,0,0,609], +"namespacenc.html#a735d4d07ccf9a9dea9089fd0c53c531f":[4,0,0,668], +"namespacenc.html#a7369ac32ffe3cc5d42c50239c1642182":[4,0,0,501], +"namespacenc.html#a736de91eb8f79bfaf4dc92d7161f1c87":[4,0,0,178], +"namespacenc.html#a73bde45c6281ba3a75e213a2675fa479":[4,0,0,585], "namespacenc.html#a74174a26b4b6db41951d9ce4222ea724":[4,0,0,601], "namespacenc.html#a74564bb753e9f6f69df4bb6dafabfd5c":[4,0,0,465], "namespacenc.html#a746ecf69081dec55ceb2647726ee106b":[4,0,0,597], @@ -239,15 +249,5 @@ var NAVTREEINDEX17 = "namespacenc.html#ac7cfdea4ac1caa81eabdb5dfe33b90b8":[4,0,0,119], "namespacenc.html#ac81d07250fb5f2fa03a80de5d01f04f7":[4,0,0,538], "namespacenc.html#ac83a50ef99e61f116a86df98196f4a8b":[4,0,0,690], -"namespacenc.html#ac8b57dfa32e1e4adf4ca98ae4841b462":[4,0,0,586], -"namespacenc.html#ac8b9e6bc83f8c55a3ae8bebb3dd00424":[4,0,0,87], -"namespacenc.html#ac8f9d48f3e5c59f8671d6872428aef73":[4,0,0,74], -"namespacenc.html#ac94fc8f9322f93966478e9ffe7db51f2":[4,0,0,96], -"namespacenc.html#ac995fec009d93ce03c4d01eaebac6777":[4,0,0,238], -"namespacenc.html#ac9cf532596ca573afe2ffe7b3c4d597f":[4,0,0,623], -"namespacenc.html#ac9dc278b368c0199fb88e830cafe75b0":[4,0,0,210], -"namespacenc.html#aca598291f86923b1c9df605af7463ea8":[4,0,0,250], -"namespacenc.html#aca805ef0273314ddc6c70b2c913bf485":[4,0,0,313], -"namespacenc.html#aca9d5e75efc663feb740b267b5c835aa":[4,0,0,431], -"namespacenc.html#acabb7a0c0e95b0715c4436f1106d575b":[4,0,0,79] +"namespacenc.html#ac8b57dfa32e1e4adf4ca98ae4841b462":[4,0,0,586] }; diff --git a/docs/doxygen/html/navtreeindex18.js b/docs/doxygen/html/navtreeindex18.js index da67fe36a..70abebb72 100644 --- a/docs/doxygen/html/navtreeindex18.js +++ b/docs/doxygen/html/navtreeindex18.js @@ -1,5 +1,15 @@ var NAVTREEINDEX18 = { +"namespacenc.html#ac8b9e6bc83f8c55a3ae8bebb3dd00424":[4,0,0,87], +"namespacenc.html#ac8f9d48f3e5c59f8671d6872428aef73":[4,0,0,74], +"namespacenc.html#ac94fc8f9322f93966478e9ffe7db51f2":[4,0,0,96], +"namespacenc.html#ac995fec009d93ce03c4d01eaebac6777":[4,0,0,238], +"namespacenc.html#ac9cf532596ca573afe2ffe7b3c4d597f":[4,0,0,623], +"namespacenc.html#ac9dc278b368c0199fb88e830cafe75b0":[4,0,0,210], +"namespacenc.html#aca598291f86923b1c9df605af7463ea8":[4,0,0,250], +"namespacenc.html#aca805ef0273314ddc6c70b2c913bf485":[4,0,0,313], +"namespacenc.html#aca9d5e75efc663feb740b267b5c835aa":[4,0,0,431], +"namespacenc.html#acabb7a0c0e95b0715c4436f1106d575b":[4,0,0,79], "namespacenc.html#acb0128da9c31422e62814a91d2075d9d":[4,0,0,296], "namespacenc.html#acb9c767451a2b00ccf171cd75f6b39ad":[4,0,0,234], "namespacenc.html#acbaf1e3fae0b7b20936bf29b6cedea90":[4,0,0,430], @@ -239,15 +249,5 @@ var NAVTREEINDEX18 = "namespacenc_1_1edac_1_1detail.html#abde37c852253de171988da5e4b775273":[4,0,0,4,0,0], "namespacenc_1_1edac_1_1detail.html#ad3215e8486eb3a544a483e5234c856d7":[4,0,0,4,0,1], "namespacenc_1_1edac_1_1detail.html#aea349d7b4d28ca91b85bcb3a2823c145":[4,0,0,4,0,2], -"namespacenc_1_1edac_1_1detail.html#af386b23445a4942453c69cff80ee0e20":[4,0,0,4,0,3], -"namespacenc_1_1endian.html":[4,0,0,5], -"namespacenc_1_1endian.html#a11907ef8078650aee8fe900854ba5bb4":[4,0,0,5,1], -"namespacenc_1_1endian.html#a28d96487f9ac66755e2dd4925a459e0d":[4,0,0,5,0], -"namespacenc_1_1error.html":[4,0,0,6], -"namespacenc_1_1error.html#ae23be92f797ad9d90604456bdf27092f":[4,0,0,6,0], -"namespacenc_1_1fft.html":[4,0,0,7], -"namespacenc_1_1fft.html#a05ed55f56180c1351745b3820d57ad68":[4,0,0,7,1], -"namespacenc_1_1fft.html#a06f4f9c1b1c6eec636c0b5ed9b732e1e":[4,0,0,7,22], -"namespacenc_1_1fft.html#a0a4d7d41532786f7df2392f2d56817ad":[4,0,0,7,25], -"namespacenc_1_1fft.html#a0f48035b4016f2421fbfabb5a2a12dd5":[4,0,0,7,3] +"namespacenc_1_1edac_1_1detail.html#af386b23445a4942453c69cff80ee0e20":[4,0,0,4,0,3] }; diff --git a/docs/doxygen/html/navtreeindex19.js b/docs/doxygen/html/navtreeindex19.js index cd07a0547..d29520cf5 100644 --- a/docs/doxygen/html/navtreeindex19.js +++ b/docs/doxygen/html/navtreeindex19.js @@ -1,5 +1,15 @@ var NAVTREEINDEX19 = { +"namespacenc_1_1endian.html":[4,0,0,5], +"namespacenc_1_1endian.html#a11907ef8078650aee8fe900854ba5bb4":[4,0,0,5,1], +"namespacenc_1_1endian.html#a28d96487f9ac66755e2dd4925a459e0d":[4,0,0,5,0], +"namespacenc_1_1error.html":[4,0,0,6], +"namespacenc_1_1error.html#ae23be92f797ad9d90604456bdf27092f":[4,0,0,6,0], +"namespacenc_1_1fft.html":[4,0,0,7], +"namespacenc_1_1fft.html#a05ed55f56180c1351745b3820d57ad68":[4,0,0,7,1], +"namespacenc_1_1fft.html#a06f4f9c1b1c6eec636c0b5ed9b732e1e":[4,0,0,7,22], +"namespacenc_1_1fft.html#a0a4d7d41532786f7df2392f2d56817ad":[4,0,0,7,25], +"namespacenc_1_1fft.html#a0f48035b4016f2421fbfabb5a2a12dd5":[4,0,0,7,3], "namespacenc_1_1fft.html#a116f74f399fd3283ec2446dec7d0cd1d":[4,0,0,7,2], "namespacenc_1_1fft.html#a19abaf1f2253f2ffc1f8ae68449ebcb0":[4,0,0,7,20], "namespacenc_1_1fft.html#a1ba5f43f815121376002e06d526b5f26":[4,0,0,7,9], @@ -93,21 +103,24 @@ var NAVTREEINDEX19 = "namespacenc_1_1integrate.html#acdfbecb87f7780b2961eb4e5d3b3d109":[4,0,0,10,4], "namespacenc_1_1integrate.html#af7d17b4e025bf94f903d3c671da3baf7":[4,0,0,10,1], "namespacenc_1_1linalg.html":[4,0,0,11], -"namespacenc_1_1linalg.html#a1ab0529b2e6d2bd4668051b8b7dcb85b":[4,0,0,11,13], -"namespacenc_1_1linalg.html#a2eeb58d0a34e50e79fcfe59f71c61b4d":[4,0,0,11,8], -"namespacenc_1_1linalg.html#a46188c640b2c3ee74418db676e8f3bce":[4,0,0,11,12], +"namespacenc_1_1linalg.html#a1ab0529b2e6d2bd4668051b8b7dcb85b":[4,0,0,11,15], +"namespacenc_1_1linalg.html#a1b037ada059b1292a794e6ffb1823a05":[4,0,0,11,4], +"namespacenc_1_1linalg.html#a2853cd2015993be7a86f9ba823601ca6":[4,0,0,11,5], +"namespacenc_1_1linalg.html#a2eeb58d0a34e50e79fcfe59f71c61b4d":[4,0,0,11,10], +"namespacenc_1_1linalg.html#a305c49baed6667d8d64b9cd13f2c5060":[4,0,0,11,18], +"namespacenc_1_1linalg.html#a46188c640b2c3ee74418db676e8f3bce":[4,0,0,11,14], "namespacenc_1_1linalg.html#a560873e98ef9b3d8da501ad6feb121e9":[4,0,0,11,3], -"namespacenc_1_1linalg.html#a59c33bf492f64017c673a151f890dcbf":[4,0,0,11,11], -"namespacenc_1_1linalg.html#a60e7cebe243cc88b69d508b569456300":[4,0,0,11,10], -"namespacenc_1_1linalg.html#a7e29068f07fa422d6c9185a4d91bf6a2":[4,0,0,11,14], -"namespacenc_1_1linalg.html#a8baf25f50874e4bd27d2644a2730fb03":[4,0,0,11,9], -"namespacenc_1_1linalg.html#a9de81d7c677cb58615fba70679e73f66":[4,0,0,11,4], -"namespacenc_1_1linalg.html#acb38ad2613d50422afc539d005159055":[4,0,0,11,16], -"namespacenc_1_1linalg.html#ad93ac021edcd0c8f81891c93996dee25":[4,0,0,11,5], +"namespacenc_1_1linalg.html#a59c33bf492f64017c673a151f890dcbf":[4,0,0,11,13], +"namespacenc_1_1linalg.html#a60e7cebe243cc88b69d508b569456300":[4,0,0,11,12], +"namespacenc_1_1linalg.html#a7e29068f07fa422d6c9185a4d91bf6a2":[4,0,0,11,16], +"namespacenc_1_1linalg.html#a9c3f05864405242a8917530242cdda9c":[4,0,0,11,19], +"namespacenc_1_1linalg.html#a9de81d7c677cb58615fba70679e73f66":[4,0,0,11,6], +"namespacenc_1_1linalg.html#ad93ac021edcd0c8f81891c93996dee25":[4,0,0,11,7], "namespacenc_1_1linalg.html#ae97a3a4f8b9f2d4253060db5928da6d1":[4,0,0,11,2], -"namespacenc_1_1linalg.html#af55949f0049c2a7b1a3e1f36a31a678f":[4,0,0,11,6], -"namespacenc_1_1linalg.html#afa7cc2a8a4084e94b4af00484d3a511e":[4,0,0,11,7], -"namespacenc_1_1linalg.html#afc9432e7c93e830c4ff8cff7f0a15771":[4,0,0,11,15], +"namespacenc_1_1linalg.html#af55949f0049c2a7b1a3e1f36a31a678f":[4,0,0,11,8], +"namespacenc_1_1linalg.html#af96af1e6e215b975a74f12949b5f0b46":[4,0,0,11,11], +"namespacenc_1_1linalg.html#afa7cc2a8a4084e94b4af00484d3a511e":[4,0,0,11,9], +"namespacenc_1_1linalg.html#afc9432e7c93e830c4ff8cff7f0a15771":[4,0,0,11,17], "namespacenc_1_1linalg_1_1detail.html":[4,0,0,11,0], "namespacenc_1_1linalg_1_1detail.html#a636d3082932ef8a13aaf9c4201bf8f9d":[4,0,0,11,0,0], "namespacenc_1_1logger.html":[4,0,0,12], @@ -236,18 +249,5 @@ var NAVTREEINDEX19 = "namespacenc_1_1random_1_1detail.html#a7899dfcd192eda5c8318ebe2f8d5bb41":[4,0,0,14,0,37], "namespacenc_1_1random_1_1detail.html#a7beba15b583bcc2d6f154aa02d25f34a":[4,0,0,14,0,57], "namespacenc_1_1random_1_1detail.html#a84375160c024c77e8010a65c1d85456c":[4,0,0,14,0,55], -"namespacenc_1_1random_1_1detail.html#a8787f79f4caaccef2e0f4016e433b5ec":[4,0,0,14,0,31], -"namespacenc_1_1random_1_1detail.html#a8a32f909feccd6758fdaf83e9165a9e1":[4,0,0,14,0,14], -"namespacenc_1_1random_1_1detail.html#a8a89c0636f8f79583ea5b752b2af6276":[4,0,0,14,0,25], -"namespacenc_1_1random_1_1detail.html#a8ccb4eb9df8dd0739d2001ee2e2128f2":[4,0,0,14,0,28], -"namespacenc_1_1random_1_1detail.html#a9c027e3e07b7a5bad53303f99cbfa242":[4,0,0,14,0,42], -"namespacenc_1_1random_1_1detail.html#a9e402d65304589f2792021f031836430":[4,0,0,14,0,36], -"namespacenc_1_1random_1_1detail.html#aa164dc81c9c5d2979cdd15dca77b5f99":[4,0,0,14,0,24], -"namespacenc_1_1random_1_1detail.html#aa4810e51158c9385d80b93230b92a043":[4,0,0,14,0,26], -"namespacenc_1_1random_1_1detail.html#aa966afc1b449a56ab20c21cd70d9fa1f":[4,0,0,14,0,33], -"namespacenc_1_1random_1_1detail.html#aaaa8ea280d9dddd9e7ad4176d600fc58":[4,0,0,14,0,39], -"namespacenc_1_1random_1_1detail.html#ab77de38f57e578f6ae45db74f0c9f4dd":[4,0,0,14,0,54], -"namespacenc_1_1random_1_1detail.html#abdee8056d3ea531f0bf8a7a688e3f002":[4,0,0,14,0,47], -"namespacenc_1_1random_1_1detail.html#abfdd56b9db1a4153d36b9fe09c00e143":[4,0,0,14,0,17], -"namespacenc_1_1random_1_1detail.html#ac0f4cb3f3d96c9062fa7cda45d9c591d":[4,0,0,14,0,6] +"namespacenc_1_1random_1_1detail.html#a8787f79f4caaccef2e0f4016e433b5ec":[4,0,0,14,0,31] }; diff --git a/docs/doxygen/html/navtreeindex2.js b/docs/doxygen/html/navtreeindex2.js index e12a011ae..811c243b6 100644 --- a/docs/doxygen/html/navtreeindex2.js +++ b/docs/doxygen/html/navtreeindex2.js @@ -10,8 +10,6 @@ var NAVTREEINDEX2 = "_roots_8hpp_source.html":[6,0,1,0,33], "_rotations_8hpp.html":[6,0,1,0,34], "_rotations_8hpp_source.html":[6,0,1,0,34], -"_s_v_d_class_8hpp.html":[6,0,1,0,8,0,0], -"_s_v_d_class_8hpp_source.html":[6,0,1,0,8,0,0], "_secant_8hpp.html":[6,0,1,0,14,5], "_secant_8hpp_source.html":[6,0,1,0,14,5], "_slice_8hpp.html":[6,0,1,0,1,6], @@ -249,5 +247,7 @@ var NAVTREEINDEX2 = "arcsinh_8hpp.html#a74ebb0003f6cf0d0dc0fd8af1e983969":[6,0,1,0,5,16,1], "arcsinh_8hpp.html#abbf91db9344e5d1a53325990ef5535a0":[6,0,1,0,5,16,0], "arcsinh_8hpp_source.html":[6,0,1,0,5,16], -"arctan2_8hpp.html":[6,0,1,0,5,18] +"arctan2_8hpp.html":[6,0,1,0,5,18], +"arctan2_8hpp.html#a3d3c4c6b273e6eee45cf6359cf621980":[6,0,1,0,5,18,0], +"arctan2_8hpp.html#abdec674ddb32540775e97e0fca6016aa":[6,0,1,0,5,18,1] }; diff --git a/docs/doxygen/html/navtreeindex20.js b/docs/doxygen/html/navtreeindex20.js index 86fec4fa5..f7e2c5643 100644 --- a/docs/doxygen/html/navtreeindex20.js +++ b/docs/doxygen/html/navtreeindex20.js @@ -1,5 +1,18 @@ var NAVTREEINDEX20 = { +"namespacenc_1_1random_1_1detail.html#a8a32f909feccd6758fdaf83e9165a9e1":[4,0,0,14,0,14], +"namespacenc_1_1random_1_1detail.html#a8a89c0636f8f79583ea5b752b2af6276":[4,0,0,14,0,25], +"namespacenc_1_1random_1_1detail.html#a8ccb4eb9df8dd0739d2001ee2e2128f2":[4,0,0,14,0,28], +"namespacenc_1_1random_1_1detail.html#a9c027e3e07b7a5bad53303f99cbfa242":[4,0,0,14,0,42], +"namespacenc_1_1random_1_1detail.html#a9e402d65304589f2792021f031836430":[4,0,0,14,0,36], +"namespacenc_1_1random_1_1detail.html#aa164dc81c9c5d2979cdd15dca77b5f99":[4,0,0,14,0,24], +"namespacenc_1_1random_1_1detail.html#aa4810e51158c9385d80b93230b92a043":[4,0,0,14,0,26], +"namespacenc_1_1random_1_1detail.html#aa966afc1b449a56ab20c21cd70d9fa1f":[4,0,0,14,0,33], +"namespacenc_1_1random_1_1detail.html#aaaa8ea280d9dddd9e7ad4176d600fc58":[4,0,0,14,0,39], +"namespacenc_1_1random_1_1detail.html#ab77de38f57e578f6ae45db74f0c9f4dd":[4,0,0,14,0,54], +"namespacenc_1_1random_1_1detail.html#abdee8056d3ea531f0bf8a7a688e3f002":[4,0,0,14,0,47], +"namespacenc_1_1random_1_1detail.html#abfdd56b9db1a4153d36b9fe09c00e143":[4,0,0,14,0,17], +"namespacenc_1_1random_1_1detail.html#ac0f4cb3f3d96c9062fa7cda45d9c591d":[4,0,0,14,0,6], "namespacenc_1_1random_1_1detail.html#ac1ca9eacb56a06f62433997a1338aa6d":[4,0,0,14,0,23], "namespacenc_1_1random_1_1detail.html#ac2577af2a5e3d84a449511544be2b887":[4,0,0,14,0,45], "namespacenc_1_1random_1_1detail.html#ac3b67cb54637b932ca78f86f76ca10e1":[4,0,0,14,0,50], @@ -236,18 +249,5 @@ var NAVTREEINDEX20 = "newbyteorder_8hpp.html#a44656e6f55718f92f0b7ba6e45ac2ee3":[6,0,1,0,5,178,0], "newbyteorder_8hpp.html#a4d2ae51817f2acee83e2df0e04a8bac5":[6,0,1,0,5,178,1], "newbyteorder_8hpp_source.html":[6,0,1,0,5,178], -"non_central_chi_squared_8hpp.html":[6,0,1,0,13,16], -"non_central_chi_squared_8hpp.html#a3323c8874267147ac892a4140d2b3f8c":[6,0,1,0,13,16,0], -"non_central_chi_squared_8hpp.html#a8787f79f4caaccef2e0f4016e433b5ec":[6,0,1,0,13,16,3], -"non_central_chi_squared_8hpp.html#abf3cab0396026700ebf2d2ffa5e13fa6":[6,0,1,0,13,16,1], -"non_central_chi_squared_8hpp.html#af31c8314c99e04b2f84a8a27695e7637":[6,0,1,0,13,16,2], -"non_central_chi_squared_8hpp_source.html":[6,0,1,0,13,16], -"none_8hpp.html":[6,0,1,0,5,179], -"none_8hpp.html#ac4e2b389aad16ef62c9807ad246d6c96":[6,0,1,0,5,179,0], -"none_8hpp_source.html":[6,0,1,0,5,179], -"nonzero_8hpp.html":[6,0,1,0,5,180], -"nonzero_8hpp.html#a291d0ac850232def29be8cc885fd0053":[6,0,1,0,5,180,0], -"nonzero_8hpp_source.html":[6,0,1,0,5,180], -"norm_8hpp.html":[6,0,1,0,5,181], -"norm_8hpp.html#a2b54e033925bd40ebddd4bd30929c1b7":[6,0,1,0,5,181,0] +"non_central_chi_squared_8hpp.html":[6,0,1,0,13,16] }; diff --git a/docs/doxygen/html/navtreeindex21.js b/docs/doxygen/html/navtreeindex21.js index c927fb66a..990821bc0 100644 --- a/docs/doxygen/html/navtreeindex21.js +++ b/docs/doxygen/html/navtreeindex21.js @@ -1,5 +1,18 @@ var NAVTREEINDEX21 = { +"non_central_chi_squared_8hpp.html#a3323c8874267147ac892a4140d2b3f8c":[6,0,1,0,13,16,0], +"non_central_chi_squared_8hpp.html#a8787f79f4caaccef2e0f4016e433b5ec":[6,0,1,0,13,16,3], +"non_central_chi_squared_8hpp.html#abf3cab0396026700ebf2d2ffa5e13fa6":[6,0,1,0,13,16,1], +"non_central_chi_squared_8hpp.html#af31c8314c99e04b2f84a8a27695e7637":[6,0,1,0,13,16,2], +"non_central_chi_squared_8hpp_source.html":[6,0,1,0,13,16], +"none_8hpp.html":[6,0,1,0,5,179], +"none_8hpp.html#ac4e2b389aad16ef62c9807ad246d6c96":[6,0,1,0,5,179,0], +"none_8hpp_source.html":[6,0,1,0,5,179], +"nonzero_8hpp.html":[6,0,1,0,5,180], +"nonzero_8hpp.html#a291d0ac850232def29be8cc885fd0053":[6,0,1,0,5,180,0], +"nonzero_8hpp_source.html":[6,0,1,0,5,180], +"norm_8hpp.html":[6,0,1,0,5,181], +"norm_8hpp.html#a2b54e033925bd40ebddd4bd30929c1b7":[6,0,1,0,5,181,0], "norm_8hpp.html#a95b39a38a98986f81650168075d642d3":[6,0,1,0,5,181,1], "norm_8hpp_source.html":[6,0,1,0,5,181], "normal_8hpp.html":[6,0,1,0,13,17], @@ -59,12 +72,12 @@ var NAVTREEINDEX21 = "permutation_8hpp.html#a89b35742889ecffb90cb6497cd1cb265":[6,0,1,0,13,18,1], "permutation_8hpp.html#aa2ec0842c315e125d50c6af81007a389":[6,0,1,0,13,18,0], "permutation_8hpp_source.html":[6,0,1,0,13,18], -"pinv_8hpp.html":[6,0,1,0,8,10], -"pinv_8hpp.html#a1ab0529b2e6d2bd4668051b8b7dcb85b":[6,0,1,0,8,10,0], -"pinv_8hpp_source.html":[6,0,1,0,8,10], -"pivot_l_u__decomposition_8hpp.html":[6,0,1,0,8,11], -"pivot_l_u__decomposition_8hpp.html#a7e29068f07fa422d6c9185a4d91bf6a2":[6,0,1,0,8,11,0], -"pivot_l_u__decomposition_8hpp_source.html":[6,0,1,0,8,11], +"pinv_8hpp.html":[6,0,1,0,8,12], +"pinv_8hpp.html#a1ab0529b2e6d2bd4668051b8b7dcb85b":[6,0,1,0,8,12,0], +"pinv_8hpp_source.html":[6,0,1,0,8,12], +"pivot_l_u__decomposition_8hpp.html":[6,0,1,0,8,13], +"pivot_l_u__decomposition_8hpp.html#a7e29068f07fa422d6c9185a4d91bf6a2":[6,0,1,0,8,13,0], +"pivot_l_u__decomposition_8hpp_source.html":[6,0,1,0,8,13], "place_8hpp.html":[6,0,1,0,5,192], "place_8hpp.html#a171da00c79cfbc9500916b6ac4d3de70":[6,0,1,0,5,192,0], "place_8hpp_source.html":[6,0,1,0,5,192], @@ -236,18 +249,5 @@ var NAVTREEINDEX21 = "rms_8hpp.html":[6,0,1,0,5,215], "rms_8hpp.html#adc5caccd6d4c255fe829e3ef29b74c06":[6,0,1,0,5,215,0], "rms_8hpp.html#af035e4f81581711cb75db264e6d95f0f":[6,0,1,0,5,215,1], -"rms_8hpp_source.html":[6,0,1,0,5,215], -"rodrigues_rotation_8hpp.html":[6,0,1,0,15,2], -"rodrigues_rotation_8hpp.html#aa8fffbd937de1eea795e3fcb1b12fe9c":[6,0,1,0,15,2,0], -"rodrigues_rotation_8hpp.html#ae7d7397eec3edcfbd8b6b9784ad2fd1c":[6,0,1,0,15,2,1], -"rodrigues_rotation_8hpp_source.html":[6,0,1,0,15,2], -"roll_8hpp.html":[6,0,1,0,5,216], -"roll_8hpp.html#aa9b9e6ad225cc08a9f9c3c1753779f2e":[6,0,1,0,5,216,0], -"roll_8hpp_source.html":[6,0,1,0,5,216], -"romberg_8hpp.html":[6,0,1,0,7,1], -"romberg_8hpp.html#a5406412619aa59539dd19f62f0be8caf":[6,0,1,0,7,1,0], -"romberg_8hpp_source.html":[6,0,1,0,7,1], -"rot90_8hpp.html":[6,0,1,0,5,217], -"rot90_8hpp.html#ab3bff6f3226aeeb44fe6d10c16612d2c":[6,0,1,0,5,217,0], -"rot90_8hpp_source.html":[6,0,1,0,5,217] +"rms_8hpp_source.html":[6,0,1,0,5,215] }; diff --git a/docs/doxygen/html/navtreeindex22.js b/docs/doxygen/html/navtreeindex22.js index 302bd5a70..02c3f92ec 100644 --- a/docs/doxygen/html/navtreeindex22.js +++ b/docs/doxygen/html/navtreeindex22.js @@ -1,5 +1,18 @@ var NAVTREEINDEX22 = { +"rodrigues_rotation_8hpp.html":[6,0,1,0,15,2], +"rodrigues_rotation_8hpp.html#aa8fffbd937de1eea795e3fcb1b12fe9c":[6,0,1,0,15,2,0], +"rodrigues_rotation_8hpp.html#ae7d7397eec3edcfbd8b6b9784ad2fd1c":[6,0,1,0,15,2,1], +"rodrigues_rotation_8hpp_source.html":[6,0,1,0,15,2], +"roll_8hpp.html":[6,0,1,0,5,216], +"roll_8hpp.html#aa9b9e6ad225cc08a9f9c3c1753779f2e":[6,0,1,0,5,216,0], +"roll_8hpp_source.html":[6,0,1,0,5,216], +"romberg_8hpp.html":[6,0,1,0,7,1], +"romberg_8hpp.html#a5406412619aa59539dd19f62f0be8caf":[6,0,1,0,7,1,0], +"romberg_8hpp_source.html":[6,0,1,0,7,1], +"rot90_8hpp.html":[6,0,1,0,5,217], +"rot90_8hpp.html#ab3bff6f3226aeeb44fe6d10c16612d2c":[6,0,1,0,5,217,0], +"rot90_8hpp_source.html":[6,0,1,0,5,217], "round_8hpp.html":[6,0,1,0,5,218], "round_8hpp.html#ac9cf532596ca573afe2ffe7b3c4d597f":[6,0,1,0,5,218,0], "round_8hpp.html#af9c0b27b59e8a7be27130c9f470c4ef3":[6,0,1,0,5,218,1], @@ -53,9 +66,9 @@ var NAVTREEINDEX22 = "softmax_8hpp.html":[6,0,1,0,16,37], "softmax_8hpp.html#a57c31ef5f8cbde558d6871c979162d51":[6,0,1,0,16,37,0], "softmax_8hpp_source.html":[6,0,1,0,16,37], -"solve_8hpp.html":[6,0,1,0,8,12], -"solve_8hpp.html#afc9432e7c93e830c4ff8cff7f0a15771":[6,0,1,0,8,12,0], -"solve_8hpp_source.html":[6,0,1,0,8,12], +"solve_8hpp.html":[6,0,1,0,8,14], +"solve_8hpp.html#afc9432e7c93e830c4ff8cff7f0a15771":[6,0,1,0,8,14,0], +"solve_8hpp_source.html":[6,0,1,0,8,14], "sort_8hpp.html":[6,0,1,0,5,230], "sort_8hpp.html#a3c24c68959c609535bc8ae6a33f54d49":[6,0,1,0,5,230,0], "sort_8hpp_source.html":[6,0,1,0,5,230], @@ -109,72 +122,72 @@ var NAVTREEINDEX22 = "stdev_8hpp.html#a53ac40df08d0e0ac23ac99719a46f11e":[6,0,1,0,5,235,0], "stdev_8hpp.html#ab743c3f0710a1d9cc48364d749e8da23":[6,0,1,0,5,235,1], "stdev_8hpp_source.html":[6,0,1,0,5,235], -"structnc_1_1_complex_hash.html":[4,0,0,27], "structnc_1_1_complex_hash.html":[5,0,0,17], +"structnc_1_1_complex_hash.html":[4,0,0,27], "structnc_1_1_complex_hash.html#a1ec3a6a7292e6ca7c0ead5a4f5406c81":[4,0,0,27,0], "structnc_1_1_complex_hash.html#a1ec3a6a7292e6ca7c0ead5a4f5406c81":[5,0,0,17,0], "structnc_1_1all__arithmetic.html":[4,0,0,21], "structnc_1_1all__arithmetic.html":[5,0,0,11], "structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html":[5,0,0,12], "structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html":[4,0,0,22], -"structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html#a6e1a48ad3dc95bb666261cd0e3503f5c":[5,0,0,12,0], "structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html#a6e1a48ad3dc95bb666261cd0e3503f5c":[4,0,0,22,0], +"structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html#a6e1a48ad3dc95bb666261cd0e3503f5c":[5,0,0,12,0], "structnc_1_1all__arithmetic_3_01_t_01_4.html":[5,0,0,13], "structnc_1_1all__arithmetic_3_01_t_01_4.html":[4,0,0,23], -"structnc_1_1all__arithmetic_3_01_t_01_4.html#aeb8a99e0539f9d4d01b6ac63dfe6c186":[5,0,0,13,0], "structnc_1_1all__arithmetic_3_01_t_01_4.html#aeb8a99e0539f9d4d01b6ac63dfe6c186":[4,0,0,23,0], -"structnc_1_1all__same.html":[5,0,0,14], +"structnc_1_1all__arithmetic_3_01_t_01_4.html#aeb8a99e0539f9d4d01b6ac63dfe6c186":[5,0,0,13,0], "structnc_1_1all__same.html":[4,0,0,24], +"structnc_1_1all__same.html":[5,0,0,14], "structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html":[4,0,0,25], "structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html":[5,0,0,15], "structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html#a35efae6bdf247952d31021b7e811a653":[5,0,0,15,0], "structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html#a35efae6bdf247952d31021b7e811a653":[4,0,0,25,0], "structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html":[4,0,0,26], "structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html":[5,0,0,16], -"structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html#a02b49e4936f586c2407c089400ee891f":[4,0,0,26,0], "structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html#a02b49e4936f586c2407c089400ee891f":[5,0,0,16,0], -"structnc_1_1greater_than.html":[4,0,0,32], +"structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html#a02b49e4936f586c2407c089400ee891f":[4,0,0,26,0], "structnc_1_1greater_than.html":[5,0,0,22], -"structnc_1_1greater_than.html#a6664c509bb1b73d1547aeffa4ea2afec":[4,0,0,32,0], +"structnc_1_1greater_than.html":[4,0,0,32], "structnc_1_1greater_than.html#a6664c509bb1b73d1547aeffa4ea2afec":[5,0,0,22,0], -"structnc_1_1is__complex.html":[5,0,0,23], +"structnc_1_1greater_than.html#a6664c509bb1b73d1547aeffa4ea2afec":[4,0,0,32,0], "structnc_1_1is__complex.html":[4,0,0,33], -"structnc_1_1is__complex.html#a273a78ae8b41cf81e633f259204ce5dd":[5,0,0,23,0], +"structnc_1_1is__complex.html":[5,0,0,23], "structnc_1_1is__complex.html#a273a78ae8b41cf81e633f259204ce5dd":[4,0,0,33,0], -"structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html":[4,0,0,34], +"structnc_1_1is__complex.html#a273a78ae8b41cf81e633f259204ce5dd":[5,0,0,23,0], "structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html":[5,0,0,24], +"structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html":[4,0,0,34], "structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html#add526ed6ceb3045a816385e5c2c6d553":[4,0,0,34,0], "structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html#add526ed6ceb3045a816385e5c2c6d553":[5,0,0,24,0], -"structnc_1_1is__ndarray__int.html":[4,0,0,35], "structnc_1_1is__ndarray__int.html":[5,0,0,25], -"structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html":[4,0,0,36], +"structnc_1_1is__ndarray__int.html":[4,0,0,35], "structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html":[5,0,0,26], -"structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#abcc0bf96b96ead1f67112d755aa417a8":[5,0,0,26,0], +"structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html":[4,0,0,36], "structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#abcc0bf96b96ead1f67112d755aa417a8":[4,0,0,36,0], +"structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#abcc0bf96b96ead1f67112d755aa417a8":[5,0,0,26,0], "structnc_1_1is__valid__dtype.html":[5,0,0,27], "structnc_1_1is__valid__dtype.html":[4,0,0,37], -"structnc_1_1is__valid__dtype.html#af383f42b2b624cc161c1748b98cc541e":[5,0,0,27,0], "structnc_1_1is__valid__dtype.html#af383f42b2b624cc161c1748b98cc541e":[4,0,0,37,0], -"structnc_1_1type__traits_1_1is__ndarray__int.html":[4,0,0,19,0], +"structnc_1_1is__valid__dtype.html#af383f42b2b624cc161c1748b98cc541e":[5,0,0,27,0], "structnc_1_1type__traits_1_1is__ndarray__int.html":[5,0,0,9,0], +"structnc_1_1type__traits_1_1is__ndarray__int.html":[4,0,0,19,0], "structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html":[5,0,0,9,1], "structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html":[4,0,0,19,1], -"structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#ac6c1b85d844e22cf66f62d1c05912d55":[4,0,0,19,1,0], "structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#ac6c1b85d844e22cf66f62d1c05912d55":[5,0,0,9,1,0], -"structnc_1_1type__traits_1_1is__ndarray__signed__int.html":[5,0,0,9,2], +"structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#ac6c1b85d844e22cf66f62d1c05912d55":[4,0,0,19,1,0], "structnc_1_1type__traits_1_1is__ndarray__signed__int.html":[4,0,0,19,2], -"structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html":[5,0,0,9,3], +"structnc_1_1type__traits_1_1is__ndarray__signed__int.html":[5,0,0,9,2], "structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html":[4,0,0,19,3], -"structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#adf26f13ad7b6cf3263f4b8f57ccb0283":[5,0,0,9,3,0], +"structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html":[5,0,0,9,3], "structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#adf26f13ad7b6cf3263f4b8f57ccb0283":[4,0,0,19,3,0], +"structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#adf26f13ad7b6cf3263f4b8f57ccb0283":[5,0,0,9,3,0], "structnc_1_1utils_1_1timeit__detail_1_1_result.html":[5,0,0,10,0,0], "structnc_1_1utils_1_1timeit__detail_1_1_result.html":[4,0,0,20,0,0], -"structnc_1_1utils_1_1timeit__detail_1_1_result.html#a76be5895c0364f78323f8af4d2696cb9":[5,0,0,10,0,0,0], "structnc_1_1utils_1_1timeit__detail_1_1_result.html#a76be5895c0364f78323f8af4d2696cb9":[4,0,0,20,0,0,0], -"structnc_1_1utils_1_1timeit__detail_1_1_result.html#a8fe6dbd4f8c843427276d22fcdf11c97":[5,0,0,10,0,0,1], +"structnc_1_1utils_1_1timeit__detail_1_1_result.html#a76be5895c0364f78323f8af4d2696cb9":[5,0,0,10,0,0,0], "structnc_1_1utils_1_1timeit__detail_1_1_result.html#a8fe6dbd4f8c843427276d22fcdf11c97":[4,0,0,20,0,0,1], -"structnc_1_1utils_1_1timeit__detail_1_1_result.html#affcef185e2ace7dd37dab450ee350209":[5,0,0,10,0,0,2], +"structnc_1_1utils_1_1timeit__detail_1_1_result.html#a8fe6dbd4f8c843427276d22fcdf11c97":[5,0,0,10,0,0,1], "structnc_1_1utils_1_1timeit__detail_1_1_result.html#affcef185e2ace7dd37dab450ee350209":[4,0,0,20,0,0,2], +"structnc_1_1utils_1_1timeit__detail_1_1_result.html#affcef185e2ace7dd37dab450ee350209":[5,0,0,10,0,0,2], "student_t_8hpp.html":[6,0,1,0,13,27], "student_t_8hpp.html#a0323794f6a1d133f70adfa98409eb176":[6,0,1,0,13,27,0], "student_t_8hpp.html#a684b49082bfd8557d879d56a22c3bc38":[6,0,1,0,13,27,2], @@ -195,9 +208,14 @@ var NAVTREEINDEX22 = "sum_8hpp.html":[6,0,1,0,5,237], "sum_8hpp.html#ab688952cfec9d98f50dee43378a9f27b":[6,0,1,0,5,237,0], "sum_8hpp_source.html":[6,0,1,0,5,237], -"svd_8hpp.html":[6,0,1,0,8,13], -"svd_8hpp.html#acb38ad2613d50422afc539d005159055":[6,0,1,0,8,13,0], -"svd_8hpp_source.html":[6,0,1,0,8,13], +"svd_2svd_8hpp.html":[6,0,1,0,8,0,0], +"svd_2svd_8hpp_source.html":[6,0,1,0,8,0,0], +"svd_8hpp.html":[6,0,1,0,8,15], +"svd_8hpp.html#a305c49baed6667d8d64b9cd13f2c5060":[6,0,1,0,8,15,0], +"svd_8hpp_source.html":[6,0,1,0,8,15], +"svdvals_8hpp.html":[6,0,1,0,8,16], +"svdvals_8hpp.html#a9c3f05864405242a8917530242cdda9c":[6,0,1,0,8,16,0], +"svdvals_8hpp_source.html":[6,0,1,0,8,16], "swap_8hpp.html":[6,0,1,0,5,238], "swap_8hpp.html#a39da0502565b913855379ea1439047e1":[6,0,1,0,5,238,0], "swap_8hpp_source.html":[6,0,1,0,5,238], @@ -231,23 +249,5 @@ var NAVTREEINDEX22 = "timeit_8hpp_source.html":[6,0,1,0,17,10], "to_stl_vector_8hpp.html":[6,0,1,0,5,247], "to_stl_vector_8hpp.html#a1d11575e06af9fcb2a87201fc62e9cba":[6,0,1,0,5,247,0], -"to_stl_vector_8hpp_source.html":[6,0,1,0,5,247], -"tofile_8hpp.html":[6,0,1,0,5,246], -"tofile_8hpp.html#a7dc5b27b93f5a921a39151714fa78d67":[6,0,1,0,5,246,1], -"tofile_8hpp.html#adf3cdf51801e83c58bc58c606781467d":[6,0,1,0,5,246,0], -"tofile_8hpp_source.html":[6,0,1,0,5,246], -"trace_8hpp.html":[6,0,1,0,5,248], -"trace_8hpp.html#a4a75035db8c766b2cececb1f3e4d5b74":[6,0,1,0,5,248,0], -"trace_8hpp_source.html":[6,0,1,0,5,248], -"transpose_8hpp.html":[6,0,1,0,5,249], -"transpose_8hpp.html#af5bc0015bc8f7e29d7eba3c17ec139b4":[6,0,1,0,5,249,0], -"transpose_8hpp_source.html":[6,0,1,0,5,249], -"trapazoidal_8hpp.html":[6,0,1,0,7,3], -"trapazoidal_8hpp.html#acdfbecb87f7780b2961eb4e5d3b3d109":[6,0,1,0,7,3,0], -"trapazoidal_8hpp_source.html":[6,0,1,0,7,3], -"trapz_8hpp.html":[6,0,1,0,5,250], -"trapz_8hpp.html#a4d3e8e18ea6e0a61cfcda1711cce9e78":[6,0,1,0,5,250,1], -"trapz_8hpp.html#ad1b0aafab44c981245443cf5c1988892":[6,0,1,0,5,250,0], -"trapz_8hpp_source.html":[6,0,1,0,5,250], -"tri_8hpp.html":[6,0,1,0,5,251] +"to_stl_vector_8hpp_source.html":[6,0,1,0,5,247] }; diff --git a/docs/doxygen/html/navtreeindex23.js b/docs/doxygen/html/navtreeindex23.js index 61ae1e661..00425ee58 100644 --- a/docs/doxygen/html/navtreeindex23.js +++ b/docs/doxygen/html/navtreeindex23.js @@ -1,5 +1,23 @@ var NAVTREEINDEX23 = { +"tofile_8hpp.html":[6,0,1,0,5,246], +"tofile_8hpp.html#a7dc5b27b93f5a921a39151714fa78d67":[6,0,1,0,5,246,1], +"tofile_8hpp.html#adf3cdf51801e83c58bc58c606781467d":[6,0,1,0,5,246,0], +"tofile_8hpp_source.html":[6,0,1,0,5,246], +"trace_8hpp.html":[6,0,1,0,5,248], +"trace_8hpp.html#a4a75035db8c766b2cececb1f3e4d5b74":[6,0,1,0,5,248,0], +"trace_8hpp_source.html":[6,0,1,0,5,248], +"transpose_8hpp.html":[6,0,1,0,5,249], +"transpose_8hpp.html#af5bc0015bc8f7e29d7eba3c17ec139b4":[6,0,1,0,5,249,0], +"transpose_8hpp_source.html":[6,0,1,0,5,249], +"trapazoidal_8hpp.html":[6,0,1,0,7,3], +"trapazoidal_8hpp.html#acdfbecb87f7780b2961eb4e5d3b3d109":[6,0,1,0,7,3,0], +"trapazoidal_8hpp_source.html":[6,0,1,0,7,3], +"trapz_8hpp.html":[6,0,1,0,5,250], +"trapz_8hpp.html#a4d3e8e18ea6e0a61cfcda1711cce9e78":[6,0,1,0,5,250,1], +"trapz_8hpp.html#ad1b0aafab44c981245443cf5c1988892":[6,0,1,0,5,250,0], +"trapz_8hpp_source.html":[6,0,1,0,5,250], +"tri_8hpp.html":[6,0,1,0,5,251], "tri_8hpp.html#a05c4de5a2c55f32884dec4b1d5634a36":[6,0,1,0,5,251,5], "tri_8hpp.html#a198857bb3bf09efffcc94e6aa3fbed87":[6,0,1,0,5,251,1], "tri_8hpp.html#a4ce8884249c5c1a85464929f09806645":[6,0,1,0,5,251,2], diff --git a/docs/doxygen/html/navtreeindex3.js b/docs/doxygen/html/navtreeindex3.js index 8c323b522..133da3fd9 100644 --- a/docs/doxygen/html/navtreeindex3.js +++ b/docs/doxygen/html/navtreeindex3.js @@ -1,7 +1,5 @@ var NAVTREEINDEX3 = { -"arctan2_8hpp.html#a3d3c4c6b273e6eee45cf6359cf621980":[6,0,1,0,5,18,0], -"arctan2_8hpp.html#abdec674ddb32540775e97e0fca6016aa":[6,0,1,0,5,18,1], "arctan2_8hpp_source.html":[6,0,1,0,5,18], "arctan_8hpp.html":[6,0,1,0,5,17], "arctan_8hpp.html#a0f63f816e660b0a4b3da191c8584a21a":[6,0,1,0,5,17,1], @@ -183,71 +181,73 @@ var NAVTREEINDEX3 = "classnc_1_1_data_cube.html#a00f652afe3e8734f7d0707b12afd6a65":[4,0,0,28,19], "classnc_1_1_data_cube.html#a1ea7b9bd30731c3325545fbcd2678761":[5,0,0,18,0], "classnc_1_1_data_cube.html#a1ea7b9bd30731c3325545fbcd2678761":[4,0,0,28,0], -"classnc_1_1_data_cube.html#a22a15747f5969aa5d600820cfe64ca64":[5,0,0,18,27], "classnc_1_1_data_cube.html#a22a15747f5969aa5d600820cfe64ca64":[4,0,0,28,27], -"classnc_1_1_data_cube.html#a430de05758db67815f957784b298b011":[4,0,0,28,8], +"classnc_1_1_data_cube.html#a22a15747f5969aa5d600820cfe64ca64":[5,0,0,18,27], "classnc_1_1_data_cube.html#a430de05758db67815f957784b298b011":[5,0,0,18,8], +"classnc_1_1_data_cube.html#a430de05758db67815f957784b298b011":[4,0,0,28,8], "classnc_1_1_data_cube.html#a4905482449d637ae9697090255052604":[5,0,0,18,5], "classnc_1_1_data_cube.html#a4905482449d637ae9697090255052604":[4,0,0,28,5], "classnc_1_1_data_cube.html#a4cf7121ba217461367052f0f6245c6be":[5,0,0,18,4], "classnc_1_1_data_cube.html#a4cf7121ba217461367052f0f6245c6be":[4,0,0,28,4], -"classnc_1_1_data_cube.html#a4edf03af4b218d39f4e9c27f68e16124":[5,0,0,18,17], "classnc_1_1_data_cube.html#a4edf03af4b218d39f4e9c27f68e16124":[4,0,0,28,17], +"classnc_1_1_data_cube.html#a4edf03af4b218d39f4e9c27f68e16124":[5,0,0,18,17], "classnc_1_1_data_cube.html#a525e1118c24720f4718571600c0abc63":[5,0,0,18,23], "classnc_1_1_data_cube.html#a525e1118c24720f4718571600c0abc63":[4,0,0,28,23], "classnc_1_1_data_cube.html#a58399f9333a2f3375b914aac44093c00":[4,0,0,28,41], "classnc_1_1_data_cube.html#a58399f9333a2f3375b914aac44093c00":[5,0,0,18,41], "classnc_1_1_data_cube.html#a623df8fc48ba169d221b1c26249e5853":[5,0,0,18,1], "classnc_1_1_data_cube.html#a623df8fc48ba169d221b1c26249e5853":[4,0,0,28,1], -"classnc_1_1_data_cube.html#a640270511679561d4efdcd6ef9f643f2":[5,0,0,18,35], "classnc_1_1_data_cube.html#a640270511679561d4efdcd6ef9f643f2":[4,0,0,28,35], +"classnc_1_1_data_cube.html#a640270511679561d4efdcd6ef9f643f2":[5,0,0,18,35], "classnc_1_1_data_cube.html#a6518d36db671db4053abffff92505c64":[5,0,0,18,21], "classnc_1_1_data_cube.html#a6518d36db671db4053abffff92505c64":[4,0,0,28,21], "classnc_1_1_data_cube.html#a675e1ed0bdb8a2d147c82a38701a7a3f":[5,0,0,18,30], "classnc_1_1_data_cube.html#a675e1ed0bdb8a2d147c82a38701a7a3f":[4,0,0,28,30], -"classnc_1_1_data_cube.html#a719b004665c3a6e7a37ec0a4bdea650e":[4,0,0,28,26], "classnc_1_1_data_cube.html#a719b004665c3a6e7a37ec0a4bdea650e":[5,0,0,18,26], +"classnc_1_1_data_cube.html#a719b004665c3a6e7a37ec0a4bdea650e":[4,0,0,28,26], "classnc_1_1_data_cube.html#a7ac8d05eb4202aefe4e95c2794013ef0":[5,0,0,18,40], "classnc_1_1_data_cube.html#a7ac8d05eb4202aefe4e95c2794013ef0":[4,0,0,28,40], "classnc_1_1_data_cube.html#a7ae08af82b0553d2b294286bdf06703b":[5,0,0,18,3], "classnc_1_1_data_cube.html#a7ae08af82b0553d2b294286bdf06703b":[4,0,0,28,3], -"classnc_1_1_data_cube.html#a8224b613a7c87a16e06ef08d6f90926e":[5,0,0,18,2], "classnc_1_1_data_cube.html#a8224b613a7c87a16e06ef08d6f90926e":[4,0,0,28,2], -"classnc_1_1_data_cube.html#a8bcbe318df56146f36afb67013435a5d":[5,0,0,18,31], +"classnc_1_1_data_cube.html#a8224b613a7c87a16e06ef08d6f90926e":[5,0,0,18,2], "classnc_1_1_data_cube.html#a8bcbe318df56146f36afb67013435a5d":[4,0,0,28,31], -"classnc_1_1_data_cube.html#a8e261e08fd074073771b98dc96726b0f":[4,0,0,28,18], +"classnc_1_1_data_cube.html#a8bcbe318df56146f36afb67013435a5d":[5,0,0,18,31], "classnc_1_1_data_cube.html#a8e261e08fd074073771b98dc96726b0f":[5,0,0,18,18], +"classnc_1_1_data_cube.html#a8e261e08fd074073771b98dc96726b0f":[4,0,0,28,18], "classnc_1_1_data_cube.html#a936a4244ab338e07ae95d96d240cb2ea":[4,0,0,28,34], "classnc_1_1_data_cube.html#a936a4244ab338e07ae95d96d240cb2ea":[5,0,0,18,34], -"classnc_1_1_data_cube.html#a94ce00366ab048c954ade7c4b7455d57":[4,0,0,28,37], "classnc_1_1_data_cube.html#a94ce00366ab048c954ade7c4b7455d57":[5,0,0,18,37], +"classnc_1_1_data_cube.html#a94ce00366ab048c954ade7c4b7455d57":[4,0,0,28,37], "classnc_1_1_data_cube.html#a9715d7b13b39a94be82b3b8945da061a":[4,0,0,28,20], "classnc_1_1_data_cube.html#a9715d7b13b39a94be82b3b8945da061a":[5,0,0,18,20], -"classnc_1_1_data_cube.html#a9a61f3ea3bd771c67a428b3ba6666b95":[4,0,0,28,28], "classnc_1_1_data_cube.html#a9a61f3ea3bd771c67a428b3ba6666b95":[5,0,0,18,28], +"classnc_1_1_data_cube.html#a9a61f3ea3bd771c67a428b3ba6666b95":[4,0,0,28,28], "classnc_1_1_data_cube.html#a9aeac78f9aec9b69b9673c1e56778b1b":[5,0,0,18,13], "classnc_1_1_data_cube.html#a9aeac78f9aec9b69b9673c1e56778b1b":[4,0,0,28,13], -"classnc_1_1_data_cube.html#a9e996aaa4736f19d25a35d470c2480a4":[5,0,0,18,14], "classnc_1_1_data_cube.html#a9e996aaa4736f19d25a35d470c2480a4":[4,0,0,28,14], +"classnc_1_1_data_cube.html#a9e996aaa4736f19d25a35d470c2480a4":[5,0,0,18,14], "classnc_1_1_data_cube.html#aa9c59c8c8fb30f1b09cac2ee292530d1":[4,0,0,28,32], "classnc_1_1_data_cube.html#aa9c59c8c8fb30f1b09cac2ee292530d1":[5,0,0,18,32], "classnc_1_1_data_cube.html#ab477faba833493fc420376cdab9b66a3":[4,0,0,28,6], "classnc_1_1_data_cube.html#ab477faba833493fc420376cdab9b66a3":[5,0,0,18,6], -"classnc_1_1_data_cube.html#ab51f2b2c882441bc2438fb664ee46af4":[4,0,0,28,16], "classnc_1_1_data_cube.html#ab51f2b2c882441bc2438fb664ee46af4":[5,0,0,18,16], +"classnc_1_1_data_cube.html#ab51f2b2c882441bc2438fb664ee46af4":[4,0,0,28,16], "classnc_1_1_data_cube.html#abbaa9ebba302183cae3563c9eb371ee3":[4,0,0,28,11], "classnc_1_1_data_cube.html#abbaa9ebba302183cae3563c9eb371ee3":[5,0,0,18,11], -"classnc_1_1_data_cube.html#ac569e0c62a9e5cbf21228b85128a53a5":[4,0,0,28,15], "classnc_1_1_data_cube.html#ac569e0c62a9e5cbf21228b85128a53a5":[5,0,0,18,15], -"classnc_1_1_data_cube.html#aca3c0041f121ed92d47d1f2873f713e4":[5,0,0,18,10], +"classnc_1_1_data_cube.html#ac569e0c62a9e5cbf21228b85128a53a5":[4,0,0,28,15], "classnc_1_1_data_cube.html#aca3c0041f121ed92d47d1f2873f713e4":[4,0,0,28,10], +"classnc_1_1_data_cube.html#aca3c0041f121ed92d47d1f2873f713e4":[5,0,0,18,10], "classnc_1_1_data_cube.html#acc46d9e618309bbc5cfd5af56dd9e977":[4,0,0,28,12], "classnc_1_1_data_cube.html#acc46d9e618309bbc5cfd5af56dd9e977":[5,0,0,18,12], -"classnc_1_1_data_cube.html#ad71f0c98336e4d74915bdd77dc951b61":[4,0,0,28,33], "classnc_1_1_data_cube.html#ad71f0c98336e4d74915bdd77dc951b61":[5,0,0,18,33], -"classnc_1_1_data_cube.html#ad998863146aa7d9a7590a5a5adb1f5a9":[4,0,0,28,7], +"classnc_1_1_data_cube.html#ad71f0c98336e4d74915bdd77dc951b61":[4,0,0,28,33], "classnc_1_1_data_cube.html#ad998863146aa7d9a7590a5a5adb1f5a9":[5,0,0,18,7], -"classnc_1_1_data_cube.html#adee7aa24a04d84f83f4c76ef8dcec974":[4,0,0,28,9], +"classnc_1_1_data_cube.html#ad998863146aa7d9a7590a5a5adb1f5a9":[4,0,0,28,7], "classnc_1_1_data_cube.html#adee7aa24a04d84f83f4c76ef8dcec974":[5,0,0,18,9], -"classnc_1_1_data_cube.html#ae1a2b07f302a0eaf5d88b53ae2b1032d":[4,0,0,28,29] +"classnc_1_1_data_cube.html#adee7aa24a04d84f83f4c76ef8dcec974":[4,0,0,28,9], +"classnc_1_1_data_cube.html#ae1a2b07f302a0eaf5d88b53ae2b1032d":[5,0,0,18,29], +"classnc_1_1_data_cube.html#ae1a2b07f302a0eaf5d88b53ae2b1032d":[4,0,0,28,29], +"classnc_1_1_data_cube.html#ae1bad1dd6ef3179273aaac7848ff87e0":[4,0,0,28,25] }; diff --git a/docs/doxygen/html/navtreeindex4.js b/docs/doxygen/html/navtreeindex4.js index 14ac99e37..8f04e819e 100644 --- a/docs/doxygen/html/navtreeindex4.js +++ b/docs/doxygen/html/navtreeindex4.js @@ -1,16 +1,14 @@ var NAVTREEINDEX4 = { -"classnc_1_1_data_cube.html#ae1a2b07f302a0eaf5d88b53ae2b1032d":[5,0,0,18,29], -"classnc_1_1_data_cube.html#ae1bad1dd6ef3179273aaac7848ff87e0":[4,0,0,28,25], "classnc_1_1_data_cube.html#ae1bad1dd6ef3179273aaac7848ff87e0":[5,0,0,18,25], -"classnc_1_1_data_cube.html#ae22f81969143c93624edfe5464cb0b76":[5,0,0,18,22], "classnc_1_1_data_cube.html#ae22f81969143c93624edfe5464cb0b76":[4,0,0,28,22], -"classnc_1_1_data_cube.html#aea79beb771306862ff53af7fbea07585":[5,0,0,18,24], +"classnc_1_1_data_cube.html#ae22f81969143c93624edfe5464cb0b76":[5,0,0,18,22], "classnc_1_1_data_cube.html#aea79beb771306862ff53af7fbea07585":[4,0,0,28,24], -"classnc_1_1_data_cube.html#af56f4829146de68936ddec6391d0c46d":[4,0,0,28,39], +"classnc_1_1_data_cube.html#aea79beb771306862ff53af7fbea07585":[5,0,0,18,24], "classnc_1_1_data_cube.html#af56f4829146de68936ddec6391d0c46d":[5,0,0,18,39], -"classnc_1_1_data_cube.html#af5e50bad9937b89f6e6fc5eca672239d":[5,0,0,18,36], +"classnc_1_1_data_cube.html#af56f4829146de68936ddec6391d0c46d":[4,0,0,28,39], "classnc_1_1_data_cube.html#af5e50bad9937b89f6e6fc5eca672239d":[4,0,0,28,36], +"classnc_1_1_data_cube.html#af5e50bad9937b89f6e6fc5eca672239d":[5,0,0,18,36], "classnc_1_1_data_cube.html#afbf49c559f5c1fa6d1c4376c3b12d1ea":[4,0,0,28,38], "classnc_1_1_data_cube.html#afbf49c559f5c1fa6d1c4376c3b12d1ea":[5,0,0,18,38], "classnc_1_1_date_time.html":[4,0,0,29], @@ -21,90 +19,90 @@ var NAVTREEINDEX4 = "classnc_1_1_date_time.html#a0f61adb6837dba43ac57de61db661609":[4,0,0,29,13], "classnc_1_1_date_time.html#a10f4627b6ff29768c6344fbe8ba3d97e":[4,0,0,29,23], "classnc_1_1_date_time.html#a10f4627b6ff29768c6344fbe8ba3d97e":[5,0,0,19,23], -"classnc_1_1_date_time.html#a143437e94c7b720e6c089963e2af971b":[5,0,0,19,6], "classnc_1_1_date_time.html#a143437e94c7b720e6c089963e2af971b":[4,0,0,29,6], -"classnc_1_1_date_time.html#a324374f987aba2acaf441c27dc1673c1":[4,0,0,29,10], +"classnc_1_1_date_time.html#a143437e94c7b720e6c089963e2af971b":[5,0,0,19,6], "classnc_1_1_date_time.html#a324374f987aba2acaf441c27dc1673c1":[5,0,0,19,10], -"classnc_1_1_date_time.html#a3cfac781d647fad2d93edb672c8e9c97":[5,0,0,19,0], +"classnc_1_1_date_time.html#a324374f987aba2acaf441c27dc1673c1":[4,0,0,29,10], "classnc_1_1_date_time.html#a3cfac781d647fad2d93edb672c8e9c97":[4,0,0,29,0], +"classnc_1_1_date_time.html#a3cfac781d647fad2d93edb672c8e9c97":[5,0,0,19,0], "classnc_1_1_date_time.html#a4e91e1d749d40be47ef9ba4611a62fcc":[4,0,0,29,20], "classnc_1_1_date_time.html#a4e91e1d749d40be47ef9ba4611a62fcc":[5,0,0,19,20], -"classnc_1_1_date_time.html#a7dfddecaf0e87773635739e4dcb45004":[4,0,0,29,24], "classnc_1_1_date_time.html#a7dfddecaf0e87773635739e4dcb45004":[5,0,0,19,24], +"classnc_1_1_date_time.html#a7dfddecaf0e87773635739e4dcb45004":[4,0,0,29,24], "classnc_1_1_date_time.html#a823a0e8df2552c1d2b7ee0147f7666da":[4,0,0,29,3], "classnc_1_1_date_time.html#a823a0e8df2552c1d2b7ee0147f7666da":[5,0,0,19,3], -"classnc_1_1_date_time.html#a82c1a1c94b865b537c0ba320f887fd7f":[4,0,0,29,21], "classnc_1_1_date_time.html#a82c1a1c94b865b537c0ba320f887fd7f":[5,0,0,19,21], +"classnc_1_1_date_time.html#a82c1a1c94b865b537c0ba320f887fd7f":[4,0,0,29,21], "classnc_1_1_date_time.html#a870d115af59856e0da866c7e75677408":[4,0,0,29,16], "classnc_1_1_date_time.html#a870d115af59856e0da866c7e75677408":[5,0,0,19,16], -"classnc_1_1_date_time.html#a954fcec5a1a356e7284efb8f013b5ad8":[5,0,0,19,22], "classnc_1_1_date_time.html#a954fcec5a1a356e7284efb8f013b5ad8":[4,0,0,29,22], -"classnc_1_1_date_time.html#a955c285aea7fd971fd5b677d1664386f":[4,0,0,29,7], +"classnc_1_1_date_time.html#a954fcec5a1a356e7284efb8f013b5ad8":[5,0,0,19,22], "classnc_1_1_date_time.html#a955c285aea7fd971fd5b677d1664386f":[5,0,0,19,7], +"classnc_1_1_date_time.html#a955c285aea7fd971fd5b677d1664386f":[4,0,0,29,7], "classnc_1_1_date_time.html#aafbddb5d1b88743256c0cd60c024afd0":[5,0,0,19,2], "classnc_1_1_date_time.html#aafbddb5d1b88743256c0cd60c024afd0":[4,0,0,29,2], "classnc_1_1_date_time.html#aafd489e7df7f07b28d4d08e429fdd314":[4,0,0,29,11], "classnc_1_1_date_time.html#aafd489e7df7f07b28d4d08e429fdd314":[5,0,0,19,11], -"classnc_1_1_date_time.html#ab0128875a673f8733a43a60ef2d940b2":[5,0,0,19,5], "classnc_1_1_date_time.html#ab0128875a673f8733a43a60ef2d940b2":[4,0,0,29,5], -"classnc_1_1_date_time.html#ab92ccce69ff3961af858914d5f75ad5d":[4,0,0,29,15], +"classnc_1_1_date_time.html#ab0128875a673f8733a43a60ef2d940b2":[5,0,0,19,5], "classnc_1_1_date_time.html#ab92ccce69ff3961af858914d5f75ad5d":[5,0,0,19,15], +"classnc_1_1_date_time.html#ab92ccce69ff3961af858914d5f75ad5d":[4,0,0,29,15], "classnc_1_1_date_time.html#ac3414e4f92f84c20d072566652a2721e":[5,0,0,19,18], "classnc_1_1_date_time.html#ac3414e4f92f84c20d072566652a2721e":[4,0,0,29,18], "classnc_1_1_date_time.html#ac751dc623c87ab1178628fcff006d098":[4,0,0,29,19], "classnc_1_1_date_time.html#ac751dc623c87ab1178628fcff006d098":[5,0,0,19,19], -"classnc_1_1_date_time.html#aca14703aef04d1aad8e159418f4026fd":[5,0,0,19,26], "classnc_1_1_date_time.html#aca14703aef04d1aad8e159418f4026fd":[4,0,0,29,26], +"classnc_1_1_date_time.html#aca14703aef04d1aad8e159418f4026fd":[5,0,0,19,26], "classnc_1_1_date_time.html#acab03035f85302323d4cae993c3d9ddc":[5,0,0,19,25], "classnc_1_1_date_time.html#acab03035f85302323d4cae993c3d9ddc":[4,0,0,29,25], -"classnc_1_1_date_time.html#adb8f3532eae7bd10821beb6df8764735":[4,0,0,29,14], "classnc_1_1_date_time.html#adb8f3532eae7bd10821beb6df8764735":[5,0,0,19,14], +"classnc_1_1_date_time.html#adb8f3532eae7bd10821beb6df8764735":[4,0,0,29,14], "classnc_1_1_date_time.html#ae38ad1e09d1d2f46e53391adb894c0d4":[4,0,0,29,8], "classnc_1_1_date_time.html#ae38ad1e09d1d2f46e53391adb894c0d4":[5,0,0,19,8], "classnc_1_1_date_time.html#af1e6d75986a6f988ef3433f5d934daed":[5,0,0,19,4], "classnc_1_1_date_time.html#af1e6d75986a6f988ef3433f5d934daed":[4,0,0,29,4], -"classnc_1_1_date_time.html#af2b2050c019fb011b9c7fd47305c52b8":[5,0,0,19,9], "classnc_1_1_date_time.html#af2b2050c019fb011b9c7fd47305c52b8":[4,0,0,29,9], +"classnc_1_1_date_time.html#af2b2050c019fb011b9c7fd47305c52b8":[5,0,0,19,9], "classnc_1_1_date_time.html#af4a10119b2c4107e2251693041d7577f":[5,0,0,19,1], "classnc_1_1_date_time.html#af4a10119b2c4107e2251693041d7577f":[4,0,0,29,1], -"classnc_1_1_date_time.html#afc8f15ff0271f51b4adaba5478fd0737":[4,0,0,29,17], "classnc_1_1_date_time.html#afc8f15ff0271f51b4adaba5478fd0737":[5,0,0,19,17], +"classnc_1_1_date_time.html#afc8f15ff0271f51b4adaba5478fd0737":[4,0,0,29,17], "classnc_1_1_dtype_info.html":[4,0,0,30], "classnc_1_1_dtype_info.html":[5,0,0,20], -"classnc_1_1_dtype_info.html#a039ecfb9a5bd9fe0cb751a59f28055d1":[5,0,0,20,3], "classnc_1_1_dtype_info.html#a039ecfb9a5bd9fe0cb751a59f28055d1":[4,0,0,30,3], -"classnc_1_1_dtype_info.html#a10b60bd27123b5c724e2a52526fe8cfe":[5,0,0,20,2], +"classnc_1_1_dtype_info.html#a039ecfb9a5bd9fe0cb751a59f28055d1":[5,0,0,20,3], "classnc_1_1_dtype_info.html#a10b60bd27123b5c724e2a52526fe8cfe":[4,0,0,30,2], -"classnc_1_1_dtype_info.html#a2a3dc0ba2812411660219f61189d8aca":[5,0,0,20,4], +"classnc_1_1_dtype_info.html#a10b60bd27123b5c724e2a52526fe8cfe":[5,0,0,20,2], "classnc_1_1_dtype_info.html#a2a3dc0ba2812411660219f61189d8aca":[4,0,0,30,4], -"classnc_1_1_dtype_info.html#a3f6aa0cc80e59dc331bc0e8dfe2f20bb":[4,0,0,30,0], +"classnc_1_1_dtype_info.html#a2a3dc0ba2812411660219f61189d8aca":[5,0,0,20,4], "classnc_1_1_dtype_info.html#a3f6aa0cc80e59dc331bc0e8dfe2f20bb":[5,0,0,20,0], -"classnc_1_1_dtype_info.html#a845cc6986a3912805ab68960bc2b2318":[4,0,0,30,1], +"classnc_1_1_dtype_info.html#a3f6aa0cc80e59dc331bc0e8dfe2f20bb":[4,0,0,30,0], "classnc_1_1_dtype_info.html#a845cc6986a3912805ab68960bc2b2318":[5,0,0,20,1], -"classnc_1_1_dtype_info.html#ab566f68bc6b82c06b5a3df887f87ab74":[5,0,0,20,5], +"classnc_1_1_dtype_info.html#a845cc6986a3912805ab68960bc2b2318":[4,0,0,30,1], "classnc_1_1_dtype_info.html#ab566f68bc6b82c06b5a3df887f87ab74":[4,0,0,30,5], +"classnc_1_1_dtype_info.html#ab566f68bc6b82c06b5a3df887f87ab74":[5,0,0,20,5], "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html":[5,0,0,21], "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html":[4,0,0,31], -"classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a838b7501d7ed92a9fc268e409d89059a":[5,0,0,21,4], "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a838b7501d7ed92a9fc268e409d89059a":[4,0,0,31,4], -"classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a86a90969469c1ddf682a9fd5c5ee6817":[5,0,0,21,5], +"classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a838b7501d7ed92a9fc268e409d89059a":[5,0,0,21,4], "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a86a90969469c1ddf682a9fd5c5ee6817":[4,0,0,31,5], +"classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a86a90969469c1ddf682a9fd5c5ee6817":[5,0,0,21,5], "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac055638657a1459bc6a7c9d94d5c96a4":[4,0,0,31,2], "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac055638657a1459bc6a7c9d94d5c96a4":[5,0,0,21,2], -"classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac117779d9768d1ba6093ef25b0fc294c":[4,0,0,31,1], "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac117779d9768d1ba6093ef25b0fc294c":[5,0,0,21,1], +"classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac117779d9768d1ba6093ef25b0fc294c":[4,0,0,31,1], "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac58a829905d11a1a7fca32427eab41d3":[4,0,0,31,3], "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac58a829905d11a1a7fca32427eab41d3":[5,0,0,21,3], "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ae35570f524474adaa2315bead3f9be9e":[4,0,0,31,0], "classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ae35570f524474adaa2315bead3f9be9e":[5,0,0,21,0], -"classnc_1_1_nd_array.html":[4,0,0,38], "classnc_1_1_nd_array.html":[5,0,0,28], -"classnc_1_1_nd_array.html#a006dd455d7063cdc800bb6774e651519":[5,0,0,28,35], +"classnc_1_1_nd_array.html":[4,0,0,38], "classnc_1_1_nd_array.html#a006dd455d7063cdc800bb6774e651519":[4,0,0,38,35], -"classnc_1_1_nd_array.html#a012f1203a072caeba4221aaa3c044186":[4,0,0,38,197], +"classnc_1_1_nd_array.html#a006dd455d7063cdc800bb6774e651519":[5,0,0,28,35], "classnc_1_1_nd_array.html#a012f1203a072caeba4221aaa3c044186":[5,0,0,28,197], -"classnc_1_1_nd_array.html#a012f5a3e8cb8414a1b87c9d19e81fd9c":[5,0,0,28,110], +"classnc_1_1_nd_array.html#a012f1203a072caeba4221aaa3c044186":[4,0,0,38,197], "classnc_1_1_nd_array.html#a012f5a3e8cb8414a1b87c9d19e81fd9c":[4,0,0,38,110], +"classnc_1_1_nd_array.html#a012f5a3e8cb8414a1b87c9d19e81fd9c":[5,0,0,28,110], "classnc_1_1_nd_array.html#a01777607b6958af633cc543f9c3ab85f":[4,0,0,38,233], "classnc_1_1_nd_array.html#a01777607b6958af633cc543f9c3ab85f":[5,0,0,28,233], "classnc_1_1_nd_array.html#a039a585820968d4980e9c3e277e2043c":[4,0,0,38,162], @@ -113,46 +111,46 @@ var NAVTREEINDEX4 = "classnc_1_1_nd_array.html#a03c2c2af1c554cc0619dd431c6f7da71":[4,0,0,38,133], "classnc_1_1_nd_array.html#a055875abbe80163ca91328c0fa8ffbfa":[4,0,0,38,224], "classnc_1_1_nd_array.html#a055875abbe80163ca91328c0fa8ffbfa":[5,0,0,28,224], -"classnc_1_1_nd_array.html#a06b5c7ba13ae9f8750bca6d5f3803c73":[4,0,0,38,194], "classnc_1_1_nd_array.html#a06b5c7ba13ae9f8750bca6d5f3803c73":[5,0,0,28,194], +"classnc_1_1_nd_array.html#a06b5c7ba13ae9f8750bca6d5f3803c73":[4,0,0,38,194], "classnc_1_1_nd_array.html#a07ff042f99ae7f0567609d2329fa96cb":[4,0,0,38,60], "classnc_1_1_nd_array.html#a07ff042f99ae7f0567609d2329fa96cb":[5,0,0,28,60], "classnc_1_1_nd_array.html#a08298426db9058a1f8decc725eba3c15":[5,0,0,28,92], "classnc_1_1_nd_array.html#a08298426db9058a1f8decc725eba3c15":[4,0,0,38,92], -"classnc_1_1_nd_array.html#a0940e2a76abd7d251e37b48d9942cc90":[5,0,0,28,172], "classnc_1_1_nd_array.html#a0940e2a76abd7d251e37b48d9942cc90":[4,0,0,38,172], +"classnc_1_1_nd_array.html#a0940e2a76abd7d251e37b48d9942cc90":[5,0,0,28,172], "classnc_1_1_nd_array.html#a0974831781c6d450358f23aa79622141":[4,0,0,38,218], "classnc_1_1_nd_array.html#a0974831781c6d450358f23aa79622141":[5,0,0,28,218], -"classnc_1_1_nd_array.html#a0a95f3798fb3314cd2f93da65d9d3901":[5,0,0,28,176], "classnc_1_1_nd_array.html#a0a95f3798fb3314cd2f93da65d9d3901":[4,0,0,38,176], +"classnc_1_1_nd_array.html#a0a95f3798fb3314cd2f93da65d9d3901":[5,0,0,28,176], "classnc_1_1_nd_array.html#a0b05b0b1831bd96b1057f2788795f93f":[5,0,0,28,237], "classnc_1_1_nd_array.html#a0b05b0b1831bd96b1057f2788795f93f":[4,0,0,38,237], -"classnc_1_1_nd_array.html#a0bd50893ed0ae1893cc28350a41bf80d":[4,0,0,38,143], "classnc_1_1_nd_array.html#a0bd50893ed0ae1893cc28350a41bf80d":[5,0,0,28,143], +"classnc_1_1_nd_array.html#a0bd50893ed0ae1893cc28350a41bf80d":[4,0,0,38,143], "classnc_1_1_nd_array.html#a0bee49339bdc4d7edbeb5efa73133cc3":[5,0,0,28,74], "classnc_1_1_nd_array.html#a0bee49339bdc4d7edbeb5efa73133cc3":[4,0,0,38,74], -"classnc_1_1_nd_array.html#a0c33e11f5531ec5d58cfad4ccc81169e":[5,0,0,28,54], "classnc_1_1_nd_array.html#a0c33e11f5531ec5d58cfad4ccc81169e":[4,0,0,38,54], +"classnc_1_1_nd_array.html#a0c33e11f5531ec5d58cfad4ccc81169e":[5,0,0,28,54], "classnc_1_1_nd_array.html#a1252a696593c510d506c1bca8bd65c51":[4,0,0,38,77], "classnc_1_1_nd_array.html#a1252a696593c510d506c1bca8bd65c51":[5,0,0,28,77], "classnc_1_1_nd_array.html#a1307cf472f722baa8850200dcb7a3a89":[5,0,0,28,2], "classnc_1_1_nd_array.html#a1307cf472f722baa8850200dcb7a3a89":[4,0,0,38,2], -"classnc_1_1_nd_array.html#a141b964d80ae4a07d2844dc62067b272":[4,0,0,38,93], "classnc_1_1_nd_array.html#a141b964d80ae4a07d2844dc62067b272":[5,0,0,28,93], -"classnc_1_1_nd_array.html#a14e4541ae1e02ee5acdc01e18337d546":[5,0,0,28,106], +"classnc_1_1_nd_array.html#a141b964d80ae4a07d2844dc62067b272":[4,0,0,38,93], "classnc_1_1_nd_array.html#a14e4541ae1e02ee5acdc01e18337d546":[4,0,0,38,106], -"classnc_1_1_nd_array.html#a153d3032d72c24d233407a351d0f8174":[5,0,0,28,114], +"classnc_1_1_nd_array.html#a14e4541ae1e02ee5acdc01e18337d546":[5,0,0,28,106], "classnc_1_1_nd_array.html#a153d3032d72c24d233407a351d0f8174":[4,0,0,38,114], -"classnc_1_1_nd_array.html#a15f4ed211166972e56b463ae1a2bcd54":[5,0,0,28,229], +"classnc_1_1_nd_array.html#a153d3032d72c24d233407a351d0f8174":[5,0,0,28,114], "classnc_1_1_nd_array.html#a15f4ed211166972e56b463ae1a2bcd54":[4,0,0,38,229], -"classnc_1_1_nd_array.html#a1877502ba79a59c3a9b144e6111def1a":[4,0,0,38,23], +"classnc_1_1_nd_array.html#a15f4ed211166972e56b463ae1a2bcd54":[5,0,0,28,229], "classnc_1_1_nd_array.html#a1877502ba79a59c3a9b144e6111def1a":[5,0,0,28,23], -"classnc_1_1_nd_array.html#a1bf1dfbc240f38f6f152a25503feeff9":[5,0,0,28,61], +"classnc_1_1_nd_array.html#a1877502ba79a59c3a9b144e6111def1a":[4,0,0,38,23], "classnc_1_1_nd_array.html#a1bf1dfbc240f38f6f152a25503feeff9":[4,0,0,38,61], +"classnc_1_1_nd_array.html#a1bf1dfbc240f38f6f152a25503feeff9":[5,0,0,28,61], "classnc_1_1_nd_array.html#a1c90866928ee9d3d9a5561bb383197b1":[4,0,0,38,173], "classnc_1_1_nd_array.html#a1c90866928ee9d3d9a5561bb383197b1":[5,0,0,28,173], -"classnc_1_1_nd_array.html#a1df393d5d8e2785a0e3425cdea642764":[4,0,0,38,209], "classnc_1_1_nd_array.html#a1df393d5d8e2785a0e3425cdea642764":[5,0,0,28,209], +"classnc_1_1_nd_array.html#a1df393d5d8e2785a0e3425cdea642764":[4,0,0,38,209], "classnc_1_1_nd_array.html#a1f139500ec2026b849d7325357410b62":[4,0,0,38,64], "classnc_1_1_nd_array.html#a1f139500ec2026b849d7325357410b62":[5,0,0,28,64], "classnc_1_1_nd_array.html#a20fb268d9bd6c25dd70b6772f5ff5b89":[4,0,0,38,67], @@ -161,93 +159,95 @@ var NAVTREEINDEX4 = "classnc_1_1_nd_array.html#a229701da7e9b386f5a58e5f1dc00bb73":[4,0,0,38,115], "classnc_1_1_nd_array.html#a248adf6fa7512969bb64421de319542c":[4,0,0,38,147], "classnc_1_1_nd_array.html#a248adf6fa7512969bb64421de319542c":[5,0,0,28,147], -"classnc_1_1_nd_array.html#a25390a2e453495e50219103d389a62d1":[5,0,0,28,232], "classnc_1_1_nd_array.html#a25390a2e453495e50219103d389a62d1":[4,0,0,38,232], +"classnc_1_1_nd_array.html#a25390a2e453495e50219103d389a62d1":[5,0,0,28,232], "classnc_1_1_nd_array.html#a25c7145679e41227023ad6de4ab5cd18":[5,0,0,28,76], "classnc_1_1_nd_array.html#a25c7145679e41227023ad6de4ab5cd18":[4,0,0,38,76], -"classnc_1_1_nd_array.html#a25ecd7b9dfefc49902f51422d1f9c492":[5,0,0,28,24], "classnc_1_1_nd_array.html#a25ecd7b9dfefc49902f51422d1f9c492":[4,0,0,38,24], +"classnc_1_1_nd_array.html#a25ecd7b9dfefc49902f51422d1f9c492":[5,0,0,28,24], "classnc_1_1_nd_array.html#a26244901d510466e5dc8fde1c6d74346":[5,0,0,28,30], "classnc_1_1_nd_array.html#a26244901d510466e5dc8fde1c6d74346":[4,0,0,38,30], -"classnc_1_1_nd_array.html#a278bd507c3ebd9f1d9e30ca9d273a820":[4,0,0,38,214], "classnc_1_1_nd_array.html#a278bd507c3ebd9f1d9e30ca9d273a820":[5,0,0,28,214], -"classnc_1_1_nd_array.html#a288e6b26205492751717d3fb8854ca30":[5,0,0,28,11], +"classnc_1_1_nd_array.html#a278bd507c3ebd9f1d9e30ca9d273a820":[4,0,0,38,214], "classnc_1_1_nd_array.html#a288e6b26205492751717d3fb8854ca30":[4,0,0,38,11], -"classnc_1_1_nd_array.html#a29c62da7ad489f4fc0bc706800820807":[4,0,0,38,236], +"classnc_1_1_nd_array.html#a288e6b26205492751717d3fb8854ca30":[5,0,0,28,11], "classnc_1_1_nd_array.html#a29c62da7ad489f4fc0bc706800820807":[5,0,0,28,236], -"classnc_1_1_nd_array.html#a2aa9a0589da3c0b19b1b413e71f65667":[4,0,0,38,195], +"classnc_1_1_nd_array.html#a29c62da7ad489f4fc0bc706800820807":[4,0,0,38,236], "classnc_1_1_nd_array.html#a2aa9a0589da3c0b19b1b413e71f65667":[5,0,0,28,195], +"classnc_1_1_nd_array.html#a2aa9a0589da3c0b19b1b413e71f65667":[4,0,0,38,195], "classnc_1_1_nd_array.html#a2b9054c892f683e7a59d4715827d31dd":[4,0,0,38,26], "classnc_1_1_nd_array.html#a2b9054c892f683e7a59d4715827d31dd":[5,0,0,28,26], -"classnc_1_1_nd_array.html#a2c9a1479a94c2293ee7cd7637d191e17":[5,0,0,28,45], "classnc_1_1_nd_array.html#a2c9a1479a94c2293ee7cd7637d191e17":[4,0,0,38,45], +"classnc_1_1_nd_array.html#a2c9a1479a94c2293ee7cd7637d191e17":[5,0,0,28,45], "classnc_1_1_nd_array.html#a2d5976e4cd61862c74dce30c94f8fb87":[4,0,0,38,201], "classnc_1_1_nd_array.html#a2d5976e4cd61862c74dce30c94f8fb87":[5,0,0,28,201], "classnc_1_1_nd_array.html#a2e11dbb477d7f375c2c722a8033e40fd":[5,0,0,28,221], "classnc_1_1_nd_array.html#a2e11dbb477d7f375c2c722a8033e40fd":[4,0,0,38,221], "classnc_1_1_nd_array.html#a2e9001eb3a7fb5b44f6400b3cc3b3222":[4,0,0,38,5], "classnc_1_1_nd_array.html#a2e9001eb3a7fb5b44f6400b3cc3b3222":[5,0,0,28,5], -"classnc_1_1_nd_array.html#a302be17d815b1a4e353e6a2aade581a5":[5,0,0,28,131], "classnc_1_1_nd_array.html#a302be17d815b1a4e353e6a2aade581a5":[4,0,0,38,131], -"classnc_1_1_nd_array.html#a33ce0c581a22e809cfc5a79a534bf798":[4,0,0,38,10], +"classnc_1_1_nd_array.html#a302be17d815b1a4e353e6a2aade581a5":[5,0,0,28,131], "classnc_1_1_nd_array.html#a33ce0c581a22e809cfc5a79a534bf798":[5,0,0,28,10], +"classnc_1_1_nd_array.html#a33ce0c581a22e809cfc5a79a534bf798":[4,0,0,38,10], "classnc_1_1_nd_array.html#a344f12e052eeb49cc87e361127386a64":[4,0,0,38,128], "classnc_1_1_nd_array.html#a344f12e052eeb49cc87e361127386a64":[5,0,0,28,128], -"classnc_1_1_nd_array.html#a349b83beffbfb0a631799f921f13f7ad":[4,0,0,38,117], "classnc_1_1_nd_array.html#a349b83beffbfb0a631799f921f13f7ad":[5,0,0,28,117], -"classnc_1_1_nd_array.html#a34aa597b3fac40690041518dc3132ccc":[5,0,0,28,111], +"classnc_1_1_nd_array.html#a349b83beffbfb0a631799f921f13f7ad":[4,0,0,38,117], "classnc_1_1_nd_array.html#a34aa597b3fac40690041518dc3132ccc":[4,0,0,38,111], +"classnc_1_1_nd_array.html#a34aa597b3fac40690041518dc3132ccc":[5,0,0,28,111], "classnc_1_1_nd_array.html#a3533a4192c58304b6be7035098d8e263":[4,0,0,38,231], "classnc_1_1_nd_array.html#a3533a4192c58304b6be7035098d8e263":[5,0,0,28,231], "classnc_1_1_nd_array.html#a35883ec844477b9bca2597939dd99c2a":[5,0,0,28,97], "classnc_1_1_nd_array.html#a35883ec844477b9bca2597939dd99c2a":[4,0,0,38,97], -"classnc_1_1_nd_array.html#a35994576cdee7c305c6bd37742ce0f25":[4,0,0,38,230], "classnc_1_1_nd_array.html#a35994576cdee7c305c6bd37742ce0f25":[5,0,0,28,230], -"classnc_1_1_nd_array.html#a35b66f060b1ed99a6fb5247581fcb8fc":[4,0,0,38,100], +"classnc_1_1_nd_array.html#a35994576cdee7c305c6bd37742ce0f25":[4,0,0,38,230], "classnc_1_1_nd_array.html#a35b66f060b1ed99a6fb5247581fcb8fc":[5,0,0,28,100], +"classnc_1_1_nd_array.html#a35b66f060b1ed99a6fb5247581fcb8fc":[4,0,0,38,100], "classnc_1_1_nd_array.html#a3728f39904cebe707a571a2b0451b38d":[5,0,0,28,141], "classnc_1_1_nd_array.html#a3728f39904cebe707a571a2b0451b38d":[4,0,0,38,141], "classnc_1_1_nd_array.html#a3730d4ac599c06e0e25ac7838f53240b":[5,0,0,28,85], "classnc_1_1_nd_array.html#a3730d4ac599c06e0e25ac7838f53240b":[4,0,0,38,85], -"classnc_1_1_nd_array.html#a379e1e1ed2a61de6aa44226679620d47":[4,0,0,38,1], "classnc_1_1_nd_array.html#a379e1e1ed2a61de6aa44226679620d47":[5,0,0,28,1], +"classnc_1_1_nd_array.html#a379e1e1ed2a61de6aa44226679620d47":[4,0,0,38,1], "classnc_1_1_nd_array.html#a39772afc56141a60587fa95691781bb1":[5,0,0,28,134], "classnc_1_1_nd_array.html#a39772afc56141a60587fa95691781bb1":[4,0,0,38,134], "classnc_1_1_nd_array.html#a39f47ec09f1d8c6af44ad9c44951f94a":[4,0,0,38,62], "classnc_1_1_nd_array.html#a39f47ec09f1d8c6af44ad9c44951f94a":[5,0,0,28,62], -"classnc_1_1_nd_array.html#a3ca0bf1515541994f2a55fc797706a3d":[5,0,0,28,57], "classnc_1_1_nd_array.html#a3ca0bf1515541994f2a55fc797706a3d":[4,0,0,38,57], -"classnc_1_1_nd_array.html#a3d025e3d5699b5871b1be88a79fe543f":[4,0,0,38,139], +"classnc_1_1_nd_array.html#a3ca0bf1515541994f2a55fc797706a3d":[5,0,0,28,57], "classnc_1_1_nd_array.html#a3d025e3d5699b5871b1be88a79fe543f":[5,0,0,28,139], +"classnc_1_1_nd_array.html#a3d025e3d5699b5871b1be88a79fe543f":[4,0,0,38,139], "classnc_1_1_nd_array.html#a3df9d88c710b83f211f67dd4511b4f49":[5,0,0,28,107], "classnc_1_1_nd_array.html#a3df9d88c710b83f211f67dd4511b4f49":[4,0,0,38,107], -"classnc_1_1_nd_array.html#a3e5261e1be6357a2c608f5e1d97b35f9":[4,0,0,38,127], "classnc_1_1_nd_array.html#a3e5261e1be6357a2c608f5e1d97b35f9":[5,0,0,28,127], -"classnc_1_1_nd_array.html#a41f363682d797ed0ed236cf91bd644f1":[5,0,0,28,84], +"classnc_1_1_nd_array.html#a3e5261e1be6357a2c608f5e1d97b35f9":[4,0,0,38,127], "classnc_1_1_nd_array.html#a41f363682d797ed0ed236cf91bd644f1":[4,0,0,38,84], -"classnc_1_1_nd_array.html#a41f4b98560b66a088fe0ad2a2722f808":[5,0,0,28,28], +"classnc_1_1_nd_array.html#a41f363682d797ed0ed236cf91bd644f1":[5,0,0,28,84], "classnc_1_1_nd_array.html#a41f4b98560b66a088fe0ad2a2722f808":[4,0,0,38,28], -"classnc_1_1_nd_array.html#a42b713a59eac4e9df2ea3b2e584a80f1":[5,0,0,28,124], +"classnc_1_1_nd_array.html#a41f4b98560b66a088fe0ad2a2722f808":[5,0,0,28,28], "classnc_1_1_nd_array.html#a42b713a59eac4e9df2ea3b2e584a80f1":[4,0,0,38,124], -"classnc_1_1_nd_array.html#a434f10a7956f425882fbbbc90038e4cb":[5,0,0,28,203], +"classnc_1_1_nd_array.html#a42b713a59eac4e9df2ea3b2e584a80f1":[5,0,0,28,124], "classnc_1_1_nd_array.html#a434f10a7956f425882fbbbc90038e4cb":[4,0,0,38,203], +"classnc_1_1_nd_array.html#a434f10a7956f425882fbbbc90038e4cb":[5,0,0,28,203], "classnc_1_1_nd_array.html#a43e25496a5c00ba711af9dec4019ab6b":[5,0,0,28,91], "classnc_1_1_nd_array.html#a43e25496a5c00ba711af9dec4019ab6b":[4,0,0,38,91], "classnc_1_1_nd_array.html#a45e4cd342cfca9d78aacf14f5ab3425d":[4,0,0,38,166], "classnc_1_1_nd_array.html#a45e4cd342cfca9d78aacf14f5ab3425d":[5,0,0,28,166], -"classnc_1_1_nd_array.html#a46c4fbd999ab1d612586191a15ada4b7":[4,0,0,38,32], "classnc_1_1_nd_array.html#a46c4fbd999ab1d612586191a15ada4b7":[5,0,0,28,32], +"classnc_1_1_nd_array.html#a46c4fbd999ab1d612586191a15ada4b7":[4,0,0,38,32], "classnc_1_1_nd_array.html#a47f1037d52dfcaff73a992f2779b56f7":[5,0,0,28,58], "classnc_1_1_nd_array.html#a47f1037d52dfcaff73a992f2779b56f7":[4,0,0,38,58], -"classnc_1_1_nd_array.html#a4824e91b22bb46ebc31c9c08de55ef13":[4,0,0,38,223], "classnc_1_1_nd_array.html#a4824e91b22bb46ebc31c9c08de55ef13":[5,0,0,28,223], -"classnc_1_1_nd_array.html#a48fb313ad0eb8126c338a319a5a2fd98":[4,0,0,38,198], +"classnc_1_1_nd_array.html#a4824e91b22bb46ebc31c9c08de55ef13":[4,0,0,38,223], "classnc_1_1_nd_array.html#a48fb313ad0eb8126c338a319a5a2fd98":[5,0,0,28,198], +"classnc_1_1_nd_array.html#a48fb313ad0eb8126c338a319a5a2fd98":[4,0,0,38,198], "classnc_1_1_nd_array.html#a498174cc7129aea2ecced29ce1e544f8":[5,0,0,28,50], "classnc_1_1_nd_array.html#a498174cc7129aea2ecced29ce1e544f8":[4,0,0,38,50], "classnc_1_1_nd_array.html#a49deeee0db98eae1c16ac6bca6fa6f31":[5,0,0,28,3], "classnc_1_1_nd_array.html#a49deeee0db98eae1c16ac6bca6fa6f31":[4,0,0,38,3], "classnc_1_1_nd_array.html#a4a3d1f968c924a4dc74cd8b617d30df6":[4,0,0,38,75], "classnc_1_1_nd_array.html#a4a3d1f968c924a4dc74cd8b617d30df6":[5,0,0,28,75], -"classnc_1_1_nd_array.html#a4a493445c10ed3c299632bf8c7077cfb":[4,0,0,38,79] +"classnc_1_1_nd_array.html#a4a493445c10ed3c299632bf8c7077cfb":[5,0,0,28,79], +"classnc_1_1_nd_array.html#a4a493445c10ed3c299632bf8c7077cfb":[4,0,0,38,79], +"classnc_1_1_nd_array.html#a4c605ecc083de3f2778d082f2cef2baa":[4,0,0,38,63] }; diff --git a/docs/doxygen/html/navtreeindex5.js b/docs/doxygen/html/navtreeindex5.js index 91386193a..5c20588fe 100644 --- a/docs/doxygen/html/navtreeindex5.js +++ b/docs/doxygen/html/navtreeindex5.js @@ -1,90 +1,88 @@ var NAVTREEINDEX5 = { -"classnc_1_1_nd_array.html#a4a493445c10ed3c299632bf8c7077cfb":[5,0,0,28,79], -"classnc_1_1_nd_array.html#a4c605ecc083de3f2778d082f2cef2baa":[4,0,0,38,63], "classnc_1_1_nd_array.html#a4c605ecc083de3f2778d082f2cef2baa":[5,0,0,28,63], -"classnc_1_1_nd_array.html#a4c9af8c098a8427cc5b68985b36a384c":[5,0,0,28,216], "classnc_1_1_nd_array.html#a4c9af8c098a8427cc5b68985b36a384c":[4,0,0,38,216], +"classnc_1_1_nd_array.html#a4c9af8c098a8427cc5b68985b36a384c":[5,0,0,28,216], "classnc_1_1_nd_array.html#a4da6aaa43b6074a4353328a8047992f6":[5,0,0,28,81], "classnc_1_1_nd_array.html#a4da6aaa43b6074a4353328a8047992f6":[4,0,0,38,81], "classnc_1_1_nd_array.html#a4e0829aec866a068a533e97a9baf87c5":[5,0,0,28,119], "classnc_1_1_nd_array.html#a4e0829aec866a068a533e97a9baf87c5":[4,0,0,38,119], -"classnc_1_1_nd_array.html#a4ebe59dc21a3b5e035ff1c4e6e82189d":[4,0,0,38,73], "classnc_1_1_nd_array.html#a4ebe59dc21a3b5e035ff1c4e6e82189d":[5,0,0,28,73], +"classnc_1_1_nd_array.html#a4ebe59dc21a3b5e035ff1c4e6e82189d":[4,0,0,38,73], "classnc_1_1_nd_array.html#a50e9248d5af74069914e9b4deb4bc3b8":[4,0,0,38,192], "classnc_1_1_nd_array.html#a50e9248d5af74069914e9b4deb4bc3b8":[5,0,0,28,192], -"classnc_1_1_nd_array.html#a512f522bea639fe97221bf127e9e7e9d":[5,0,0,28,125], "classnc_1_1_nd_array.html#a512f522bea639fe97221bf127e9e7e9d":[4,0,0,38,125], -"classnc_1_1_nd_array.html#a51e2cddde9482a27bf73fa308e0268c6":[5,0,0,28,204], +"classnc_1_1_nd_array.html#a512f522bea639fe97221bf127e9e7e9d":[5,0,0,28,125], "classnc_1_1_nd_array.html#a51e2cddde9482a27bf73fa308e0268c6":[4,0,0,38,204], +"classnc_1_1_nd_array.html#a51e2cddde9482a27bf73fa308e0268c6":[5,0,0,28,204], "classnc_1_1_nd_array.html#a5321c589fffd609769273af225914b7f":[4,0,0,38,27], "classnc_1_1_nd_array.html#a5321c589fffd609769273af225914b7f":[5,0,0,28,27], -"classnc_1_1_nd_array.html#a53f77c7fddb887c836004875f7177461":[5,0,0,28,164], "classnc_1_1_nd_array.html#a53f77c7fddb887c836004875f7177461":[4,0,0,38,164], +"classnc_1_1_nd_array.html#a53f77c7fddb887c836004875f7177461":[5,0,0,28,164], "classnc_1_1_nd_array.html#a5432510bb597b7b50c82c6ad7f4a3960":[4,0,0,38,171], "classnc_1_1_nd_array.html#a5432510bb597b7b50c82c6ad7f4a3960":[5,0,0,28,171], "classnc_1_1_nd_array.html#a546c8b9de00188fab35a6c5075147cc1":[5,0,0,28,116], "classnc_1_1_nd_array.html#a546c8b9de00188fab35a6c5075147cc1":[4,0,0,38,116], "classnc_1_1_nd_array.html#a548b77799088db2543ad56de2a81939f":[5,0,0,28,120], "classnc_1_1_nd_array.html#a548b77799088db2543ad56de2a81939f":[4,0,0,38,120], -"classnc_1_1_nd_array.html#a554edbd2789ec95985acdaaa2c80372e":[4,0,0,38,211], "classnc_1_1_nd_array.html#a554edbd2789ec95985acdaaa2c80372e":[5,0,0,28,211], +"classnc_1_1_nd_array.html#a554edbd2789ec95985acdaaa2c80372e":[4,0,0,38,211], "classnc_1_1_nd_array.html#a555efdc758b47b107c9c94593b6c2470":[5,0,0,28,66], "classnc_1_1_nd_array.html#a555efdc758b47b107c9c94593b6c2470":[4,0,0,38,66], -"classnc_1_1_nd_array.html#a55e5d41795f14f7f2aa256ba0f4bb676":[5,0,0,28,99], "classnc_1_1_nd_array.html#a55e5d41795f14f7f2aa256ba0f4bb676":[4,0,0,38,99], -"classnc_1_1_nd_array.html#a563cf4dcecda39a0599cc13c87363677":[4,0,0,38,68], +"classnc_1_1_nd_array.html#a55e5d41795f14f7f2aa256ba0f4bb676":[5,0,0,28,99], "classnc_1_1_nd_array.html#a563cf4dcecda39a0599cc13c87363677":[5,0,0,28,68], +"classnc_1_1_nd_array.html#a563cf4dcecda39a0599cc13c87363677":[4,0,0,38,68], "classnc_1_1_nd_array.html#a56704aea2c006973065aaa2848faa7fb":[5,0,0,28,199], "classnc_1_1_nd_array.html#a56704aea2c006973065aaa2848faa7fb":[4,0,0,38,199], "classnc_1_1_nd_array.html#a56b36a9d76286a583fe2a83bd8f204ce":[5,0,0,28,189], "classnc_1_1_nd_array.html#a56b36a9d76286a583fe2a83bd8f204ce":[4,0,0,38,189], -"classnc_1_1_nd_array.html#a57fa866d30c298337bfc906ae73b6a40":[5,0,0,28,71], "classnc_1_1_nd_array.html#a57fa866d30c298337bfc906ae73b6a40":[4,0,0,38,71], +"classnc_1_1_nd_array.html#a57fa866d30c298337bfc906ae73b6a40":[5,0,0,28,71], "classnc_1_1_nd_array.html#a59de727a0db449ca5a28d436c9cec165":[5,0,0,28,205], "classnc_1_1_nd_array.html#a59de727a0db449ca5a28d436c9cec165":[4,0,0,38,205], "classnc_1_1_nd_array.html#a5ae6d993d5c8d41eee61ddca0b9f2b31":[5,0,0,28,94], "classnc_1_1_nd_array.html#a5ae6d993d5c8d41eee61ddca0b9f2b31":[4,0,0,38,94], "classnc_1_1_nd_array.html#a5b2d31279c20992459ff60643a75acf9":[4,0,0,38,219], "classnc_1_1_nd_array.html#a5b2d31279c20992459ff60643a75acf9":[5,0,0,28,219], -"classnc_1_1_nd_array.html#a5b35f00bf7af382d3c98792a20bd3531":[4,0,0,38,234], "classnc_1_1_nd_array.html#a5b35f00bf7af382d3c98792a20bd3531":[5,0,0,28,234], -"classnc_1_1_nd_array.html#a5f3177c5a086cd8e26b318f6e300eb73":[5,0,0,28,228], +"classnc_1_1_nd_array.html#a5b35f00bf7af382d3c98792a20bd3531":[4,0,0,38,234], "classnc_1_1_nd_array.html#a5f3177c5a086cd8e26b318f6e300eb73":[4,0,0,38,228], -"classnc_1_1_nd_array.html#a5f70273a5bbff4f0b0c5086649939301":[5,0,0,28,200], +"classnc_1_1_nd_array.html#a5f3177c5a086cd8e26b318f6e300eb73":[5,0,0,28,228], "classnc_1_1_nd_array.html#a5f70273a5bbff4f0b0c5086649939301":[4,0,0,38,200], +"classnc_1_1_nd_array.html#a5f70273a5bbff4f0b0c5086649939301":[5,0,0,28,200], "classnc_1_1_nd_array.html#a612cdd532e56b711ebb9c2478971c04f":[5,0,0,28,8], "classnc_1_1_nd_array.html#a612cdd532e56b711ebb9c2478971c04f":[4,0,0,38,8], "classnc_1_1_nd_array.html#a635448f7b5d598e3a978d2c2e62d7727":[5,0,0,28,113], "classnc_1_1_nd_array.html#a635448f7b5d598e3a978d2c2e62d7727":[4,0,0,38,113], -"classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[4,0,0,38,47], "classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[5,0,0,28,49], -"classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[4,0,0,38,48], -"classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[5,0,0,28,46], +"classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[5,0,0,28,48], "classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[5,0,0,28,47], +"classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[5,0,0,28,46], "classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[4,0,0,38,46], -"classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[5,0,0,28,48], +"classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[4,0,0,38,47], +"classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[4,0,0,38,48], "classnc_1_1_nd_array.html#a637b1256589ea7e1da466e3406ffa280":[4,0,0,38,49], "classnc_1_1_nd_array.html#a6398259baddf9e69e120d263c02c5add":[4,0,0,38,186], "classnc_1_1_nd_array.html#a6398259baddf9e69e120d263c02c5add":[5,0,0,28,186], -"classnc_1_1_nd_array.html#a63a1c0f9fdef078770e4f8cbe2c249ec":[4,0,0,38,163], "classnc_1_1_nd_array.html#a63a1c0f9fdef078770e4f8cbe2c249ec":[5,0,0,28,163], -"classnc_1_1_nd_array.html#a647f32c2955dc1b61b23983270661bdd":[4,0,0,38,159], +"classnc_1_1_nd_array.html#a63a1c0f9fdef078770e4f8cbe2c249ec":[4,0,0,38,163], "classnc_1_1_nd_array.html#a647f32c2955dc1b61b23983270661bdd":[5,0,0,28,159], +"classnc_1_1_nd_array.html#a647f32c2955dc1b61b23983270661bdd":[4,0,0,38,159], "classnc_1_1_nd_array.html#a64c8848040a401716ce2d37915fa7e4c":[4,0,0,38,118], "classnc_1_1_nd_array.html#a64c8848040a401716ce2d37915fa7e4c":[5,0,0,28,118], -"classnc_1_1_nd_array.html#a6501fd771b4dcf1fb49defeee43a47cc":[4,0,0,38,88], "classnc_1_1_nd_array.html#a6501fd771b4dcf1fb49defeee43a47cc":[5,0,0,28,88], -"classnc_1_1_nd_array.html#a66ae5664d66e900a48ca1d9a607f655e":[5,0,0,28,22], +"classnc_1_1_nd_array.html#a6501fd771b4dcf1fb49defeee43a47cc":[4,0,0,38,88], "classnc_1_1_nd_array.html#a66ae5664d66e900a48ca1d9a607f655e":[4,0,0,38,22], -"classnc_1_1_nd_array.html#a68cdc1d3eb94c7ec3feea47978ad26a0":[4,0,0,38,52], +"classnc_1_1_nd_array.html#a66ae5664d66e900a48ca1d9a607f655e":[5,0,0,28,22], "classnc_1_1_nd_array.html#a68cdc1d3eb94c7ec3feea47978ad26a0":[5,0,0,28,52], -"classnc_1_1_nd_array.html#a6bb650c9e28ff25c9b58c9f4f08d78bb":[4,0,0,38,65], +"classnc_1_1_nd_array.html#a68cdc1d3eb94c7ec3feea47978ad26a0":[4,0,0,38,52], "classnc_1_1_nd_array.html#a6bb650c9e28ff25c9b58c9f4f08d78bb":[5,0,0,28,65], -"classnc_1_1_nd_array.html#a6ce7327b2d1c60e74d02345d573c7237":[4,0,0,38,140], +"classnc_1_1_nd_array.html#a6bb650c9e28ff25c9b58c9f4f08d78bb":[4,0,0,38,65], "classnc_1_1_nd_array.html#a6ce7327b2d1c60e74d02345d573c7237":[5,0,0,28,140], -"classnc_1_1_nd_array.html#a6dcd356dd86cdd141307b77a5114b00a":[4,0,0,38,109], +"classnc_1_1_nd_array.html#a6ce7327b2d1c60e74d02345d573c7237":[4,0,0,38,140], "classnc_1_1_nd_array.html#a6dcd356dd86cdd141307b77a5114b00a":[5,0,0,28,109], +"classnc_1_1_nd_array.html#a6dcd356dd86cdd141307b77a5114b00a":[4,0,0,38,109], "classnc_1_1_nd_array.html#a6dd4a60fee1f8b880d383160d8836b89":[4,0,0,38,184], "classnc_1_1_nd_array.html#a6dd4a60fee1f8b880d383160d8836b89":[5,0,0,28,184], "classnc_1_1_nd_array.html#a6de6f2ef3b2519edd272623a9681b527":[5,0,0,28,7], @@ -93,46 +91,46 @@ var NAVTREEINDEX5 = "classnc_1_1_nd_array.html#a738ff52720de6231ad5d51de0f9faa7b":[5,0,0,28,56], "classnc_1_1_nd_array.html#a7473135d0434a04abec09a884b5683cc":[4,0,0,38,34], "classnc_1_1_nd_array.html#a7473135d0434a04abec09a884b5683cc":[5,0,0,28,34], -"classnc_1_1_nd_array.html#a752ce557b611da928ccad1dc150fbeb2":[5,0,0,28,41], "classnc_1_1_nd_array.html#a752ce557b611da928ccad1dc150fbeb2":[4,0,0,38,41], +"classnc_1_1_nd_array.html#a752ce557b611da928ccad1dc150fbeb2":[5,0,0,28,41], "classnc_1_1_nd_array.html#a7630c865a02a0f7afd973a895e00bfcb":[5,0,0,28,37], "classnc_1_1_nd_array.html#a7630c865a02a0f7afd973a895e00bfcb":[4,0,0,38,37], -"classnc_1_1_nd_array.html#a76367e20a80285caa74c2e3d393a4759":[5,0,0,28,38], "classnc_1_1_nd_array.html#a76367e20a80285caa74c2e3d393a4759":[4,0,0,38,38], -"classnc_1_1_nd_array.html#a775e07af6829b5336969c703c4eddba7":[5,0,0,28,137], +"classnc_1_1_nd_array.html#a76367e20a80285caa74c2e3d393a4759":[5,0,0,28,38], "classnc_1_1_nd_array.html#a775e07af6829b5336969c703c4eddba7":[4,0,0,38,137], -"classnc_1_1_nd_array.html#a798c35bcc3c3ecb46629571234afd384":[5,0,0,28,42], +"classnc_1_1_nd_array.html#a775e07af6829b5336969c703c4eddba7":[5,0,0,28,137], "classnc_1_1_nd_array.html#a798c35bcc3c3ecb46629571234afd384":[4,0,0,38,42], +"classnc_1_1_nd_array.html#a798c35bcc3c3ecb46629571234afd384":[5,0,0,28,42], "classnc_1_1_nd_array.html#a7a28df4dfcb61fcf24920a53ec6d606a":[4,0,0,38,53], "classnc_1_1_nd_array.html#a7a28df4dfcb61fcf24920a53ec6d606a":[5,0,0,28,53], -"classnc_1_1_nd_array.html#a7b0f43ea1853dcc471949c0e7eb977f5":[5,0,0,28,31], "classnc_1_1_nd_array.html#a7b0f43ea1853dcc471949c0e7eb977f5":[4,0,0,38,31], -"classnc_1_1_nd_array.html#a7b46bea4f56ab2327fc291dac4e75788":[4,0,0,38,18], +"classnc_1_1_nd_array.html#a7b0f43ea1853dcc471949c0e7eb977f5":[5,0,0,28,31], "classnc_1_1_nd_array.html#a7b46bea4f56ab2327fc291dac4e75788":[5,0,0,28,18], +"classnc_1_1_nd_array.html#a7b46bea4f56ab2327fc291dac4e75788":[4,0,0,38,18], "classnc_1_1_nd_array.html#a7baaa9093de2a18b5dbbe4a44b7fad9d":[5,0,0,28,170], "classnc_1_1_nd_array.html#a7baaa9093de2a18b5dbbe4a44b7fad9d":[4,0,0,38,170], -"classnc_1_1_nd_array.html#a7c17d60541d81f71107c5dc0a06885ac":[5,0,0,28,121], "classnc_1_1_nd_array.html#a7c17d60541d81f71107c5dc0a06885ac":[4,0,0,38,121], -"classnc_1_1_nd_array.html#a7ef259d6b54cf8373721700b12c14500":[4,0,0,38,39], +"classnc_1_1_nd_array.html#a7c17d60541d81f71107c5dc0a06885ac":[5,0,0,28,121], "classnc_1_1_nd_array.html#a7ef259d6b54cf8373721700b12c14500":[5,0,0,28,39], +"classnc_1_1_nd_array.html#a7ef259d6b54cf8373721700b12c14500":[4,0,0,38,39], "classnc_1_1_nd_array.html#a7fc9a782b280bbc4443b5b7a37ff1af0":[5,0,0,28,222], "classnc_1_1_nd_array.html#a7fc9a782b280bbc4443b5b7a37ff1af0":[4,0,0,38,222], "classnc_1_1_nd_array.html#a823d56e88aa815d86d41e8b11d348a6a":[4,0,0,38,122], "classnc_1_1_nd_array.html#a823d56e88aa815d86d41e8b11d348a6a":[5,0,0,28,122], "classnc_1_1_nd_array.html#a8299084e56d9ca172843055046442404":[4,0,0,38,178], "classnc_1_1_nd_array.html#a8299084e56d9ca172843055046442404":[5,0,0,28,178], -"classnc_1_1_nd_array.html#a8383354f7a2e9e4f691475a44c7f1d3b":[4,0,0,38,188], "classnc_1_1_nd_array.html#a8383354f7a2e9e4f691475a44c7f1d3b":[5,0,0,28,188], -"classnc_1_1_nd_array.html#a8409e49f922af6202ae6ac9efa99eff7":[4,0,0,38,179], +"classnc_1_1_nd_array.html#a8383354f7a2e9e4f691475a44c7f1d3b":[4,0,0,38,188], "classnc_1_1_nd_array.html#a8409e49f922af6202ae6ac9efa99eff7":[5,0,0,28,179], +"classnc_1_1_nd_array.html#a8409e49f922af6202ae6ac9efa99eff7":[4,0,0,38,179], "classnc_1_1_nd_array.html#a8509cda74ae6f29995dd8a9f27d30d11":[5,0,0,28,20], "classnc_1_1_nd_array.html#a8509cda74ae6f29995dd8a9f27d30d11":[4,0,0,38,20], "classnc_1_1_nd_array.html#a860430649e79b09774ada67a58d3f8a4":[4,0,0,38,191], "classnc_1_1_nd_array.html#a860430649e79b09774ada67a58d3f8a4":[5,0,0,28,191], -"classnc_1_1_nd_array.html#a86488494684f55c32dd82e90b818f77e":[4,0,0,38,0], "classnc_1_1_nd_array.html#a86488494684f55c32dd82e90b818f77e":[5,0,0,28,0], -"classnc_1_1_nd_array.html#a86eea99b290146250029545f58b71007":[4,0,0,38,136], +"classnc_1_1_nd_array.html#a86488494684f55c32dd82e90b818f77e":[4,0,0,38,0], "classnc_1_1_nd_array.html#a86eea99b290146250029545f58b71007":[5,0,0,28,136], +"classnc_1_1_nd_array.html#a86eea99b290146250029545f58b71007":[4,0,0,38,136], "classnc_1_1_nd_array.html#a870d5f4a06c4e0e2223e5215b648cb2c":[5,0,0,28,36], "classnc_1_1_nd_array.html#a870d5f4a06c4e0e2223e5215b648cb2c":[4,0,0,38,36], "classnc_1_1_nd_array.html#a8729dc551775ca022cbfbf66b22c999b":[4,0,0,38,165], @@ -145,109 +143,111 @@ var NAVTREEINDEX5 = "classnc_1_1_nd_array.html#a8f0724ebbd94ead973fb3c46f6cca17d":[5,0,0,28,142], "classnc_1_1_nd_array.html#a9047b67188b652c471db37731659c598":[4,0,0,38,207], "classnc_1_1_nd_array.html#a9047b67188b652c471db37731659c598":[5,0,0,28,207], -"classnc_1_1_nd_array.html#a91801907e76fd8ecc9ce7ff3b85ea9bd":[4,0,0,38,19], "classnc_1_1_nd_array.html#a91801907e76fd8ecc9ce7ff3b85ea9bd":[5,0,0,28,19], +"classnc_1_1_nd_array.html#a91801907e76fd8ecc9ce7ff3b85ea9bd":[4,0,0,38,19], "classnc_1_1_nd_array.html#a918b781842545d11fd1b4e6bf769321d":[5,0,0,28,51], "classnc_1_1_nd_array.html#a918b781842545d11fd1b4e6bf769321d":[4,0,0,38,51], -"classnc_1_1_nd_array.html#a92c90b8671a637ec7d7821f6e8bdfa56":[5,0,0,28,206], "classnc_1_1_nd_array.html#a92c90b8671a637ec7d7821f6e8bdfa56":[4,0,0,38,206], -"classnc_1_1_nd_array.html#a93f962a3badfd82da685a2d7fdf006aa":[5,0,0,28,208], +"classnc_1_1_nd_array.html#a92c90b8671a637ec7d7821f6e8bdfa56":[5,0,0,28,206], "classnc_1_1_nd_array.html#a93f962a3badfd82da685a2d7fdf006aa":[4,0,0,38,208], -"classnc_1_1_nd_array.html#a94982f81d8aa8c8a72abe0327f22b4dd":[4,0,0,38,4], +"classnc_1_1_nd_array.html#a93f962a3badfd82da685a2d7fdf006aa":[5,0,0,28,208], "classnc_1_1_nd_array.html#a94982f81d8aa8c8a72abe0327f22b4dd":[5,0,0,28,4], +"classnc_1_1_nd_array.html#a94982f81d8aa8c8a72abe0327f22b4dd":[4,0,0,38,4], "classnc_1_1_nd_array.html#a954b7bc4fb08ad200ded89926f03c044":[4,0,0,38,168], "classnc_1_1_nd_array.html#a954b7bc4fb08ad200ded89926f03c044":[5,0,0,28,168], "classnc_1_1_nd_array.html#a95900d77fd2e78d029d2ddf929dedfd0":[4,0,0,38,157], "classnc_1_1_nd_array.html#a95900d77fd2e78d029d2ddf929dedfd0":[5,0,0,28,157], -"classnc_1_1_nd_array.html#a95cbc4440ac1e139642a08cbd075dafc":[4,0,0,38,95], "classnc_1_1_nd_array.html#a95cbc4440ac1e139642a08cbd075dafc":[5,0,0,28,95], -"classnc_1_1_nd_array.html#a963116eba00303dab962d1e816442a5e":[5,0,0,28,33], +"classnc_1_1_nd_array.html#a95cbc4440ac1e139642a08cbd075dafc":[4,0,0,38,95], "classnc_1_1_nd_array.html#a963116eba00303dab962d1e816442a5e":[4,0,0,38,33], -"classnc_1_1_nd_array.html#a97f4fdf4d1a588662733af2bc7e63aaa":[5,0,0,28,90], +"classnc_1_1_nd_array.html#a963116eba00303dab962d1e816442a5e":[5,0,0,28,33], "classnc_1_1_nd_array.html#a97f4fdf4d1a588662733af2bc7e63aaa":[4,0,0,38,90], -"classnc_1_1_nd_array.html#a9987ced72f8182d4b55807c0177eab11":[5,0,0,28,14], +"classnc_1_1_nd_array.html#a97f4fdf4d1a588662733af2bc7e63aaa":[5,0,0,28,90], "classnc_1_1_nd_array.html#a9987ced72f8182d4b55807c0177eab11":[4,0,0,38,14], -"classnc_1_1_nd_array.html#a9f983aabd3568e7bd1be0a0c4e2b881d":[4,0,0,38,196], +"classnc_1_1_nd_array.html#a9987ced72f8182d4b55807c0177eab11":[5,0,0,28,14], "classnc_1_1_nd_array.html#a9f983aabd3568e7bd1be0a0c4e2b881d":[5,0,0,28,196], +"classnc_1_1_nd_array.html#a9f983aabd3568e7bd1be0a0c4e2b881d":[4,0,0,38,196], "classnc_1_1_nd_array.html#aa0e43e7e56c4c124030c4fa3d5b6c700":[5,0,0,28,158], "classnc_1_1_nd_array.html#aa0e43e7e56c4c124030c4fa3d5b6c700":[4,0,0,38,158], "classnc_1_1_nd_array.html#aa16bc96e4bbafbc8a06743f3e4a10a6a":[5,0,0,28,80], "classnc_1_1_nd_array.html#aa16bc96e4bbafbc8a06743f3e4a10a6a":[4,0,0,38,80], -"classnc_1_1_nd_array.html#aa24df175dbb7ee2d18ade670fb1614be":[5,0,0,28,217], "classnc_1_1_nd_array.html#aa24df175dbb7ee2d18ade670fb1614be":[4,0,0,38,217], +"classnc_1_1_nd_array.html#aa24df175dbb7ee2d18ade670fb1614be":[5,0,0,28,217], "classnc_1_1_nd_array.html#aa2a541697e30e0e8adb212ae5078ba60":[5,0,0,28,156], "classnc_1_1_nd_array.html#aa2a541697e30e0e8adb212ae5078ba60":[4,0,0,38,156], "classnc_1_1_nd_array.html#aa44f94cc8d02a56636223686f30d84f1":[4,0,0,38,226], "classnc_1_1_nd_array.html#aa44f94cc8d02a56636223686f30d84f1":[5,0,0,28,226], -"classnc_1_1_nd_array.html#aa4f80e21b4b0f30ff98d1b90ae4fd70d":[5,0,0,28,6], "classnc_1_1_nd_array.html#aa4f80e21b4b0f30ff98d1b90ae4fd70d":[4,0,0,38,6], +"classnc_1_1_nd_array.html#aa4f80e21b4b0f30ff98d1b90ae4fd70d":[5,0,0,28,6], "classnc_1_1_nd_array.html#aa99a78cc9b8d8eb946a6ed64124c8bf4":[4,0,0,38,105], "classnc_1_1_nd_array.html#aa99a78cc9b8d8eb946a6ed64124c8bf4":[5,0,0,28,105], "classnc_1_1_nd_array.html#aaaf4e933c9edf396aa1d52993b7a102f":[5,0,0,28,40], "classnc_1_1_nd_array.html#aaaf4e933c9edf396aa1d52993b7a102f":[4,0,0,38,40], "classnc_1_1_nd_array.html#aac6cadf2d3695424faa59a9cea11db1b":[4,0,0,38,215], "classnc_1_1_nd_array.html#aac6cadf2d3695424faa59a9cea11db1b":[5,0,0,28,215], -"classnc_1_1_nd_array.html#aacd3053f17458c8fc51a43b0e35a84b3":[5,0,0,28,185], "classnc_1_1_nd_array.html#aacd3053f17458c8fc51a43b0e35a84b3":[4,0,0,38,185], -"classnc_1_1_nd_array.html#aacff9537c7c8537583b70115626a420b":[4,0,0,38,123], +"classnc_1_1_nd_array.html#aacd3053f17458c8fc51a43b0e35a84b3":[5,0,0,28,185], "classnc_1_1_nd_array.html#aacff9537c7c8537583b70115626a420b":[5,0,0,28,123], -"classnc_1_1_nd_array.html#aae8361a012523be0f0b5f341e5939595":[4,0,0,38,175], +"classnc_1_1_nd_array.html#aacff9537c7c8537583b70115626a420b":[4,0,0,38,123], "classnc_1_1_nd_array.html#aae8361a012523be0f0b5f341e5939595":[5,0,0,28,175], -"classnc_1_1_nd_array.html#ab1b83c9fdd53fcadded2c3234bb9d269":[4,0,0,38,25], +"classnc_1_1_nd_array.html#aae8361a012523be0f0b5f341e5939595":[4,0,0,38,175], "classnc_1_1_nd_array.html#ab1b83c9fdd53fcadded2c3234bb9d269":[5,0,0,28,25], -"classnc_1_1_nd_array.html#ab1e3fa17fad2fae5a2fdcedff4737bc8":[5,0,0,28,210], +"classnc_1_1_nd_array.html#ab1b83c9fdd53fcadded2c3234bb9d269":[4,0,0,38,25], "classnc_1_1_nd_array.html#ab1e3fa17fad2fae5a2fdcedff4737bc8":[4,0,0,38,210], -"classnc_1_1_nd_array.html#ab3cdc446e55744b31d42dfb53fcdc7cf":[5,0,0,28,72], +"classnc_1_1_nd_array.html#ab1e3fa17fad2fae5a2fdcedff4737bc8":[5,0,0,28,210], "classnc_1_1_nd_array.html#ab3cdc446e55744b31d42dfb53fcdc7cf":[4,0,0,38,72], -"classnc_1_1_nd_array.html#ab57282e02905eeb2a932eeb73983221f":[5,0,0,28,70], +"classnc_1_1_nd_array.html#ab3cdc446e55744b31d42dfb53fcdc7cf":[5,0,0,28,72], "classnc_1_1_nd_array.html#ab57282e02905eeb2a932eeb73983221f":[4,0,0,38,70], +"classnc_1_1_nd_array.html#ab57282e02905eeb2a932eeb73983221f":[5,0,0,28,70], "classnc_1_1_nd_array.html#ab6bf02841ec667f5bb4266da569c99fc":[4,0,0,38,83], "classnc_1_1_nd_array.html#ab6bf02841ec667f5bb4266da569c99fc":[5,0,0,28,83], "classnc_1_1_nd_array.html#abbde96c48b2fbebf4edc6337020fabea":[5,0,0,28,129], "classnc_1_1_nd_array.html#abbde96c48b2fbebf4edc6337020fabea":[4,0,0,38,129], -"classnc_1_1_nd_array.html#abc1bc6a854968940dac643396b2fb1b5":[4,0,0,38,13], "classnc_1_1_nd_array.html#abc1bc6a854968940dac643396b2fb1b5":[5,0,0,28,13], +"classnc_1_1_nd_array.html#abc1bc6a854968940dac643396b2fb1b5":[4,0,0,38,13], "classnc_1_1_nd_array.html#abc6b5511d9c0624978cc56a41094fb07":[5,0,0,28,153], "classnc_1_1_nd_array.html#abc6b5511d9c0624978cc56a41094fb07":[4,0,0,38,153], -"classnc_1_1_nd_array.html#abc93f10cf3e9b3ff42d2574509d46b42":[5,0,0,28,181], "classnc_1_1_nd_array.html#abc93f10cf3e9b3ff42d2574509d46b42":[4,0,0,38,181], -"classnc_1_1_nd_array.html#abe96d5e5c561564dd3baa018c9257f69":[5,0,0,28,138], +"classnc_1_1_nd_array.html#abc93f10cf3e9b3ff42d2574509d46b42":[5,0,0,28,181], "classnc_1_1_nd_array.html#abe96d5e5c561564dd3baa018c9257f69":[4,0,0,38,138], -"classnc_1_1_nd_array.html#abec76b8f271e07fa07cc2f88fed676fa":[5,0,0,28,132], +"classnc_1_1_nd_array.html#abe96d5e5c561564dd3baa018c9257f69":[5,0,0,28,138], "classnc_1_1_nd_array.html#abec76b8f271e07fa07cc2f88fed676fa":[4,0,0,38,132], -"classnc_1_1_nd_array.html#abf8b57883a01de2bfab8f746d716f890":[5,0,0,28,59], +"classnc_1_1_nd_array.html#abec76b8f271e07fa07cc2f88fed676fa":[5,0,0,28,132], "classnc_1_1_nd_array.html#abf8b57883a01de2bfab8f746d716f890":[4,0,0,38,59], +"classnc_1_1_nd_array.html#abf8b57883a01de2bfab8f746d716f890":[5,0,0,28,59], "classnc_1_1_nd_array.html#ac0d8f31c7c67c0055f9d5904bed8ca45":[4,0,0,38,213], "classnc_1_1_nd_array.html#ac0d8f31c7c67c0055f9d5904bed8ca45":[5,0,0,28,213], "classnc_1_1_nd_array.html#ac1297463b545ecfd72d22549ce0db02a":[5,0,0,28,87], "classnc_1_1_nd_array.html#ac1297463b545ecfd72d22549ce0db02a":[4,0,0,38,87], -"classnc_1_1_nd_array.html#ac2b65c1612df9437c9afaa57ff248122":[5,0,0,28,220], "classnc_1_1_nd_array.html#ac2b65c1612df9437c9afaa57ff248122":[4,0,0,38,220], +"classnc_1_1_nd_array.html#ac2b65c1612df9437c9afaa57ff248122":[5,0,0,28,220], "classnc_1_1_nd_array.html#ac4ccfb328a396dc87ad73af9c28a5e50":[5,0,0,28,145], "classnc_1_1_nd_array.html#ac4ccfb328a396dc87ad73af9c28a5e50":[4,0,0,38,145], "classnc_1_1_nd_array.html#ac51ada8336fa7387c782a58919e974d3":[5,0,0,28,55], "classnc_1_1_nd_array.html#ac51ada8336fa7387c782a58919e974d3":[4,0,0,38,55], "classnc_1_1_nd_array.html#ac535bc73461c877d4387728ec2076a41":[4,0,0,38,152], "classnc_1_1_nd_array.html#ac535bc73461c877d4387728ec2076a41":[5,0,0,28,152], -"classnc_1_1_nd_array.html#ac5d1c900c4db4263d1bf799ac3551ed6":[4,0,0,38,101], "classnc_1_1_nd_array.html#ac5d1c900c4db4263d1bf799ac3551ed6":[5,0,0,28,101], +"classnc_1_1_nd_array.html#ac5d1c900c4db4263d1bf799ac3551ed6":[4,0,0,38,101], "classnc_1_1_nd_array.html#ac6a9c918c472895fb1646de03c4cd58f":[4,0,0,38,151], "classnc_1_1_nd_array.html#ac6a9c918c472895fb1646de03c4cd58f":[5,0,0,28,151], "classnc_1_1_nd_array.html#ac9e316c3f8d2b4917655aef561f74c7e":[5,0,0,28,15], "classnc_1_1_nd_array.html#ac9e316c3f8d2b4917655aef561f74c7e":[4,0,0,38,15], "classnc_1_1_nd_array.html#acadf6ded9a6eb2638d975da9dbbfe38c":[4,0,0,38,86], "classnc_1_1_nd_array.html#acadf6ded9a6eb2638d975da9dbbfe38c":[5,0,0,28,86], -"classnc_1_1_nd_array.html#acbc82c45fce1aa7039510d9ca3a3f9ba":[4,0,0,38,144], "classnc_1_1_nd_array.html#acbc82c45fce1aa7039510d9ca3a3f9ba":[5,0,0,28,144], +"classnc_1_1_nd_array.html#acbc82c45fce1aa7039510d9ca3a3f9ba":[4,0,0,38,144], "classnc_1_1_nd_array.html#acd6d86dd103bc92285e04d5ca8cbe464":[4,0,0,38,180], "classnc_1_1_nd_array.html#acd6d86dd103bc92285e04d5ca8cbe464":[5,0,0,28,180], "classnc_1_1_nd_array.html#acf1f8244d4e188c5f2bc9ecc6f63c992":[5,0,0,28,169], "classnc_1_1_nd_array.html#acf1f8244d4e188c5f2bc9ecc6f63c992":[4,0,0,38,169], -"classnc_1_1_nd_array.html#ad0a184d2fdf6c537970f3d65b70adc34":[5,0,0,28,104], "classnc_1_1_nd_array.html#ad0a184d2fdf6c537970f3d65b70adc34":[4,0,0,38,104], -"classnc_1_1_nd_array.html#ad2833ea5479c37de114bf52afff04a20":[4,0,0,38,78], +"classnc_1_1_nd_array.html#ad0a184d2fdf6c537970f3d65b70adc34":[5,0,0,28,104], "classnc_1_1_nd_array.html#ad2833ea5479c37de114bf52afff04a20":[5,0,0,28,78], -"classnc_1_1_nd_array.html#ad3bed0ad151d223bb1b4ccb81b76ea21":[5,0,0,28,149], +"classnc_1_1_nd_array.html#ad2833ea5479c37de114bf52afff04a20":[4,0,0,38,78], "classnc_1_1_nd_array.html#ad3bed0ad151d223bb1b4ccb81b76ea21":[4,0,0,38,149], -"classnc_1_1_nd_array.html#ad542648eb1451d93172a598b20585c9b":[5,0,0,28,150] +"classnc_1_1_nd_array.html#ad3bed0ad151d223bb1b4ccb81b76ea21":[5,0,0,28,149], +"classnc_1_1_nd_array.html#ad542648eb1451d93172a598b20585c9b":[4,0,0,38,150], +"classnc_1_1_nd_array.html#ad542648eb1451d93172a598b20585c9b":[5,0,0,28,150], +"classnc_1_1_nd_array.html#ad5f870f49c9601930423258dcc723c8e":[5,0,0,28,202] }; diff --git a/docs/doxygen/html/navtreeindex6.js b/docs/doxygen/html/navtreeindex6.js index 41675c671..fe50f52e2 100644 --- a/docs/doxygen/html/navtreeindex6.js +++ b/docs/doxygen/html/navtreeindex6.js @@ -1,58 +1,56 @@ var NAVTREEINDEX6 = { -"classnc_1_1_nd_array.html#ad542648eb1451d93172a598b20585c9b":[4,0,0,38,150], -"classnc_1_1_nd_array.html#ad5f870f49c9601930423258dcc723c8e":[5,0,0,28,202], "classnc_1_1_nd_array.html#ad5f870f49c9601930423258dcc723c8e":[4,0,0,38,202], "classnc_1_1_nd_array.html#ad779b3d2a2f094370be77e515533f143":[5,0,0,28,193], "classnc_1_1_nd_array.html#ad779b3d2a2f094370be77e515533f143":[4,0,0,38,193], -"classnc_1_1_nd_array.html#ad94cfcf69d664d94e81fc98a0a61d193":[4,0,0,38,29], "classnc_1_1_nd_array.html#ad94cfcf69d664d94e81fc98a0a61d193":[5,0,0,28,29], -"classnc_1_1_nd_array.html#ada776db2a3c9ffef3dd7bf656cf75f08":[5,0,0,28,112], +"classnc_1_1_nd_array.html#ad94cfcf69d664d94e81fc98a0a61d193":[4,0,0,38,29], "classnc_1_1_nd_array.html#ada776db2a3c9ffef3dd7bf656cf75f08":[4,0,0,38,112], +"classnc_1_1_nd_array.html#ada776db2a3c9ffef3dd7bf656cf75f08":[5,0,0,28,112], "classnc_1_1_nd_array.html#adb4a1e1a3c3420c4b2133ba81a44a0e0":[5,0,0,28,12], "classnc_1_1_nd_array.html#adb4a1e1a3c3420c4b2133ba81a44a0e0":[4,0,0,38,12], -"classnc_1_1_nd_array.html#adb55ab056ca590042be07b1ebae23045":[5,0,0,28,174], "classnc_1_1_nd_array.html#adb55ab056ca590042be07b1ebae23045":[4,0,0,38,174], -"classnc_1_1_nd_array.html#add4015cf76c23ee8f3e2fab79e234ede":[4,0,0,38,187], +"classnc_1_1_nd_array.html#adb55ab056ca590042be07b1ebae23045":[5,0,0,28,174], "classnc_1_1_nd_array.html#add4015cf76c23ee8f3e2fab79e234ede":[5,0,0,28,187], -"classnc_1_1_nd_array.html#add51f0dd66fd9e6f8833a059262e3acf":[4,0,0,38,235], +"classnc_1_1_nd_array.html#add4015cf76c23ee8f3e2fab79e234ede":[4,0,0,38,187], "classnc_1_1_nd_array.html#add51f0dd66fd9e6f8833a059262e3acf":[5,0,0,28,235], -"classnc_1_1_nd_array.html#ade07629d4094244f1dfca863af67e7c0":[5,0,0,28,108], +"classnc_1_1_nd_array.html#add51f0dd66fd9e6f8833a059262e3acf":[4,0,0,38,235], "classnc_1_1_nd_array.html#ade07629d4094244f1dfca863af67e7c0":[4,0,0,38,108], +"classnc_1_1_nd_array.html#ade07629d4094244f1dfca863af67e7c0":[5,0,0,28,108], "classnc_1_1_nd_array.html#ade7af18a5e752671e48f45dd0b5b1bf7":[5,0,0,28,167], "classnc_1_1_nd_array.html#ade7af18a5e752671e48f45dd0b5b1bf7":[4,0,0,38,167], -"classnc_1_1_nd_array.html#ae0617b795de0e3cd37f6e6f3f7fe5013":[4,0,0,38,82], "classnc_1_1_nd_array.html#ae0617b795de0e3cd37f6e6f3f7fe5013":[5,0,0,28,82], +"classnc_1_1_nd_array.html#ae0617b795de0e3cd37f6e6f3f7fe5013":[4,0,0,38,82], "classnc_1_1_nd_array.html#ae0dc60f69a97fc128a0641c994e57821":[5,0,0,28,126], "classnc_1_1_nd_array.html#ae0dc60f69a97fc128a0641c994e57821":[4,0,0,38,126], "classnc_1_1_nd_array.html#ae2bdede667042f52176de3f3649735f6":[4,0,0,38,16], "classnc_1_1_nd_array.html#ae2bdede667042f52176de3f3649735f6":[5,0,0,28,16], "classnc_1_1_nd_array.html#ae39809331766e9d6490533040afbd589":[5,0,0,28,130], "classnc_1_1_nd_array.html#ae39809331766e9d6490533040afbd589":[4,0,0,38,130], -"classnc_1_1_nd_array.html#ae464f43f3b129025e33c85eabcfa46da":[5,0,0,28,155], "classnc_1_1_nd_array.html#ae464f43f3b129025e33c85eabcfa46da":[4,0,0,38,155], +"classnc_1_1_nd_array.html#ae464f43f3b129025e33c85eabcfa46da":[5,0,0,28,155], "classnc_1_1_nd_array.html#ae47b79d2054d83dc0c7deb617ab7d1c2":[4,0,0,38,69], "classnc_1_1_nd_array.html#ae47b79d2054d83dc0c7deb617ab7d1c2":[5,0,0,28,69], -"classnc_1_1_nd_array.html#ae60447b4fbb3246ac07d0203128bce90":[5,0,0,28,44], "classnc_1_1_nd_array.html#ae60447b4fbb3246ac07d0203128bce90":[4,0,0,38,44], +"classnc_1_1_nd_array.html#ae60447b4fbb3246ac07d0203128bce90":[5,0,0,28,44], "classnc_1_1_nd_array.html#ae611e2ecc5bae6035d0de4d48f5de239":[4,0,0,38,89], "classnc_1_1_nd_array.html#ae611e2ecc5bae6035d0de4d48f5de239":[5,0,0,28,89], "classnc_1_1_nd_array.html#ae69249dbc6d5d243e0ddbf4be470cf92":[5,0,0,28,43], "classnc_1_1_nd_array.html#ae69249dbc6d5d243e0ddbf4be470cf92":[4,0,0,38,43], -"classnc_1_1_nd_array.html#ae6bf709329289f153158fafb29d2b00d":[5,0,0,28,160], "classnc_1_1_nd_array.html#ae6bf709329289f153158fafb29d2b00d":[4,0,0,38,160], -"classnc_1_1_nd_array.html#ae7e3baea3949959dd6e1d593e0f18332":[4,0,0,38,154], +"classnc_1_1_nd_array.html#ae6bf709329289f153158fafb29d2b00d":[5,0,0,28,160], "classnc_1_1_nd_array.html#ae7e3baea3949959dd6e1d593e0f18332":[5,0,0,28,154], +"classnc_1_1_nd_array.html#ae7e3baea3949959dd6e1d593e0f18332":[4,0,0,38,154], "classnc_1_1_nd_array.html#ae81a3f91a387b92c440666b5df294a79":[5,0,0,28,148], "classnc_1_1_nd_array.html#ae81a3f91a387b92c440666b5df294a79":[4,0,0,38,148], "classnc_1_1_nd_array.html#ae856ac8f46aaf8890ff6730054d5ff60":[4,0,0,38,135], "classnc_1_1_nd_array.html#ae856ac8f46aaf8890ff6730054d5ff60":[5,0,0,28,135], "classnc_1_1_nd_array.html#aebb76869aac43d6d98611f8f09b27a4d":[5,0,0,28,190], "classnc_1_1_nd_array.html#aebb76869aac43d6d98611f8f09b27a4d":[4,0,0,38,190], -"classnc_1_1_nd_array.html#aed76b0d590eff875e09a6f0d7968e7db":[4,0,0,38,17], "classnc_1_1_nd_array.html#aed76b0d590eff875e09a6f0d7968e7db":[5,0,0,28,17], -"classnc_1_1_nd_array.html#aefbbf0b203fdee62286d83d025441317":[4,0,0,38,161], +"classnc_1_1_nd_array.html#aed76b0d590eff875e09a6f0d7968e7db":[4,0,0,38,17], "classnc_1_1_nd_array.html#aefbbf0b203fdee62286d83d025441317":[5,0,0,28,161], +"classnc_1_1_nd_array.html#aefbbf0b203fdee62286d83d025441317":[4,0,0,38,161], "classnc_1_1_nd_array.html#af03b916770d04f63d82f46110d294cd8":[4,0,0,38,103], "classnc_1_1_nd_array.html#af03b916770d04f63d82f46110d294cd8":[5,0,0,28,103], "classnc_1_1_nd_array.html#af20c6e6b28c08b7c005bf3bf96a8b162":[4,0,0,38,225], @@ -63,18 +61,18 @@ var NAVTREEINDEX6 = "classnc_1_1_nd_array.html#af3b4c48e3328a8dd22eedd27c225aeb5":[4,0,0,38,102], "classnc_1_1_nd_array.html#af6b2581fae90a5c67e87df6a82ea13c5":[5,0,0,28,96], "classnc_1_1_nd_array.html#af6b2581fae90a5c67e87df6a82ea13c5":[4,0,0,38,96], -"classnc_1_1_nd_array.html#af788b0229707ce6291f177e18e7e872d":[5,0,0,28,9], "classnc_1_1_nd_array.html#af788b0229707ce6291f177e18e7e872d":[4,0,0,38,9], -"classnc_1_1_nd_array.html#af8cd2e1b7214c4b8b8b784e1b5265c11":[5,0,0,28,21], +"classnc_1_1_nd_array.html#af788b0229707ce6291f177e18e7e872d":[5,0,0,28,9], "classnc_1_1_nd_array.html#af8cd2e1b7214c4b8b8b784e1b5265c11":[4,0,0,38,21], -"classnc_1_1_nd_array.html#af92a510cd4fb5543e2694b2984c153bb":[4,0,0,38,227], +"classnc_1_1_nd_array.html#af8cd2e1b7214c4b8b8b784e1b5265c11":[5,0,0,28,21], "classnc_1_1_nd_array.html#af92a510cd4fb5543e2694b2984c153bb":[5,0,0,28,227], +"classnc_1_1_nd_array.html#af92a510cd4fb5543e2694b2984c153bb":[4,0,0,38,227], "classnc_1_1_nd_array.html#af9a2b2d7875174c41584f53b87ad16e8":[5,0,0,28,146], "classnc_1_1_nd_array.html#af9a2b2d7875174c41584f53b87ad16e8":[4,0,0,38,146], -"classnc_1_1_nd_array.html#afa2a40b7393c650c7529bfcee3b49dc2":[4,0,0,38,183], "classnc_1_1_nd_array.html#afa2a40b7393c650c7529bfcee3b49dc2":[5,0,0,28,183], -"classnc_1_1_nd_array.html#afcfdb9f8bbbc9f9f920fe35c7af6a8ff":[4,0,0,38,182], +"classnc_1_1_nd_array.html#afa2a40b7393c650c7529bfcee3b49dc2":[4,0,0,38,183], "classnc_1_1_nd_array.html#afcfdb9f8bbbc9f9f920fe35c7af6a8ff":[5,0,0,28,182], +"classnc_1_1_nd_array.html#afcfdb9f8bbbc9f9f920fe35c7af6a8ff":[4,0,0,38,182], "classnc_1_1_nd_array_column_iterator.html":[4,0,0,39], "classnc_1_1_nd_array_column_iterator.html":[5,0,0,29], "classnc_1_1_nd_array_column_iterator.html#a2d8907c8fa0bb7ab27f0d65893de8906":[5,0,0,29,11], @@ -85,58 +83,58 @@ var NAVTREEINDEX6 = "classnc_1_1_nd_array_column_iterator.html#a388ac709c8d2b80c0ed5aa7fbb2047a6":[4,0,0,39,10], "classnc_1_1_nd_array_column_iterator.html#a5dc1514332728850b8fbeaa7d1f8bda0":[4,0,0,39,25], "classnc_1_1_nd_array_column_iterator.html#a5dc1514332728850b8fbeaa7d1f8bda0":[5,0,0,29,25], -"classnc_1_1_nd_array_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70":[4,0,0,39,15], -"classnc_1_1_nd_array_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70":[5,0,0,29,15], -"classnc_1_1_nd_array_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70":[5,0,0,29,14], "classnc_1_1_nd_array_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70":[4,0,0,39,14], -"classnc_1_1_nd_array_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a":[5,0,0,29,12], +"classnc_1_1_nd_array_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70":[5,0,0,29,14], +"classnc_1_1_nd_array_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70":[5,0,0,29,15], +"classnc_1_1_nd_array_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70":[4,0,0,39,15], "classnc_1_1_nd_array_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a":[4,0,0,39,12], +"classnc_1_1_nd_array_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a":[5,0,0,29,12], "classnc_1_1_nd_array_column_iterator.html#a6dda98c1eba18dff31c9a66f528cd72b":[5,0,0,29,13], "classnc_1_1_nd_array_column_iterator.html#a6dda98c1eba18dff31c9a66f528cd72b":[4,0,0,39,13], -"classnc_1_1_nd_array_column_iterator.html#a6e4c3af43aa00d49305bcd50eaa477e1":[5,0,0,29,8], "classnc_1_1_nd_array_column_iterator.html#a6e4c3af43aa00d49305bcd50eaa477e1":[4,0,0,39,8], -"classnc_1_1_nd_array_column_iterator.html#a6f9a636be75554081a33cf5731e3f213":[5,0,0,29,18], +"classnc_1_1_nd_array_column_iterator.html#a6e4c3af43aa00d49305bcd50eaa477e1":[5,0,0,29,8], "classnc_1_1_nd_array_column_iterator.html#a6f9a636be75554081a33cf5731e3f213":[4,0,0,39,18], +"classnc_1_1_nd_array_column_iterator.html#a6f9a636be75554081a33cf5731e3f213":[5,0,0,29,18], "classnc_1_1_nd_array_column_iterator.html#a7191b7c13b188f2a0abaf8477f0bd2d4":[4,0,0,39,5], "classnc_1_1_nd_array_column_iterator.html#a7191b7c13b188f2a0abaf8477f0bd2d4":[5,0,0,29,5], -"classnc_1_1_nd_array_column_iterator.html#a827d0a8431ec616ef0161144b3d24af6":[4,0,0,39,23], "classnc_1_1_nd_array_column_iterator.html#a827d0a8431ec616ef0161144b3d24af6":[5,0,0,29,23], +"classnc_1_1_nd_array_column_iterator.html#a827d0a8431ec616ef0161144b3d24af6":[4,0,0,39,23], "classnc_1_1_nd_array_column_iterator.html#a845a41edc124e1c38ccf1940c02e272d":[4,0,0,39,4], "classnc_1_1_nd_array_column_iterator.html#a845a41edc124e1c38ccf1940c02e272d":[5,0,0,29,4], -"classnc_1_1_nd_array_column_iterator.html#a8468d6928d88c7f34d1456261331f238":[5,0,0,29,21], "classnc_1_1_nd_array_column_iterator.html#a8468d6928d88c7f34d1456261331f238":[4,0,0,39,21], -"classnc_1_1_nd_array_column_iterator.html#a8ee7c1ecf2dc107159aec64377f5d6bd":[5,0,0,29,17], +"classnc_1_1_nd_array_column_iterator.html#a8468d6928d88c7f34d1456261331f238":[5,0,0,29,21], "classnc_1_1_nd_array_column_iterator.html#a8ee7c1ecf2dc107159aec64377f5d6bd":[4,0,0,39,17], +"classnc_1_1_nd_array_column_iterator.html#a8ee7c1ecf2dc107159aec64377f5d6bd":[5,0,0,29,17], "classnc_1_1_nd_array_column_iterator.html#a9935c5d4b3deff76207ccde7cfccbf62":[4,0,0,39,24], "classnc_1_1_nd_array_column_iterator.html#a9935c5d4b3deff76207ccde7cfccbf62":[5,0,0,29,24], "classnc_1_1_nd_array_column_iterator.html#a9a112a3ce7f96ddb1464fdaa19a78d0e":[4,0,0,39,9], "classnc_1_1_nd_array_column_iterator.html#a9a112a3ce7f96ddb1464fdaa19a78d0e":[5,0,0,29,9], -"classnc_1_1_nd_array_column_iterator.html#aaccb5a94c10e92de24e5bc465c663305":[5,0,0,29,3], "classnc_1_1_nd_array_column_iterator.html#aaccb5a94c10e92de24e5bc465c663305":[4,0,0,39,3], -"classnc_1_1_nd_array_column_iterator.html#ab0928638c653f5ed37088a3e5098064b":[4,0,0,39,20], +"classnc_1_1_nd_array_column_iterator.html#aaccb5a94c10e92de24e5bc465c663305":[5,0,0,29,3], "classnc_1_1_nd_array_column_iterator.html#ab0928638c653f5ed37088a3e5098064b":[5,0,0,29,20], -"classnc_1_1_nd_array_column_iterator.html#ac8797260f0a82e1d99b23c055d8f7225":[4,0,0,39,16], +"classnc_1_1_nd_array_column_iterator.html#ab0928638c653f5ed37088a3e5098064b":[4,0,0,39,20], "classnc_1_1_nd_array_column_iterator.html#ac8797260f0a82e1d99b23c055d8f7225":[5,0,0,29,16], -"classnc_1_1_nd_array_column_iterator.html#ad7a25b0cb28882ed45417dd3ed01e094":[4,0,0,39,6], +"classnc_1_1_nd_array_column_iterator.html#ac8797260f0a82e1d99b23c055d8f7225":[4,0,0,39,16], "classnc_1_1_nd_array_column_iterator.html#ad7a25b0cb28882ed45417dd3ed01e094":[5,0,0,29,6], +"classnc_1_1_nd_array_column_iterator.html#ad7a25b0cb28882ed45417dd3ed01e094":[4,0,0,39,6], "classnc_1_1_nd_array_column_iterator.html#addc363984d95db8bed56843682372e44":[4,0,0,39,0], "classnc_1_1_nd_array_column_iterator.html#addc363984d95db8bed56843682372e44":[5,0,0,29,0], "classnc_1_1_nd_array_column_iterator.html#ae66efdfa1252f405042276e3e9a25364":[5,0,0,29,19], "classnc_1_1_nd_array_column_iterator.html#ae66efdfa1252f405042276e3e9a25364":[4,0,0,39,19], -"classnc_1_1_nd_array_column_iterator.html#aeb402bf56941dc24138dc9f33845be81":[5,0,0,29,2], "classnc_1_1_nd_array_column_iterator.html#aeb402bf56941dc24138dc9f33845be81":[4,0,0,39,2], +"classnc_1_1_nd_array_column_iterator.html#aeb402bf56941dc24138dc9f33845be81":[5,0,0,29,2], "classnc_1_1_nd_array_column_iterator.html#aec9953c2361595fc656a1a5d306e36c0":[4,0,0,39,22], "classnc_1_1_nd_array_column_iterator.html#aec9953c2361595fc656a1a5d306e36c0":[5,0,0,29,22], -"classnc_1_1_nd_array_column_iterator.html#af387e330729ecde7c09d388915ae346a":[4,0,0,39,7], "classnc_1_1_nd_array_column_iterator.html#af387e330729ecde7c09d388915ae346a":[5,0,0,29,7], +"classnc_1_1_nd_array_column_iterator.html#af387e330729ecde7c09d388915ae346a":[4,0,0,39,7], "classnc_1_1_nd_array_const_column_iterator.html":[4,0,0,40], "classnc_1_1_nd_array_const_column_iterator.html":[5,0,0,30], "classnc_1_1_nd_array_const_column_iterator.html#a0375a9e5bb7a8e268d80da41186d58a4":[5,0,0,30,10], "classnc_1_1_nd_array_const_column_iterator.html#a0375a9e5bb7a8e268d80da41186d58a4":[4,0,0,40,10], "classnc_1_1_nd_array_const_column_iterator.html#a30db4bce42247607b3bcb0cf37cb15c6":[5,0,0,30,13], "classnc_1_1_nd_array_const_column_iterator.html#a30db4bce42247607b3bcb0cf37cb15c6":[4,0,0,40,13], -"classnc_1_1_nd_array_const_column_iterator.html#a33d2e58d269f938c742ac25f46edf008":[5,0,0,30,19], "classnc_1_1_nd_array_const_column_iterator.html#a33d2e58d269f938c742ac25f46edf008":[4,0,0,40,19], +"classnc_1_1_nd_array_const_column_iterator.html#a33d2e58d269f938c742ac25f46edf008":[5,0,0,30,19], "classnc_1_1_nd_array_const_column_iterator.html#a3a37dd5a1496ecf2249950325b0a388c":[4,0,0,40,25], "classnc_1_1_nd_array_const_column_iterator.html#a3a37dd5a1496ecf2249950325b0a388c":[5,0,0,30,25], "classnc_1_1_nd_array_const_column_iterator.html#a3b124e1120c2fb329dcb5d81abe39e1d":[5,0,0,30,5], @@ -145,28 +143,28 @@ var NAVTREEINDEX6 = "classnc_1_1_nd_array_const_column_iterator.html#a3c779a77e6a0920d8fc799931feb3c3d":[4,0,0,40,6], "classnc_1_1_nd_array_const_column_iterator.html#a3ed61bf2a830e89fd8fbbb6efc2e7171":[5,0,0,30,1], "classnc_1_1_nd_array_const_column_iterator.html#a3ed61bf2a830e89fd8fbbb6efc2e7171":[4,0,0,40,1], -"classnc_1_1_nd_array_const_column_iterator.html#a4070d7ef2c99fec46a8df015769f58b6":[4,0,0,40,2], "classnc_1_1_nd_array_const_column_iterator.html#a4070d7ef2c99fec46a8df015769f58b6":[5,0,0,30,2], +"classnc_1_1_nd_array_const_column_iterator.html#a4070d7ef2c99fec46a8df015769f58b6":[4,0,0,40,2], "classnc_1_1_nd_array_const_column_iterator.html#a4fff9a27b579e813b2e813b08ba1cd60":[4,0,0,40,18], "classnc_1_1_nd_array_const_column_iterator.html#a4fff9a27b579e813b2e813b08ba1cd60":[5,0,0,30,18], -"classnc_1_1_nd_array_const_column_iterator.html#a5fea275f4afdd1fca5b59830ce182bff":[4,0,0,40,17], "classnc_1_1_nd_array_const_column_iterator.html#a5fea275f4afdd1fca5b59830ce182bff":[5,0,0,30,17], -"classnc_1_1_nd_array_const_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70":[4,0,0,40,15], +"classnc_1_1_nd_array_const_column_iterator.html#a5fea275f4afdd1fca5b59830ce182bff":[4,0,0,40,17], "classnc_1_1_nd_array_const_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70":[5,0,0,30,15], +"classnc_1_1_nd_array_const_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70":[4,0,0,40,15], "classnc_1_1_nd_array_const_column_iterator.html#a6903047bac2424843ca26ed9116abb77":[4,0,0,40,3], "classnc_1_1_nd_array_const_column_iterator.html#a6903047bac2424843ca26ed9116abb77":[5,0,0,30,3], "classnc_1_1_nd_array_const_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a":[5,0,0,30,14], "classnc_1_1_nd_array_const_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a":[4,0,0,40,14], -"classnc_1_1_nd_array_const_column_iterator.html#a7418b1d0de7763928fa03c399bbc645a":[5,0,0,30,16], "classnc_1_1_nd_array_const_column_iterator.html#a7418b1d0de7763928fa03c399bbc645a":[4,0,0,40,16], +"classnc_1_1_nd_array_const_column_iterator.html#a7418b1d0de7763928fa03c399bbc645a":[5,0,0,30,16], "classnc_1_1_nd_array_const_column_iterator.html#a827d0a8431ec616ef0161144b3d24af6":[5,0,0,30,23], "classnc_1_1_nd_array_const_column_iterator.html#a827d0a8431ec616ef0161144b3d24af6":[4,0,0,40,23], "classnc_1_1_nd_array_const_column_iterator.html#a82ded30f6199ce6c9f3630b28e971650":[5,0,0,30,12], "classnc_1_1_nd_array_const_column_iterator.html#a82ded30f6199ce6c9f3630b28e971650":[4,0,0,40,12], -"classnc_1_1_nd_array_const_column_iterator.html#a8468d6928d88c7f34d1456261331f238":[5,0,0,30,21], "classnc_1_1_nd_array_const_column_iterator.html#a8468d6928d88c7f34d1456261331f238":[4,0,0,40,21], -"classnc_1_1_nd_array_const_column_iterator.html#a9935c5d4b3deff76207ccde7cfccbf62":[5,0,0,30,24], +"classnc_1_1_nd_array_const_column_iterator.html#a8468d6928d88c7f34d1456261331f238":[5,0,0,30,21], "classnc_1_1_nd_array_const_column_iterator.html#a9935c5d4b3deff76207ccde7cfccbf62":[4,0,0,40,24], +"classnc_1_1_nd_array_const_column_iterator.html#a9935c5d4b3deff76207ccde7cfccbf62":[5,0,0,30,24], "classnc_1_1_nd_array_const_column_iterator.html#a99d31459bd356031b795095a38366706":[5,0,0,30,4], "classnc_1_1_nd_array_const_column_iterator.html#a99d31459bd356031b795095a38366706":[4,0,0,40,4], "classnc_1_1_nd_array_const_column_iterator.html#aa588ebd75eb475c7a87e391454ef04b4":[4,0,0,40,11], @@ -175,8 +173,8 @@ var NAVTREEINDEX6 = "classnc_1_1_nd_array_const_column_iterator.html#ab0928638c653f5ed37088a3e5098064b":[5,0,0,30,20], "classnc_1_1_nd_array_const_column_iterator.html#ac096213e50279dc023bbf6270c31969a":[5,0,0,30,9], "classnc_1_1_nd_array_const_column_iterator.html#ac096213e50279dc023bbf6270c31969a":[4,0,0,40,9], -"classnc_1_1_nd_array_const_column_iterator.html#ad4e9c4a6df66608a4d6ea6e7608337ce":[5,0,0,30,0], "classnc_1_1_nd_array_const_column_iterator.html#ad4e9c4a6df66608a4d6ea6e7608337ce":[4,0,0,40,0], +"classnc_1_1_nd_array_const_column_iterator.html#ad4e9c4a6df66608a4d6ea6e7608337ce":[5,0,0,30,0], "classnc_1_1_nd_array_const_column_iterator.html#ad7a25b0cb28882ed45417dd3ed01e094":[5,0,0,30,8], "classnc_1_1_nd_array_const_column_iterator.html#ad7a25b0cb28882ed45417dd3ed01e094":[4,0,0,40,8], "classnc_1_1_nd_array_const_column_iterator.html#aec9953c2361595fc656a1a5d306e36c0":[4,0,0,40,22], @@ -187,48 +185,48 @@ var NAVTREEINDEX6 = "classnc_1_1_nd_array_const_iterator.html":[5,0,0,31], "classnc_1_1_nd_array_const_iterator.html#a06871d8ba079130e84a892995c07a49a":[5,0,0,31,23], "classnc_1_1_nd_array_const_iterator.html#a06871d8ba079130e84a892995c07a49a":[4,0,0,41,23], -"classnc_1_1_nd_array_const_iterator.html#a0f9bd08a86ecb08a9b4e11f0e480ef16":[5,0,0,31,12], "classnc_1_1_nd_array_const_iterator.html#a0f9bd08a86ecb08a9b4e11f0e480ef16":[4,0,0,41,12], +"classnc_1_1_nd_array_const_iterator.html#a0f9bd08a86ecb08a9b4e11f0e480ef16":[5,0,0,31,12], "classnc_1_1_nd_array_const_iterator.html#a142ece3b5c55cc247583dffead1f8f5c":[4,0,0,41,15], "classnc_1_1_nd_array_const_iterator.html#a142ece3b5c55cc247583dffead1f8f5c":[5,0,0,31,15], -"classnc_1_1_nd_array_const_iterator.html#a16aa191e5615d641693ff077b56771ad":[4,0,0,41,0], "classnc_1_1_nd_array_const_iterator.html#a16aa191e5615d641693ff077b56771ad":[5,0,0,31,0], +"classnc_1_1_nd_array_const_iterator.html#a16aa191e5615d641693ff077b56771ad":[4,0,0,41,0], "classnc_1_1_nd_array_const_iterator.html#a171276f9e90a1336d156c61c2b61bd23":[4,0,0,41,20], "classnc_1_1_nd_array_const_iterator.html#a171276f9e90a1336d156c61c2b61bd23":[5,0,0,31,20], -"classnc_1_1_nd_array_const_iterator.html#a17535e5dcb696923adaa626c86cc3c00":[4,0,0,41,1], "classnc_1_1_nd_array_const_iterator.html#a17535e5dcb696923adaa626c86cc3c00":[5,0,0,31,1], -"classnc_1_1_nd_array_const_iterator.html#a33f143dc3e50a109e4b0a6f9d324bd69":[4,0,0,41,10], +"classnc_1_1_nd_array_const_iterator.html#a17535e5dcb696923adaa626c86cc3c00":[4,0,0,41,1], "classnc_1_1_nd_array_const_iterator.html#a33f143dc3e50a109e4b0a6f9d324bd69":[5,0,0,31,10], +"classnc_1_1_nd_array_const_iterator.html#a33f143dc3e50a109e4b0a6f9d324bd69":[4,0,0,41,10], "classnc_1_1_nd_array_const_iterator.html#a36aee44e67ed7bdc2fd3ca660e1748fa":[4,0,0,41,18], "classnc_1_1_nd_array_const_iterator.html#a36aee44e67ed7bdc2fd3ca660e1748fa":[5,0,0,31,18], "classnc_1_1_nd_array_const_iterator.html#a3d40f842cc5345a8f8051ae6bdebe321":[5,0,0,31,11], "classnc_1_1_nd_array_const_iterator.html#a3d40f842cc5345a8f8051ae6bdebe321":[4,0,0,41,11], -"classnc_1_1_nd_array_const_iterator.html#a47936ba0f04dbcad7ab4e239bfb7da03":[4,0,0,41,2], "classnc_1_1_nd_array_const_iterator.html#a47936ba0f04dbcad7ab4e239bfb7da03":[5,0,0,31,2], -"classnc_1_1_nd_array_const_iterator.html#a4eaa70b83644e14dbfeccbc227408b63":[4,0,0,41,13], +"classnc_1_1_nd_array_const_iterator.html#a47936ba0f04dbcad7ab4e239bfb7da03":[4,0,0,41,2], "classnc_1_1_nd_array_const_iterator.html#a4eaa70b83644e14dbfeccbc227408b63":[5,0,0,31,13], +"classnc_1_1_nd_array_const_iterator.html#a4eaa70b83644e14dbfeccbc227408b63":[4,0,0,41,13], "classnc_1_1_nd_array_const_iterator.html#a518e77992a6b8710c2d43734a84f2006":[5,0,0,31,5], "classnc_1_1_nd_array_const_iterator.html#a518e77992a6b8710c2d43734a84f2006":[4,0,0,41,5], -"classnc_1_1_nd_array_const_iterator.html#a526a13c16c0ef08b005f67184f80087a":[4,0,0,41,16], "classnc_1_1_nd_array_const_iterator.html#a526a13c16c0ef08b005f67184f80087a":[5,0,0,31,16], -"classnc_1_1_nd_array_const_iterator.html#a55064001ba08765b1e97962ca82a91cd":[5,0,0,31,9], +"classnc_1_1_nd_array_const_iterator.html#a526a13c16c0ef08b005f67184f80087a":[4,0,0,41,16], "classnc_1_1_nd_array_const_iterator.html#a55064001ba08765b1e97962ca82a91cd":[4,0,0,41,9], +"classnc_1_1_nd_array_const_iterator.html#a55064001ba08765b1e97962ca82a91cd":[5,0,0,31,9], "classnc_1_1_nd_array_const_iterator.html#a6ae3aca3c7cb79a9fd985c1820b74c39":[5,0,0,31,19], "classnc_1_1_nd_array_const_iterator.html#a6ae3aca3c7cb79a9fd985c1820b74c39":[4,0,0,41,19], "classnc_1_1_nd_array_const_iterator.html#a83ee672f75e74c4421a25a7816be12c6":[5,0,0,31,24], "classnc_1_1_nd_array_const_iterator.html#a83ee672f75e74c4421a25a7816be12c6":[4,0,0,41,24], -"classnc_1_1_nd_array_const_iterator.html#a8a312e1809eae90df625971d6b4ab62e":[5,0,0,31,22], "classnc_1_1_nd_array_const_iterator.html#a8a312e1809eae90df625971d6b4ab62e":[4,0,0,41,22], -"classnc_1_1_nd_array_const_iterator.html#a8d895f9031c660642a9240f3f652dea9":[5,0,0,31,17], +"classnc_1_1_nd_array_const_iterator.html#a8a312e1809eae90df625971d6b4ab62e":[5,0,0,31,22], "classnc_1_1_nd_array_const_iterator.html#a8d895f9031c660642a9240f3f652dea9":[4,0,0,41,17], +"classnc_1_1_nd_array_const_iterator.html#a8d895f9031c660642a9240f3f652dea9":[5,0,0,31,17], "classnc_1_1_nd_array_const_iterator.html#a96a196ff02ef70fe942c36afcb402f67":[5,0,0,31,7], "classnc_1_1_nd_array_const_iterator.html#a96a196ff02ef70fe942c36afcb402f67":[4,0,0,41,7], -"classnc_1_1_nd_array_const_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e":[4,0,0,41,14], "classnc_1_1_nd_array_const_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e":[5,0,0,31,14], -"classnc_1_1_nd_array_const_iterator.html#aa6cc88251b49d869162e8772186f4892":[5,0,0,31,6], +"classnc_1_1_nd_array_const_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e":[4,0,0,41,14], "classnc_1_1_nd_array_const_iterator.html#aa6cc88251b49d869162e8772186f4892":[4,0,0,41,6], -"classnc_1_1_nd_array_const_iterator.html#aba1912cb4e7cc39898af1ea385847544":[5,0,0,31,3], +"classnc_1_1_nd_array_const_iterator.html#aa6cc88251b49d869162e8772186f4892":[5,0,0,31,6], "classnc_1_1_nd_array_const_iterator.html#aba1912cb4e7cc39898af1ea385847544":[4,0,0,41,3], +"classnc_1_1_nd_array_const_iterator.html#aba1912cb4e7cc39898af1ea385847544":[5,0,0,31,3], "classnc_1_1_nd_array_const_iterator.html#ac055ccace7f791cfb94d7df8e7100dc2":[5,0,0,31,21], "classnc_1_1_nd_array_const_iterator.html#ac055ccace7f791cfb94d7df8e7100dc2":[4,0,0,41,21], "classnc_1_1_nd_array_const_iterator.html#ad4ce15f95730d8c089db4f2a26b91090":[5,0,0,31,8], @@ -239,8 +237,8 @@ var NAVTREEINDEX6 = "classnc_1_1_nd_array_iterator.html":[4,0,0,42], "classnc_1_1_nd_array_iterator.html#a06871d8ba079130e84a892995c07a49a":[5,0,0,32,23], "classnc_1_1_nd_array_iterator.html#a06871d8ba079130e84a892995c07a49a":[4,0,0,42,23], -"classnc_1_1_nd_array_iterator.html#a0782b66e4d3632cd4ce99333fe86d0a3":[5,0,0,32,3], "classnc_1_1_nd_array_iterator.html#a0782b66e4d3632cd4ce99333fe86d0a3":[4,0,0,42,3], +"classnc_1_1_nd_array_iterator.html#a0782b66e4d3632cd4ce99333fe86d0a3":[5,0,0,32,3], "classnc_1_1_nd_array_iterator.html#a171276f9e90a1336d156c61c2b61bd23":[5,0,0,32,20], "classnc_1_1_nd_array_iterator.html#a171276f9e90a1336d156c61c2b61bd23":[4,0,0,42,20], "classnc_1_1_nd_array_iterator.html#a350b5406b062642ed48d6c3d9d2ce4b9":[5,0,0,32,9], @@ -249,5 +247,7 @@ var NAVTREEINDEX6 = "classnc_1_1_nd_array_iterator.html#a40c132f8a7c1dd9fde17bcd3ddc2a18f":[4,0,0,42,24], "classnc_1_1_nd_array_iterator.html#a4eaa70b83644e14dbfeccbc227408b63":[4,0,0,42,11], "classnc_1_1_nd_array_iterator.html#a4eaa70b83644e14dbfeccbc227408b63":[5,0,0,32,11], -"classnc_1_1_nd_array_iterator.html#a60d5e768fcd13cedd43febeb28148aea":[5,0,0,32,2] +"classnc_1_1_nd_array_iterator.html#a60d5e768fcd13cedd43febeb28148aea":[4,0,0,42,2], +"classnc_1_1_nd_array_iterator.html#a60d5e768fcd13cedd43febeb28148aea":[5,0,0,32,2], +"classnc_1_1_nd_array_iterator.html#a6ae3aca3c7cb79a9fd985c1820b74c39":[5,0,0,32,19] }; diff --git a/docs/doxygen/html/navtreeindex7.js b/docs/doxygen/html/navtreeindex7.js index ab60e63e6..cc55c08e0 100644 --- a/docs/doxygen/html/navtreeindex7.js +++ b/docs/doxygen/html/navtreeindex7.js @@ -1,136 +1,134 @@ var NAVTREEINDEX7 = { -"classnc_1_1_nd_array_iterator.html#a60d5e768fcd13cedd43febeb28148aea":[4,0,0,42,2], "classnc_1_1_nd_array_iterator.html#a6ae3aca3c7cb79a9fd985c1820b74c39":[4,0,0,42,19], -"classnc_1_1_nd_array_iterator.html#a6ae3aca3c7cb79a9fd985c1820b74c39":[5,0,0,32,19], "classnc_1_1_nd_array_iterator.html#a74c9e172db672364ea491acc0f329b0a":[4,0,0,42,15], "classnc_1_1_nd_array_iterator.html#a74c9e172db672364ea491acc0f329b0a":[5,0,0,32,15], -"classnc_1_1_nd_array_iterator.html#a7b2c0794eac54ab2c3847776a8383283":[5,0,0,32,1], "classnc_1_1_nd_array_iterator.html#a7b2c0794eac54ab2c3847776a8383283":[4,0,0,42,1], +"classnc_1_1_nd_array_iterator.html#a7b2c0794eac54ab2c3847776a8383283":[5,0,0,32,1], "classnc_1_1_nd_array_iterator.html#a84b30433fef5a51953c2283398e232c1":[4,0,0,42,10], "classnc_1_1_nd_array_iterator.html#a84b30433fef5a51953c2283398e232c1":[5,0,0,32,10], -"classnc_1_1_nd_array_iterator.html#a871a849294da1c7e7b99250008471138":[4,0,0,42,0], "classnc_1_1_nd_array_iterator.html#a871a849294da1c7e7b99250008471138":[5,0,0,32,0], -"classnc_1_1_nd_array_iterator.html#a8a312e1809eae90df625971d6b4ab62e":[4,0,0,42,22], +"classnc_1_1_nd_array_iterator.html#a871a849294da1c7e7b99250008471138":[4,0,0,42,0], "classnc_1_1_nd_array_iterator.html#a8a312e1809eae90df625971d6b4ab62e":[5,0,0,32,22], +"classnc_1_1_nd_array_iterator.html#a8a312e1809eae90df625971d6b4ab62e":[4,0,0,42,22], "classnc_1_1_nd_array_iterator.html#a8bb1505ab1105805bd3ced24b69d17eb":[5,0,0,32,12], "classnc_1_1_nd_array_iterator.html#a8bb1505ab1105805bd3ced24b69d17eb":[4,0,0,42,12], "classnc_1_1_nd_array_iterator.html#a96a196ff02ef70fe942c36afcb402f67":[4,0,0,42,5], "classnc_1_1_nd_array_iterator.html#a96a196ff02ef70fe942c36afcb402f67":[5,0,0,32,5], -"classnc_1_1_nd_array_iterator.html#aa1627ff7d2b0089222794bfebaa29a32":[4,0,0,42,18], "classnc_1_1_nd_array_iterator.html#aa1627ff7d2b0089222794bfebaa29a32":[5,0,0,32,18], +"classnc_1_1_nd_array_iterator.html#aa1627ff7d2b0089222794bfebaa29a32":[4,0,0,42,18], +"classnc_1_1_nd_array_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e":[5,0,0,32,14], +"classnc_1_1_nd_array_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e":[4,0,0,42,13], "classnc_1_1_nd_array_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e":[5,0,0,32,13], "classnc_1_1_nd_array_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e":[4,0,0,42,14], -"classnc_1_1_nd_array_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e":[4,0,0,42,13], -"classnc_1_1_nd_array_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e":[5,0,0,32,14], "classnc_1_1_nd_array_iterator.html#ab26263e7aa624ed5dd5b0140f2adccb7":[4,0,0,42,7], "classnc_1_1_nd_array_iterator.html#ab26263e7aa624ed5dd5b0140f2adccb7":[5,0,0,32,7], -"classnc_1_1_nd_array_iterator.html#ac055ccace7f791cfb94d7df8e7100dc2":[5,0,0,32,21], "classnc_1_1_nd_array_iterator.html#ac055ccace7f791cfb94d7df8e7100dc2":[4,0,0,42,21], +"classnc_1_1_nd_array_iterator.html#ac055ccace7f791cfb94d7df8e7100dc2":[5,0,0,32,21], "classnc_1_1_nd_array_iterator.html#adcd3b9918db13467bcd234e6f3eec61f":[5,0,0,32,16], "classnc_1_1_nd_array_iterator.html#adcd3b9918db13467bcd234e6f3eec61f":[4,0,0,42,16], "classnc_1_1_nd_array_iterator.html#adeb90525f10a8bf2748dafbb2ea154dc":[5,0,0,32,4], "classnc_1_1_nd_array_iterator.html#adeb90525f10a8bf2748dafbb2ea154dc":[4,0,0,42,4], "classnc_1_1_nd_array_iterator.html#adebdc7da2da4ef999123cc95f87b2ecc":[5,0,0,32,17], "classnc_1_1_nd_array_iterator.html#adebdc7da2da4ef999123cc95f87b2ecc":[4,0,0,42,17], -"classnc_1_1_nd_array_iterator.html#ae1e918bc6718fe1ffa58f7c6a82fbe30":[4,0,0,42,6], "classnc_1_1_nd_array_iterator.html#ae1e918bc6718fe1ffa58f7c6a82fbe30":[5,0,0,32,6], +"classnc_1_1_nd_array_iterator.html#ae1e918bc6718fe1ffa58f7c6a82fbe30":[4,0,0,42,6], "classnc_1_1_nd_array_iterator.html#af685687e69ea0bd9422b0cb978dbf07c":[4,0,0,42,8], "classnc_1_1_nd_array_iterator.html#af685687e69ea0bd9422b0cb978dbf07c":[5,0,0,32,8], "classnc_1_1_shape.html":[4,0,0,43], "classnc_1_1_shape.html":[5,0,0,33], "classnc_1_1_shape.html#a0267d8b7eb226fdc442be5c914f9c870":[4,0,0,43,6], "classnc_1_1_shape.html#a0267d8b7eb226fdc442be5c914f9c870":[5,0,0,33,6], -"classnc_1_1_shape.html#a0dad002019e83f04ff5b0541ca5e60d7":[5,0,0,33,10], "classnc_1_1_shape.html#a0dad002019e83f04ff5b0541ca5e60d7":[4,0,0,43,10], -"classnc_1_1_shape.html#a0f41587a1b8f1c2b65035adc49705eec":[5,0,0,33,0], +"classnc_1_1_shape.html#a0dad002019e83f04ff5b0541ca5e60d7":[5,0,0,33,10], "classnc_1_1_shape.html#a0f41587a1b8f1c2b65035adc49705eec":[4,0,0,43,0], -"classnc_1_1_shape.html#a3c8d187f677e9a4cdbdf1906d612b596":[4,0,0,43,3], +"classnc_1_1_shape.html#a0f41587a1b8f1c2b65035adc49705eec":[5,0,0,33,0], "classnc_1_1_shape.html#a3c8d187f677e9a4cdbdf1906d612b596":[5,0,0,33,3], -"classnc_1_1_shape.html#a494a3d8467911c47d56aa881e11a69f1":[4,0,0,43,7], +"classnc_1_1_shape.html#a3c8d187f677e9a4cdbdf1906d612b596":[4,0,0,43,3], "classnc_1_1_shape.html#a494a3d8467911c47d56aa881e11a69f1":[5,0,0,33,7], -"classnc_1_1_shape.html#a4b2cd200804257d9c53084f14fb38e31":[5,0,0,33,2], +"classnc_1_1_shape.html#a494a3d8467911c47d56aa881e11a69f1":[4,0,0,43,7], "classnc_1_1_shape.html#a4b2cd200804257d9c53084f14fb38e31":[4,0,0,43,2], +"classnc_1_1_shape.html#a4b2cd200804257d9c53084f14fb38e31":[5,0,0,33,2], "classnc_1_1_shape.html#a56c44db7af73bc585c83e094da8996b5":[4,0,0,43,5], "classnc_1_1_shape.html#a56c44db7af73bc585c83e094da8996b5":[5,0,0,33,5], -"classnc_1_1_shape.html#a6e870e9fda60c8e82996802fcb71490a":[5,0,0,33,1], "classnc_1_1_shape.html#a6e870e9fda60c8e82996802fcb71490a":[4,0,0,43,1], +"classnc_1_1_shape.html#a6e870e9fda60c8e82996802fcb71490a":[5,0,0,33,1], "classnc_1_1_shape.html#a6f89f699dea6eb89eef19e00c92b223a":[4,0,0,43,12], "classnc_1_1_shape.html#a6f89f699dea6eb89eef19e00c92b223a":[5,0,0,33,12], -"classnc_1_1_shape.html#a939dd0ab6edf83b7abaf8b8c93a99152":[4,0,0,43,4], "classnc_1_1_shape.html#a939dd0ab6edf83b7abaf8b8c93a99152":[5,0,0,33,4], +"classnc_1_1_shape.html#a939dd0ab6edf83b7abaf8b8c93a99152":[4,0,0,43,4], "classnc_1_1_shape.html#aadb0e0d633d64e5eb5a4f9bef12b26c4":[5,0,0,33,9], "classnc_1_1_shape.html#aadb0e0d633d64e5eb5a4f9bef12b26c4":[4,0,0,43,9], "classnc_1_1_shape.html#aae1a3c997648aacaefb60d0e6d0bf10d":[4,0,0,43,11], "classnc_1_1_shape.html#aae1a3c997648aacaefb60d0e6d0bf10d":[5,0,0,33,11], -"classnc_1_1_shape.html#ab29f87cc8479a2d0610a918cd9b08bbc":[4,0,0,43,8], "classnc_1_1_shape.html#ab29f87cc8479a2d0610a918cd9b08bbc":[5,0,0,33,8], -"classnc_1_1_slice.html":[5,0,0,34], +"classnc_1_1_shape.html#ab29f87cc8479a2d0610a918cd9b08bbc":[4,0,0,43,8], "classnc_1_1_slice.html":[4,0,0,44], -"classnc_1_1_slice.html#a112855a11aa1737b7859e3d63feb09c4":[5,0,0,34,13], +"classnc_1_1_slice.html":[5,0,0,34], "classnc_1_1_slice.html#a112855a11aa1737b7859e3d63feb09c4":[4,0,0,44,13], +"classnc_1_1_slice.html#a112855a11aa1737b7859e3d63feb09c4":[5,0,0,34,13], "classnc_1_1_slice.html#a24c1eb77b94d3120bb02868cc965c058":[5,0,0,34,8], "classnc_1_1_slice.html#a24c1eb77b94d3120bb02868cc965c058":[4,0,0,44,8], "classnc_1_1_slice.html#a31124d5f9e890f57cffb70f2f58260ad":[5,0,0,34,10], "classnc_1_1_slice.html#a31124d5f9e890f57cffb70f2f58260ad":[4,0,0,44,10], "classnc_1_1_slice.html#a36ddb261d9057db4a9794b4fc46e9d3f":[5,0,0,34,12], "classnc_1_1_slice.html#a36ddb261d9057db4a9794b4fc46e9d3f":[4,0,0,44,12], -"classnc_1_1_slice.html#a4d518d51dad679d9a9c6938b065e38f8":[4,0,0,44,4], "classnc_1_1_slice.html#a4d518d51dad679d9a9c6938b065e38f8":[5,0,0,34,4], +"classnc_1_1_slice.html#a4d518d51dad679d9a9c6938b065e38f8":[4,0,0,44,4], "classnc_1_1_slice.html#a769815d8fbb98ba34101c18a21efbbf5":[5,0,0,34,7], "classnc_1_1_slice.html#a769815d8fbb98ba34101c18a21efbbf5":[4,0,0,44,7], -"classnc_1_1_slice.html#a77a83fabc556cff12223e57f4a490d7b":[5,0,0,34,11], "classnc_1_1_slice.html#a77a83fabc556cff12223e57f4a490d7b":[4,0,0,44,11], +"classnc_1_1_slice.html#a77a83fabc556cff12223e57f4a490d7b":[5,0,0,34,11], "classnc_1_1_slice.html#a91177c7ea9b87318232b8d916a487d38":[5,0,0,34,3], "classnc_1_1_slice.html#a91177c7ea9b87318232b8d916a487d38":[4,0,0,44,3], "classnc_1_1_slice.html#aa54f0fae63ece8ff87455e2192d8f336":[5,0,0,34,1], "classnc_1_1_slice.html#aa54f0fae63ece8ff87455e2192d8f336":[4,0,0,44,1], "classnc_1_1_slice.html#aab35be40c38521a4bd9b3c99b3d33731":[4,0,0,44,5], "classnc_1_1_slice.html#aab35be40c38521a4bd9b3c99b3d33731":[5,0,0,34,5], -"classnc_1_1_slice.html#aba1f6c8193f0a61a3f5711edd58aeba1":[5,0,0,34,2], "classnc_1_1_slice.html#aba1f6c8193f0a61a3f5711edd58aeba1":[4,0,0,44,2], -"classnc_1_1_slice.html#ac2d72f4ca003ed645bc82efcafee87f5":[4,0,0,44,14], +"classnc_1_1_slice.html#aba1f6c8193f0a61a3f5711edd58aeba1":[5,0,0,34,2], "classnc_1_1_slice.html#ac2d72f4ca003ed645bc82efcafee87f5":[5,0,0,34,14], +"classnc_1_1_slice.html#ac2d72f4ca003ed645bc82efcafee87f5":[4,0,0,44,14], "classnc_1_1_slice.html#aeb2a7e0854fa82d97a48a5ef402d6e7c":[5,0,0,34,0], "classnc_1_1_slice.html#aeb2a7e0854fa82d97a48a5ef402d6e7c":[4,0,0,44,0], -"classnc_1_1_slice.html#af8bc3bb19b48fd09c769fd1fa9860ed5":[4,0,0,44,9], "classnc_1_1_slice.html#af8bc3bb19b48fd09c769fd1fa9860ed5":[5,0,0,34,9], -"classnc_1_1_slice.html#afd66bc2d5f975f986e62230b124ae607":[4,0,0,44,6], +"classnc_1_1_slice.html#af8bc3bb19b48fd09c769fd1fa9860ed5":[4,0,0,44,9], "classnc_1_1_slice.html#afd66bc2d5f975f986e62230b124ae607":[5,0,0,34,6], -"classnc_1_1_timer.html":[4,0,0,45], +"classnc_1_1_slice.html#afd66bc2d5f975f986e62230b124ae607":[4,0,0,44,6], "classnc_1_1_timer.html":[5,0,0,35], -"classnc_1_1_timer.html#a29e54a50e709622942a33e70b1b1e8f6":[5,0,0,35,1], +"classnc_1_1_timer.html":[4,0,0,45], "classnc_1_1_timer.html#a29e54a50e709622942a33e70b1b1e8f6":[4,0,0,45,1], -"classnc_1_1_timer.html#a487dc937258d9ddfd9fd1ab181af84b2":[5,0,0,35,0], +"classnc_1_1_timer.html#a29e54a50e709622942a33e70b1b1e8f6":[5,0,0,35,1], "classnc_1_1_timer.html#a487dc937258d9ddfd9fd1ab181af84b2":[4,0,0,45,0], -"classnc_1_1_timer.html#a4a08ec3e6ba7a7979cb9e72d0cf3f2f7":[5,0,0,35,6], +"classnc_1_1_timer.html#a487dc937258d9ddfd9fd1ab181af84b2":[5,0,0,35,0], "classnc_1_1_timer.html#a4a08ec3e6ba7a7979cb9e72d0cf3f2f7":[4,0,0,45,6], +"classnc_1_1_timer.html#a4a08ec3e6ba7a7979cb9e72d0cf3f2f7":[5,0,0,35,6], "classnc_1_1_timer.html#a4ede5d1d2cdf6b97bec93b0954ddb610":[4,0,0,45,3], "classnc_1_1_timer.html#a4ede5d1d2cdf6b97bec93b0954ddb610":[5,0,0,35,3], -"classnc_1_1_timer.html#a5dabfba271b3655326e46c633eabd70e":[4,0,0,45,2], "classnc_1_1_timer.html#a5dabfba271b3655326e46c633eabd70e":[5,0,0,35,2], +"classnc_1_1_timer.html#a5dabfba271b3655326e46c633eabd70e":[4,0,0,45,2], "classnc_1_1_timer.html#a88dd680a63b38ae9989a40878a8fd65b":[4,0,0,45,4], "classnc_1_1_timer.html#a88dd680a63b38ae9989a40878a8fd65b":[5,0,0,35,4], "classnc_1_1_timer.html#a9fec514ed605a11c6e1c321041960d7e":[4,0,0,45,5], "classnc_1_1_timer.html#a9fec514ed605a11c6e1c321041960d7e":[5,0,0,35,5], "classnc_1_1_timer.html#aa332ef676e17c5b424e80c789cb43549":[4,0,0,45,7], "classnc_1_1_timer.html#aa332ef676e17c5b424e80c789cb43549":[5,0,0,35,7], -"classnc_1_1_vec2.html":[5,0,0,36], "classnc_1_1_vec2.html":[4,0,0,46], +"classnc_1_1_vec2.html":[5,0,0,36], "classnc_1_1_vec2.html#a231781cc06b8f005a1dda5003498ec99":[4,0,0,46,7], "classnc_1_1_vec2.html#a231781cc06b8f005a1dda5003498ec99":[5,0,0,36,7], -"classnc_1_1_vec2.html#a265ae124776dd84b657c4ff6d7677352":[5,0,0,36,8], "classnc_1_1_vec2.html#a265ae124776dd84b657c4ff6d7677352":[4,0,0,46,8], -"classnc_1_1_vec2.html#a271ca2cae96a1df44486fbcc2c0f890f":[5,0,0,36,4], +"classnc_1_1_vec2.html#a265ae124776dd84b657c4ff6d7677352":[5,0,0,36,8], "classnc_1_1_vec2.html#a271ca2cae96a1df44486fbcc2c0f890f":[4,0,0,46,4], -"classnc_1_1_vec2.html#a36a67b9395b397e1b8e9364a39a5c458":[5,0,0,36,26], +"classnc_1_1_vec2.html#a271ca2cae96a1df44486fbcc2c0f890f":[5,0,0,36,4], "classnc_1_1_vec2.html#a36a67b9395b397e1b8e9364a39a5c458":[4,0,0,46,26], +"classnc_1_1_vec2.html#a36a67b9395b397e1b8e9364a39a5c458":[5,0,0,36,26], "classnc_1_1_vec2.html#a413f3187404863057431193ce3c484e2":[5,0,0,36,14], "classnc_1_1_vec2.html#a413f3187404863057431193ce3c484e2":[4,0,0,46,14], -"classnc_1_1_vec2.html#a621825c553f32ebd38de7d0ee1976afe":[4,0,0,46,19], "classnc_1_1_vec2.html#a621825c553f32ebd38de7d0ee1976afe":[5,0,0,36,19], -"classnc_1_1_vec2.html#a63c2b2b7a16828af770d38176b6cb3aa":[4,0,0,46,6], +"classnc_1_1_vec2.html#a621825c553f32ebd38de7d0ee1976afe":[4,0,0,46,19], "classnc_1_1_vec2.html#a63c2b2b7a16828af770d38176b6cb3aa":[5,0,0,36,6], +"classnc_1_1_vec2.html#a63c2b2b7a16828af770d38176b6cb3aa":[4,0,0,46,6], "classnc_1_1_vec2.html#a70319477093aef7c4c9584fb79b90a5e":[4,0,0,46,17], "classnc_1_1_vec2.html#a70319477093aef7c4c9584fb79b90a5e":[5,0,0,36,17], "classnc_1_1_vec2.html#a82fc65cffdae5c0ebd50fece54b56d4c":[5,0,0,36,25], @@ -139,108 +137,108 @@ var NAVTREEINDEX7 = "classnc_1_1_vec2.html#a8d8a3ec28ef8336ab02dcd964a3e836c":[5,0,0,36,12], "classnc_1_1_vec2.html#a91e6417e5b9903ed6bee3ad90c0c38f4":[4,0,0,46,10], "classnc_1_1_vec2.html#a91e6417e5b9903ed6bee3ad90c0c38f4":[5,0,0,36,10], -"classnc_1_1_vec2.html#a93a9f0c675265005a60c77179625ddd2":[4,0,0,46,3], "classnc_1_1_vec2.html#a93a9f0c675265005a60c77179625ddd2":[5,0,0,36,3], -"classnc_1_1_vec2.html#a957e3126f8e0d867de0554daaefb20da":[4,0,0,46,18], +"classnc_1_1_vec2.html#a93a9f0c675265005a60c77179625ddd2":[4,0,0,46,3], "classnc_1_1_vec2.html#a957e3126f8e0d867de0554daaefb20da":[5,0,0,36,18], +"classnc_1_1_vec2.html#a957e3126f8e0d867de0554daaefb20da":[4,0,0,46,18], "classnc_1_1_vec2.html#aa5cb2f954360d7be97c443da16694383":[4,0,0,46,21], "classnc_1_1_vec2.html#aa5cb2f954360d7be97c443da16694383":[5,0,0,36,21], -"classnc_1_1_vec2.html#ab6922f6c089b20e9d019301fddc6dc0a":[5,0,0,36,11], "classnc_1_1_vec2.html#ab6922f6c089b20e9d019301fddc6dc0a":[4,0,0,46,11], -"classnc_1_1_vec2.html#ab84fdd231058aa0343e2249e209855bf":[4,0,0,46,22], +"classnc_1_1_vec2.html#ab6922f6c089b20e9d019301fddc6dc0a":[5,0,0,36,11], "classnc_1_1_vec2.html#ab84fdd231058aa0343e2249e209855bf":[5,0,0,36,22], +"classnc_1_1_vec2.html#ab84fdd231058aa0343e2249e209855bf":[4,0,0,46,22], "classnc_1_1_vec2.html#abb0f6f8cacc680a464425d908e1e55cc":[4,0,0,46,5], "classnc_1_1_vec2.html#abb0f6f8cacc680a464425d908e1e55cc":[5,0,0,36,5], -"classnc_1_1_vec2.html#abfb713c893dbd31d7c94b4741e82530b":[4,0,0,46,2], "classnc_1_1_vec2.html#abfb713c893dbd31d7c94b4741e82530b":[5,0,0,36,2], +"classnc_1_1_vec2.html#abfb713c893dbd31d7c94b4741e82530b":[4,0,0,46,2], "classnc_1_1_vec2.html#ac83768c682c162ec9dffe1bfb9637338":[5,0,0,36,13], "classnc_1_1_vec2.html#ac83768c682c162ec9dffe1bfb9637338":[4,0,0,46,13], -"classnc_1_1_vec2.html#ac85b88f871eb5be2d8e788df03c6ffcb":[5,0,0,36,15], "classnc_1_1_vec2.html#ac85b88f871eb5be2d8e788df03c6ffcb":[4,0,0,46,15], +"classnc_1_1_vec2.html#ac85b88f871eb5be2d8e788df03c6ffcb":[5,0,0,36,15], "classnc_1_1_vec2.html#acd4277d3a9acded9199afef378e1907c":[5,0,0,36,24], "classnc_1_1_vec2.html#acd4277d3a9acded9199afef378e1907c":[4,0,0,46,24], "classnc_1_1_vec2.html#ad7a5bc1612f92f7e49112cf58caeaace":[5,0,0,36,27], "classnc_1_1_vec2.html#ad7a5bc1612f92f7e49112cf58caeaace":[4,0,0,46,27], -"classnc_1_1_vec2.html#ade3f4342726264a1493f91ae80ab24ca":[4,0,0,46,9], "classnc_1_1_vec2.html#ade3f4342726264a1493f91ae80ab24ca":[5,0,0,36,9], +"classnc_1_1_vec2.html#ade3f4342726264a1493f91ae80ab24ca":[4,0,0,46,9], "classnc_1_1_vec2.html#ae34b427d1b6560cce898bf61f9524a80":[5,0,0,36,0], "classnc_1_1_vec2.html#ae34b427d1b6560cce898bf61f9524a80":[4,0,0,46,0], -"classnc_1_1_vec2.html#ae9dba0130092caa7d78e252b09bbc8e0":[5,0,0,36,16], "classnc_1_1_vec2.html#ae9dba0130092caa7d78e252b09bbc8e0":[4,0,0,46,16], +"classnc_1_1_vec2.html#ae9dba0130092caa7d78e252b09bbc8e0":[5,0,0,36,16], "classnc_1_1_vec2.html#aeb48b0300990a5b77919589488ddfe30":[4,0,0,46,1], "classnc_1_1_vec2.html#aeb48b0300990a5b77919589488ddfe30":[5,0,0,36,1], -"classnc_1_1_vec2.html#af04a7f20ae8ac7a59ae44f7819668fa0":[5,0,0,36,20], "classnc_1_1_vec2.html#af04a7f20ae8ac7a59ae44f7819668fa0":[4,0,0,46,20], -"classnc_1_1_vec2.html#af92e16192f4c40828c343a036506d6cb":[5,0,0,36,23], +"classnc_1_1_vec2.html#af04a7f20ae8ac7a59ae44f7819668fa0":[5,0,0,36,20], "classnc_1_1_vec2.html#af92e16192f4c40828c343a036506d6cb":[4,0,0,46,23], -"classnc_1_1_vec3.html":[5,0,0,37], +"classnc_1_1_vec2.html#af92e16192f4c40828c343a036506d6cb":[5,0,0,36,23], "classnc_1_1_vec3.html":[4,0,0,47], +"classnc_1_1_vec3.html":[5,0,0,37], "classnc_1_1_vec3.html#a0896ee691f46ce0bd669b869fe6acb41":[5,0,0,37,32], "classnc_1_1_vec3.html#a0896ee691f46ce0bd669b869fe6acb41":[4,0,0,47,32], -"classnc_1_1_vec3.html#a29fad7279d8da7f78805fee0c6d73408":[5,0,0,37,28], "classnc_1_1_vec3.html#a29fad7279d8da7f78805fee0c6d73408":[4,0,0,47,28], -"classnc_1_1_vec3.html#a2cc63855706091881f765b63dcf52c44":[4,0,0,47,24], +"classnc_1_1_vec3.html#a29fad7279d8da7f78805fee0c6d73408":[5,0,0,37,28], "classnc_1_1_vec3.html#a2cc63855706091881f765b63dcf52c44":[5,0,0,37,24], -"classnc_1_1_vec3.html#a301f3edcb8cb17e7e3e5dbdd5255bdd2":[4,0,0,47,9], +"classnc_1_1_vec3.html#a2cc63855706091881f765b63dcf52c44":[4,0,0,47,24], "classnc_1_1_vec3.html#a301f3edcb8cb17e7e3e5dbdd5255bdd2":[5,0,0,37,9], +"classnc_1_1_vec3.html#a301f3edcb8cb17e7e3e5dbdd5255bdd2":[4,0,0,47,9], "classnc_1_1_vec3.html#a317d66ff62f645b69571905c210ae833":[5,0,0,37,3], "classnc_1_1_vec3.html#a317d66ff62f645b69571905c210ae833":[4,0,0,47,3], -"classnc_1_1_vec3.html#a4056d1e369726710d6f1049b277486dd":[5,0,0,37,2], "classnc_1_1_vec3.html#a4056d1e369726710d6f1049b277486dd":[4,0,0,47,2], +"classnc_1_1_vec3.html#a4056d1e369726710d6f1049b277486dd":[5,0,0,37,2], "classnc_1_1_vec3.html#a44e50b4b49011ec94548558600c0b17c":[5,0,0,37,6], "classnc_1_1_vec3.html#a44e50b4b49011ec94548558600c0b17c":[4,0,0,47,6], "classnc_1_1_vec3.html#a4668419f4c870900466d4aa198247767":[5,0,0,37,4], "classnc_1_1_vec3.html#a4668419f4c870900466d4aa198247767":[4,0,0,47,4], "classnc_1_1_vec3.html#a4ea0c82948117391c6c42a99e3093f91":[5,0,0,37,11], "classnc_1_1_vec3.html#a4ea0c82948117391c6c42a99e3093f91":[4,0,0,47,11], -"classnc_1_1_vec3.html#a4f3cfcbd67a402820cc8e0576dccd2e4":[5,0,0,37,7], "classnc_1_1_vec3.html#a4f3cfcbd67a402820cc8e0576dccd2e4":[4,0,0,47,7], -"classnc_1_1_vec3.html#a523ca42cbdd088851cc5a299da988cee":[5,0,0,37,5], +"classnc_1_1_vec3.html#a4f3cfcbd67a402820cc8e0576dccd2e4":[5,0,0,37,7], "classnc_1_1_vec3.html#a523ca42cbdd088851cc5a299da988cee":[4,0,0,47,5], +"classnc_1_1_vec3.html#a523ca42cbdd088851cc5a299da988cee":[5,0,0,37,5], "classnc_1_1_vec3.html#a6356b462b11a156b923a7c79b9747c25":[4,0,0,47,16], "classnc_1_1_vec3.html#a6356b462b11a156b923a7c79b9747c25":[5,0,0,37,16], -"classnc_1_1_vec3.html#a6b0bc18cc9594a7d81361c518d543130":[4,0,0,47,1], "classnc_1_1_vec3.html#a6b0bc18cc9594a7d81361c518d543130":[5,0,0,37,1], -"classnc_1_1_vec3.html#a6c177e1f5c00584279a0527d3053dee8":[4,0,0,47,15], +"classnc_1_1_vec3.html#a6b0bc18cc9594a7d81361c518d543130":[4,0,0,47,1], "classnc_1_1_vec3.html#a6c177e1f5c00584279a0527d3053dee8":[5,0,0,37,15], +"classnc_1_1_vec3.html#a6c177e1f5c00584279a0527d3053dee8":[4,0,0,47,15], "classnc_1_1_vec3.html#a7d2185abecc01b56abcec64dffde3695":[4,0,0,47,21], "classnc_1_1_vec3.html#a7d2185abecc01b56abcec64dffde3695":[5,0,0,37,21], -"classnc_1_1_vec3.html#a7e6730d945972ecda1815c1d41f5074c":[4,0,0,47,13], "classnc_1_1_vec3.html#a7e6730d945972ecda1815c1d41f5074c":[5,0,0,37,13], +"classnc_1_1_vec3.html#a7e6730d945972ecda1815c1d41f5074c":[4,0,0,47,13], "classnc_1_1_vec3.html#a7f71dd08d58a1327739de6041e3362bb":[5,0,0,37,30], "classnc_1_1_vec3.html#a7f71dd08d58a1327739de6041e3362bb":[4,0,0,47,30], "classnc_1_1_vec3.html#a8e27eb76c794d600bc295748cddb6eda":[4,0,0,47,23], "classnc_1_1_vec3.html#a8e27eb76c794d600bc295748cddb6eda":[5,0,0,37,23], "classnc_1_1_vec3.html#a8e8cfef3d9f3f23df9fde19e5bf4a79d":[4,0,0,47,22], "classnc_1_1_vec3.html#a8e8cfef3d9f3f23df9fde19e5bf4a79d":[5,0,0,37,22], -"classnc_1_1_vec3.html#a969dd1c195f4c78fc3a93292391e29c1":[4,0,0,47,31], "classnc_1_1_vec3.html#a969dd1c195f4c78fc3a93292391e29c1":[5,0,0,37,31], -"classnc_1_1_vec3.html#a9831d738bbccbdc86ce117b18f107c0f":[5,0,0,37,18], +"classnc_1_1_vec3.html#a969dd1c195f4c78fc3a93292391e29c1":[4,0,0,47,31], "classnc_1_1_vec3.html#a9831d738bbccbdc86ce117b18f107c0f":[4,0,0,47,18], +"classnc_1_1_vec3.html#a9831d738bbccbdc86ce117b18f107c0f":[5,0,0,37,18], "classnc_1_1_vec3.html#aaba2a76701fbf17582641cefeb513f1c":[5,0,0,37,25], "classnc_1_1_vec3.html#aaba2a76701fbf17582641cefeb513f1c":[4,0,0,47,25], -"classnc_1_1_vec3.html#aad142760da8d2b3493462b4542e42673":[5,0,0,37,17], "classnc_1_1_vec3.html#aad142760da8d2b3493462b4542e42673":[4,0,0,47,17], +"classnc_1_1_vec3.html#aad142760da8d2b3493462b4542e42673":[5,0,0,37,17], "classnc_1_1_vec3.html#aafc14ccae575994733d664eb3f4a6e66":[4,0,0,47,29], "classnc_1_1_vec3.html#aafc14ccae575994733d664eb3f4a6e66":[5,0,0,37,29], -"classnc_1_1_vec3.html#ab4878c8a4ebcd94fd0baf93059b50ac6":[4,0,0,47,14], "classnc_1_1_vec3.html#ab4878c8a4ebcd94fd0baf93059b50ac6":[5,0,0,37,14], +"classnc_1_1_vec3.html#ab4878c8a4ebcd94fd0baf93059b50ac6":[4,0,0,47,14], "classnc_1_1_vec3.html#ac5a33c96c05a8c856b774c24f4a1965d":[5,0,0,37,12], "classnc_1_1_vec3.html#ac5a33c96c05a8c856b774c24f4a1965d":[4,0,0,47,12], -"classnc_1_1_vec3.html#ac9f2bf549a4b800f140de060a0281a7e":[5,0,0,37,10], "classnc_1_1_vec3.html#ac9f2bf549a4b800f140de060a0281a7e":[4,0,0,47,10], +"classnc_1_1_vec3.html#ac9f2bf549a4b800f140de060a0281a7e":[5,0,0,37,10], "classnc_1_1_vec3.html#adb18c9ba29affb8b712bb22a83e38e09":[4,0,0,47,0], "classnc_1_1_vec3.html#adb18c9ba29affb8b712bb22a83e38e09":[5,0,0,37,0], -"classnc_1_1_vec3.html#adc1cd136818db0b150d1f141b917319c":[5,0,0,37,19], "classnc_1_1_vec3.html#adc1cd136818db0b150d1f141b917319c":[4,0,0,47,19], -"classnc_1_1_vec3.html#aea160d6b860e0ed5d931c9494229b530":[5,0,0,37,27], +"classnc_1_1_vec3.html#adc1cd136818db0b150d1f141b917319c":[5,0,0,37,19], "classnc_1_1_vec3.html#aea160d6b860e0ed5d931c9494229b530":[4,0,0,47,27], -"classnc_1_1_vec3.html#af3203959755167f0be8f1a97625c33c6":[5,0,0,37,20], +"classnc_1_1_vec3.html#aea160d6b860e0ed5d931c9494229b530":[5,0,0,37,27], "classnc_1_1_vec3.html#af3203959755167f0be8f1a97625c33c6":[4,0,0,47,20], -"classnc_1_1_vec3.html#af8173f6e61e9a63beae3092fd8dc4378":[5,0,0,37,8], +"classnc_1_1_vec3.html#af3203959755167f0be8f1a97625c33c6":[5,0,0,37,20], "classnc_1_1_vec3.html#af8173f6e61e9a63beae3092fd8dc4378":[4,0,0,47,8], -"classnc_1_1_vec3.html#af8862aed471260a45c7691c7c5c6b016":[4,0,0,47,26], +"classnc_1_1_vec3.html#af8173f6e61e9a63beae3092fd8dc4378":[5,0,0,37,8], "classnc_1_1_vec3.html#af8862aed471260a45c7691c7c5c6b016":[5,0,0,37,26], +"classnc_1_1_vec3.html#af8862aed471260a45c7691c7c5c6b016":[4,0,0,47,26], "classnc_1_1coordinates_1_1_cartesian.html":[4,0,0,2,2], "classnc_1_1coordinates_1_1_cartesian.html":[5,0,0,0,1], "classnc_1_1coordinates_1_1_cartesian.html#a02a051a87ae35e876972c09acd482012":[5,0,0,0,1,8], @@ -249,5 +247,7 @@ var NAVTREEINDEX7 = "classnc_1_1coordinates_1_1_cartesian.html#a0609eebe94bc5c9acfaf74439083ed8d":[4,0,0,2,2,3], "classnc_1_1coordinates_1_1_cartesian.html#a1132e1a80da9af3c8570b58c6d8e5d50":[5,0,0,0,1,11], "classnc_1_1coordinates_1_1_cartesian.html#a1132e1a80da9af3c8570b58c6d8e5d50":[4,0,0,2,2,11], -"classnc_1_1coordinates_1_1_cartesian.html#a6103f46e12b66ef0ab6f344a0688f228":[5,0,0,0,1,7] +"classnc_1_1coordinates_1_1_cartesian.html#a6103f46e12b66ef0ab6f344a0688f228":[4,0,0,2,2,7], +"classnc_1_1coordinates_1_1_cartesian.html#a6103f46e12b66ef0ab6f344a0688f228":[5,0,0,0,1,7], +"classnc_1_1coordinates_1_1_cartesian.html#a6a34b091a9bf8f03654a533bb469f66c":[5,0,0,0,1,14] }; diff --git a/docs/doxygen/html/navtreeindex8.js b/docs/doxygen/html/navtreeindex8.js index d1959434e..1a358e3d1 100644 --- a/docs/doxygen/html/navtreeindex8.js +++ b/docs/doxygen/html/navtreeindex8.js @@ -1,18 +1,16 @@ var NAVTREEINDEX8 = { -"classnc_1_1coordinates_1_1_cartesian.html#a6103f46e12b66ef0ab6f344a0688f228":[4,0,0,2,2,7], "classnc_1_1coordinates_1_1_cartesian.html#a6a34b091a9bf8f03654a533bb469f66c":[4,0,0,2,2,14], -"classnc_1_1coordinates_1_1_cartesian.html#a6a34b091a9bf8f03654a533bb469f66c":[5,0,0,0,1,14], "classnc_1_1coordinates_1_1_cartesian.html#a6b5105edf6bf35a3558649f867fac174":[4,0,0,2,2,10], "classnc_1_1coordinates_1_1_cartesian.html#a6b5105edf6bf35a3558649f867fac174":[5,0,0,0,1,10], -"classnc_1_1coordinates_1_1_cartesian.html#a74a6b94c9cec014f10eb413fd7bd0ea0":[4,0,0,2,2,12], "classnc_1_1coordinates_1_1_cartesian.html#a74a6b94c9cec014f10eb413fd7bd0ea0":[5,0,0,0,1,12], +"classnc_1_1coordinates_1_1_cartesian.html#a74a6b94c9cec014f10eb413fd7bd0ea0":[4,0,0,2,2,12], "classnc_1_1coordinates_1_1_cartesian.html#a84c445fd28ba4c60f7dd0ff344ac7b9c":[4,0,0,2,2,5], "classnc_1_1coordinates_1_1_cartesian.html#a84c445fd28ba4c60f7dd0ff344ac7b9c":[5,0,0,0,1,5], -"classnc_1_1coordinates_1_1_cartesian.html#a9f51fd4fa6aad2c318df86588ed6a34f":[4,0,0,2,2,17], "classnc_1_1coordinates_1_1_cartesian.html#a9f51fd4fa6aad2c318df86588ed6a34f":[5,0,0,0,1,17], -"classnc_1_1coordinates_1_1_cartesian.html#aa74480eb4341f82afdde5f3b42fc7be6":[4,0,0,2,2,1], +"classnc_1_1coordinates_1_1_cartesian.html#a9f51fd4fa6aad2c318df86588ed6a34f":[4,0,0,2,2,17], "classnc_1_1coordinates_1_1_cartesian.html#aa74480eb4341f82afdde5f3b42fc7be6":[5,0,0,0,1,1], +"classnc_1_1coordinates_1_1_cartesian.html#aa74480eb4341f82afdde5f3b42fc7be6":[4,0,0,2,2,1], "classnc_1_1coordinates_1_1_cartesian.html#aa75a22a2b9c18d411bf9a1ab45cdda7f":[5,0,0,0,1,2], "classnc_1_1coordinates_1_1_cartesian.html#aa75a22a2b9c18d411bf9a1ab45cdda7f":[4,0,0,2,2,2], "classnc_1_1coordinates_1_1_cartesian.html#aadcee3796bcc3b8abb92fce83b678359":[5,0,0,0,1,6], @@ -21,54 +19,54 @@ var NAVTREEINDEX8 = "classnc_1_1coordinates_1_1_cartesian.html#ac149f2d7075f8b145000b7edfdf035e2":[5,0,0,0,1,13], "classnc_1_1coordinates_1_1_cartesian.html#ac77a08a542ba4d873c0a86047b25953d":[4,0,0,2,2,16], "classnc_1_1coordinates_1_1_cartesian.html#ac77a08a542ba4d873c0a86047b25953d":[5,0,0,0,1,16], -"classnc_1_1coordinates_1_1_cartesian.html#acd2bb91863149c37e73b9e8ae2a50cf5":[5,0,0,0,1,0], "classnc_1_1coordinates_1_1_cartesian.html#acd2bb91863149c37e73b9e8ae2a50cf5":[4,0,0,2,2,0], -"classnc_1_1coordinates_1_1_cartesian.html#add44d8cd4ee04ef61120fc0c0d12e550":[5,0,0,0,1,15], +"classnc_1_1coordinates_1_1_cartesian.html#acd2bb91863149c37e73b9e8ae2a50cf5":[5,0,0,0,1,0], "classnc_1_1coordinates_1_1_cartesian.html#add44d8cd4ee04ef61120fc0c0d12e550":[4,0,0,2,2,15], -"classnc_1_1coordinates_1_1_cartesian.html#af7341561984039aca2b984078b12b662":[5,0,0,0,1,4], +"classnc_1_1coordinates_1_1_cartesian.html#add44d8cd4ee04ef61120fc0c0d12e550":[5,0,0,0,1,15], "classnc_1_1coordinates_1_1_cartesian.html#af7341561984039aca2b984078b12b662":[4,0,0,2,2,4], -"classnc_1_1coordinates_1_1_cartesian.html#afc01ac8b65b9ffceb446ea9e38b80857":[4,0,0,2,2,9], +"classnc_1_1coordinates_1_1_cartesian.html#af7341561984039aca2b984078b12b662":[5,0,0,0,1,4], "classnc_1_1coordinates_1_1_cartesian.html#afc01ac8b65b9ffceb446ea9e38b80857":[5,0,0,0,1,9], -"classnc_1_1coordinates_1_1_euler.html":[4,0,0,2,3], +"classnc_1_1coordinates_1_1_cartesian.html#afc01ac8b65b9ffceb446ea9e38b80857":[4,0,0,2,2,9], "classnc_1_1coordinates_1_1_euler.html":[5,0,0,0,2], -"classnc_1_1coordinates_1_1_euler.html#a1516925a2f04d722355c6fa32dcfbece":[4,0,0,2,3,9], +"classnc_1_1coordinates_1_1_euler.html":[4,0,0,2,3], "classnc_1_1coordinates_1_1_euler.html#a1516925a2f04d722355c6fa32dcfbece":[5,0,0,0,2,9], -"classnc_1_1coordinates_1_1_euler.html#a1c01c2348de1a63fb76c3228bd46badf":[4,0,0,2,3,8], +"classnc_1_1coordinates_1_1_euler.html#a1516925a2f04d722355c6fa32dcfbece":[4,0,0,2,3,9], "classnc_1_1coordinates_1_1_euler.html#a1c01c2348de1a63fb76c3228bd46badf":[5,0,0,0,2,8], -"classnc_1_1coordinates_1_1_euler.html#a3b33f0bf2a2a55f8b6ca6ad8f3aa4c71":[5,0,0,0,2,4], +"classnc_1_1coordinates_1_1_euler.html#a1c01c2348de1a63fb76c3228bd46badf":[4,0,0,2,3,8], "classnc_1_1coordinates_1_1_euler.html#a3b33f0bf2a2a55f8b6ca6ad8f3aa4c71":[4,0,0,2,3,4], +"classnc_1_1coordinates_1_1_euler.html#a3b33f0bf2a2a55f8b6ca6ad8f3aa4c71":[5,0,0,0,2,4], "classnc_1_1coordinates_1_1_euler.html#a4da3026b9ca5d94b2a435216212fec32":[5,0,0,0,2,5], "classnc_1_1coordinates_1_1_euler.html#a4da3026b9ca5d94b2a435216212fec32":[4,0,0,2,3,5], "classnc_1_1coordinates_1_1_euler.html#a5a356e03dcdb4cf04726deeb6fb2a30f":[4,0,0,2,3,0], "classnc_1_1coordinates_1_1_euler.html#a5a356e03dcdb4cf04726deeb6fb2a30f":[5,0,0,0,2,0], -"classnc_1_1coordinates_1_1_euler.html#a6d8405f8c515501b0d5b0ace2a0dbb79":[5,0,0,0,2,7], "classnc_1_1coordinates_1_1_euler.html#a6d8405f8c515501b0d5b0ace2a0dbb79":[4,0,0,2,3,7], +"classnc_1_1coordinates_1_1_euler.html#a6d8405f8c515501b0d5b0ace2a0dbb79":[5,0,0,0,2,7], "classnc_1_1coordinates_1_1_euler.html#a784c9fb6d05298ffbb4c8b3e9c36a6e8":[4,0,0,2,3,2], "classnc_1_1coordinates_1_1_euler.html#a784c9fb6d05298ffbb4c8b3e9c36a6e8":[5,0,0,0,2,2], -"classnc_1_1coordinates_1_1_euler.html#ab6e8553cb29e3b38932353c7808df47d":[5,0,0,0,2,10], "classnc_1_1coordinates_1_1_euler.html#ab6e8553cb29e3b38932353c7808df47d":[4,0,0,2,3,10], -"classnc_1_1coordinates_1_1_euler.html#ac9d5e3dfbfb276d3596c21ccd60f07ed":[4,0,0,2,3,3], +"classnc_1_1coordinates_1_1_euler.html#ab6e8553cb29e3b38932353c7808df47d":[5,0,0,0,2,10], "classnc_1_1coordinates_1_1_euler.html#ac9d5e3dfbfb276d3596c21ccd60f07ed":[5,0,0,0,2,3], -"classnc_1_1coordinates_1_1_euler.html#acdcc1795fe468bb026d4da943b50b6a4":[4,0,0,2,3,11], +"classnc_1_1coordinates_1_1_euler.html#ac9d5e3dfbfb276d3596c21ccd60f07ed":[4,0,0,2,3,3], "classnc_1_1coordinates_1_1_euler.html#acdcc1795fe468bb026d4da943b50b6a4":[5,0,0,0,2,11], -"classnc_1_1coordinates_1_1_euler.html#ad6885f046c7e9fa6d26a0d5f120c785b":[5,0,0,0,2,6], +"classnc_1_1coordinates_1_1_euler.html#acdcc1795fe468bb026d4da943b50b6a4":[4,0,0,2,3,11], "classnc_1_1coordinates_1_1_euler.html#ad6885f046c7e9fa6d26a0d5f120c785b":[4,0,0,2,3,6], -"classnc_1_1coordinates_1_1_euler.html#af6496ef339682a7373274b5d786c046a":[5,0,0,0,2,1], +"classnc_1_1coordinates_1_1_euler.html#ad6885f046c7e9fa6d26a0d5f120c785b":[5,0,0,0,2,6], "classnc_1_1coordinates_1_1_euler.html#af6496ef339682a7373274b5d786c046a":[4,0,0,2,3,1], +"classnc_1_1coordinates_1_1_euler.html#af6496ef339682a7373274b5d786c046a":[5,0,0,0,2,1], "classnc_1_1coordinates_1_1_orientation.html":[5,0,0,0,3], "classnc_1_1coordinates_1_1_orientation.html":[4,0,0,2,4], -"classnc_1_1coordinates_1_1_orientation.html#a1742821527c01d1d69291428ecdd662d":[4,0,0,2,4,0], "classnc_1_1coordinates_1_1_orientation.html#a1742821527c01d1d69291428ecdd662d":[5,0,0,0,3,0], +"classnc_1_1coordinates_1_1_orientation.html#a1742821527c01d1d69291428ecdd662d":[4,0,0,2,4,0], "classnc_1_1coordinates_1_1_orientation.html#a2fcb455ee505042158f764fa81314bb3":[5,0,0,0,3,7], "classnc_1_1coordinates_1_1_orientation.html#a2fcb455ee505042158f764fa81314bb3":[4,0,0,2,4,7], "classnc_1_1coordinates_1_1_orientation.html#a306b4717953dad48b51bfe0f65f619a3":[5,0,0,0,3,5], "classnc_1_1coordinates_1_1_orientation.html#a306b4717953dad48b51bfe0f65f619a3":[4,0,0,2,4,5], -"classnc_1_1coordinates_1_1_orientation.html#a3cfa6fd4e1c0c46d7bda5968b557f416":[4,0,0,2,4,2], "classnc_1_1coordinates_1_1_orientation.html#a3cfa6fd4e1c0c46d7bda5968b557f416":[5,0,0,0,3,2], +"classnc_1_1coordinates_1_1_orientation.html#a3cfa6fd4e1c0c46d7bda5968b557f416":[4,0,0,2,4,2], "classnc_1_1coordinates_1_1_orientation.html#a495f338e04996d967d75023d07316c2d":[4,0,0,2,4,6], "classnc_1_1coordinates_1_1_orientation.html#a495f338e04996d967d75023d07316c2d":[5,0,0,0,3,6], -"classnc_1_1coordinates_1_1_orientation.html#a53679b5e458c481a3da3c93ed62c85a8":[4,0,0,2,4,10], "classnc_1_1coordinates_1_1_orientation.html#a53679b5e458c481a3da3c93ed62c85a8":[5,0,0,0,3,10], +"classnc_1_1coordinates_1_1_orientation.html#a53679b5e458c481a3da3c93ed62c85a8":[4,0,0,2,4,10], "classnc_1_1coordinates_1_1_orientation.html#a65b6cbd3ddc51efefe668c6747c0dee0":[4,0,0,2,4,1], "classnc_1_1coordinates_1_1_orientation.html#a65b6cbd3ddc51efefe668c6747c0dee0":[5,0,0,0,3,1], "classnc_1_1coordinates_1_1_orientation.html#a6700c6fb19bc4af7d12ef0a68d39de8d":[5,0,0,0,3,4], @@ -77,16 +75,16 @@ var NAVTREEINDEX8 = "classnc_1_1coordinates_1_1_orientation.html#a78a8f4e66363252619a75b608bae9d78":[5,0,0,0,3,3], "classnc_1_1coordinates_1_1_orientation.html#a7ddb54f8f5565a97158ec00076610ce3":[4,0,0,2,4,8], "classnc_1_1coordinates_1_1_orientation.html#a7ddb54f8f5565a97158ec00076610ce3":[5,0,0,0,3,8], -"classnc_1_1coordinates_1_1_orientation.html#a819f4482cc856e67b9b8d8d9269ae3cf":[4,0,0,2,4,9], "classnc_1_1coordinates_1_1_orientation.html#a819f4482cc856e67b9b8d8d9269ae3cf":[5,0,0,0,3,9], -"classnc_1_1coordinates_1_1_orientation.html#ab4a0f03f2bc9dc948b15102665dce6c9":[5,0,0,0,3,11], +"classnc_1_1coordinates_1_1_orientation.html#a819f4482cc856e67b9b8d8d9269ae3cf":[4,0,0,2,4,9], "classnc_1_1coordinates_1_1_orientation.html#ab4a0f03f2bc9dc948b15102665dce6c9":[4,0,0,2,4,11], +"classnc_1_1coordinates_1_1_orientation.html#ab4a0f03f2bc9dc948b15102665dce6c9":[5,0,0,0,3,11], "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html":[5,0,0,0,0,0], "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html":[4,0,0,2,0,1], -"classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#a032a7e987817fbfe1892e019a5dd86c2":[5,0,0,0,0,0,1], "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#a032a7e987817fbfe1892e019a5dd86c2":[4,0,0,2,0,1,1], -"classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#a07677b880ca2afe36b366cd84c1c8246":[5,0,0,0,0,0,5], +"classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#a032a7e987817fbfe1892e019a5dd86c2":[5,0,0,0,0,0,1], "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#a07677b880ca2afe36b366cd84c1c8246":[4,0,0,2,0,1,5], +"classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#a07677b880ca2afe36b366cd84c1c8246":[5,0,0,0,0,0,5], "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#a36c21ebf4ad2f77289ecf51f97e7a3c1":[4,0,0,2,0,1,2], "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#a36c21ebf4ad2f77289ecf51f97e7a3c1":[5,0,0,0,0,0,2], "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#a751b67f1dc40d360647cce3bda502a5e":[4,0,0,2,0,1,0], @@ -95,12 +93,12 @@ var NAVTREEINDEX8 = "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#adc68c8434852f9857133178f094aa20a":[5,0,0,0,0,0,4], "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#ae3307ca0785973c1408cb68f2acc6780":[4,0,0,2,0,1,3], "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#ae3307ca0785973c1408cb68f2acc6780":[5,0,0,0,0,0,3], -"classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#ae75ea0e4a1e3426b1f2f2f694d29494d":[4,0,0,2,0,1,6], "classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#ae75ea0e4a1e3426b1f2f2f694d29494d":[5,0,0,0,0,0,6], +"classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#ae75ea0e4a1e3426b1f2f2f694d29494d":[4,0,0,2,0,1,6], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html":[5,0,0,0,0,1], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html":[4,0,0,2,0,2], -"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a019d6a4a4ece6d78b04df47308ef4af3":[5,0,0,0,0,1,2], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a019d6a4a4ece6d78b04df47308ef4af3":[4,0,0,2,0,2,2], +"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a019d6a4a4ece6d78b04df47308ef4af3":[5,0,0,0,0,1,2], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a146f6af039cbcba058013c12ada1cb2b":[4,0,0,2,0,2,4], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a146f6af039cbcba058013c12ada1cb2b":[5,0,0,0,0,1,4], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a175ec4be0903210fb6afcc513d001812":[5,0,0,0,0,1,22], @@ -111,92 +109,92 @@ var NAVTREEINDEX8 = "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a27035489316217a64db114902079ea59":[5,0,0,0,0,1,14], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a31ee558602214df298c064fdf91eaf10":[4,0,0,2,0,2,5], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a31ee558602214df298c064fdf91eaf10":[5,0,0,0,0,1,5], -"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a47889ee592a590a4df206d93d102b1ef":[4,0,0,2,0,2,21], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a47889ee592a590a4df206d93d102b1ef":[5,0,0,0,0,1,21], -"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a4802c3d4d16c479e06037fcaa4185fed":[4,0,0,2,0,2,12], +"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a47889ee592a590a4df206d93d102b1ef":[4,0,0,2,0,2,21], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a4802c3d4d16c479e06037fcaa4185fed":[5,0,0,0,0,1,12], -"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a62d638b5c87a3147bf0a6e97141d241e":[4,0,0,2,0,2,3], +"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a4802c3d4d16c479e06037fcaa4185fed":[4,0,0,2,0,2,12], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a62d638b5c87a3147bf0a6e97141d241e":[5,0,0,0,0,1,3], +"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a62d638b5c87a3147bf0a6e97141d241e":[4,0,0,2,0,2,3], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a791d4046df696e4e36440753ffd3c5fd":[4,0,0,2,0,2,7], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a791d4046df696e4e36440753ffd3c5fd":[5,0,0,0,0,1,7], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a85579a98ee97dee68d42e736b1ecf2a2":[4,0,0,2,0,2,10], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a85579a98ee97dee68d42e736b1ecf2a2":[5,0,0,0,0,1,10], -"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a9cc629cc5a7feec5a80acce4f4e935cb":[5,0,0,0,0,1,15], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a9cc629cc5a7feec5a80acce4f4e935cb":[4,0,0,2,0,2,15], -"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a9ce2cf775cd519b186a2f20b3ec1a9f1":[5,0,0,0,0,1,1], +"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a9cc629cc5a7feec5a80acce4f4e935cb":[5,0,0,0,0,1,15], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a9ce2cf775cd519b186a2f20b3ec1a9f1":[4,0,0,2,0,2,1], +"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a9ce2cf775cd519b186a2f20b3ec1a9f1":[5,0,0,0,0,1,1], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa3367f604ff7934fce178ce31dc98d9a":[5,0,0,0,0,1,17], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa3367f604ff7934fce178ce31dc98d9a":[4,0,0,2,0,2,17], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa86c47d2d7762d618e2c8fececcaa594":[5,0,0,0,0,1,19], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa86c47d2d7762d618e2c8fececcaa594":[4,0,0,2,0,2,19], -"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa927c3373686a8618f89789e65e36a48":[5,0,0,0,0,1,8], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa927c3373686a8618f89789e65e36a48":[4,0,0,2,0,2,8], -"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aaad92a5179c96388ce428914dbeac553":[5,0,0,0,0,1,0], +"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa927c3373686a8618f89789e65e36a48":[5,0,0,0,0,1,8], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aaad92a5179c96388ce428914dbeac553":[4,0,0,2,0,2,0], +"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aaad92a5179c96388ce428914dbeac553":[5,0,0,0,0,1,0], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#acbb5251279363dc6ce97be52cfe7ce4f":[4,0,0,2,0,2,11], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#acbb5251279363dc6ce97be52cfe7ce4f":[5,0,0,0,0,1,11], -"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#ad7ca1d03a77b49e1a6845233e3fb8ef4":[5,0,0,0,0,1,9], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#ad7ca1d03a77b49e1a6845233e3fb8ef4":[4,0,0,2,0,2,9], +"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#ad7ca1d03a77b49e1a6845233e3fb8ef4":[5,0,0,0,0,1,9], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#ae918604b01671ee7eb1d18a16f0c0f28":[4,0,0,2,0,2,6], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#ae918604b01671ee7eb1d18a16f0c0f28":[5,0,0,0,0,1,6], -"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aeb435beddef879db69d5c1dff1af8e53":[5,0,0,0,0,1,18], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aeb435beddef879db69d5c1dff1af8e53":[4,0,0,2,0,2,18], +"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aeb435beddef879db69d5c1dff1af8e53":[5,0,0,0,0,1,18], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#af1488e9200aedcc61c9cbc52d181417a":[5,0,0,0,0,1,16], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#af1488e9200aedcc61c9cbc52d181417a":[4,0,0,2,0,2,16], -"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#af655d6abdacad6003aa88b1207741eeb":[4,0,0,2,0,2,13], "classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#af655d6abdacad6003aa88b1207741eeb":[5,0,0,0,0,1,13], -"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html":[4,0,0,2,0,3], +"classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#af655d6abdacad6003aa88b1207741eeb":[4,0,0,2,0,2,13], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html":[5,0,0,0,0,2], +"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html":[4,0,0,2,0,3], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a06826631dd86cf11c717c51c0db34682":[5,0,0,0,0,2,4], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a06826631dd86cf11c717c51c0db34682":[4,0,0,2,0,3,4], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a19892475f282e317b626687605a4b8ac":[5,0,0,0,0,2,12], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a19892475f282e317b626687605a4b8ac":[4,0,0,2,0,3,12], -"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a243f2d36caf61e456d080ca5907f6ba5":[5,0,0,0,0,2,1], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a243f2d36caf61e456d080ca5907f6ba5":[4,0,0,2,0,3,1], -"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a317a19743e1fea6e9eee82dec9db9c97":[5,0,0,0,0,2,14], +"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a243f2d36caf61e456d080ca5907f6ba5":[5,0,0,0,0,2,1], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a317a19743e1fea6e9eee82dec9db9c97":[4,0,0,2,0,3,14], -"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a39c543fd471f182d86bb1172658319d0":[5,0,0,0,0,2,10], +"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a317a19743e1fea6e9eee82dec9db9c97":[5,0,0,0,0,2,14], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a39c543fd471f182d86bb1172658319d0":[4,0,0,2,0,3,10], +"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a39c543fd471f182d86bb1172658319d0":[5,0,0,0,0,2,10], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a5953e8190f3a6e0558ad9cb4aa743502":[5,0,0,0,0,2,6], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a5953e8190f3a6e0558ad9cb4aa743502":[4,0,0,2,0,3,6], -"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a626910d5937ec7d1421827ca0d2f57b1":[4,0,0,2,0,3,9], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a626910d5937ec7d1421827ca0d2f57b1":[5,0,0,0,0,2,9], +"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a626910d5937ec7d1421827ca0d2f57b1":[4,0,0,2,0,3,9], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a67ed76f73de9470756507b11d30ae42a":[5,0,0,0,0,2,3], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a67ed76f73de9470756507b11d30ae42a":[4,0,0,2,0,3,3], -"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a76337e21a840ba34de81e02a60b78800":[4,0,0,2,0,3,5], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a76337e21a840ba34de81e02a60b78800":[5,0,0,0,0,2,5], +"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a76337e21a840ba34de81e02a60b78800":[4,0,0,2,0,3,5], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a86d558ee10fd72ba329326721607a782":[5,0,0,0,0,2,13], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a86d558ee10fd72ba329326721607a782":[4,0,0,2,0,3,13], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a9c56ad99eb0073ed03bc858bff98c259":[5,0,0,0,0,2,8], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a9c56ad99eb0073ed03bc858bff98c259":[4,0,0,2,0,3,8], -"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#adc60c3122b832fa69069e29f1eb97874":[4,0,0,2,0,3,11], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#adc60c3122b832fa69069e29f1eb97874":[5,0,0,0,0,2,11], -"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#aeecd2a4641ad64b3a19220d0c7028a3d":[4,0,0,2,0,3,2], +"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#adc60c3122b832fa69069e29f1eb97874":[4,0,0,2,0,3,11], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#aeecd2a4641ad64b3a19220d0c7028a3d":[5,0,0,0,0,2,2], +"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#aeecd2a4641ad64b3a19220d0c7028a3d":[4,0,0,2,0,3,2], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afbfd9a69cf4df15a91c2487b351ac35f":[5,0,0,0,0,2,7], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afbfd9a69cf4df15a91c2487b351ac35f":[4,0,0,2,0,3,7], -"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9c":[4,0,0,2,0,3,0], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9c":[5,0,0,0,0,2,0], -"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9ca50546bf973283065b6ccf09faf7a580a":[4,0,0,2,0,3,0,0], +"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9c":[4,0,0,2,0,3,0], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9ca50546bf973283065b6ccf09faf7a580a":[5,0,0,0,0,2,0,0], +"classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9ca50546bf973283065b6ccf09faf7a580a":[4,0,0,2,0,3,0,0], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9caab6c31432785221bae58327ef5f6ea58":[5,0,0,0,0,2,0,1], "classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9caab6c31432785221bae58327ef5f6ea58":[4,0,0,2,0,3,0,1], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html":[4,0,0,2,0,4], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html":[5,0,0,0,0,3], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a02a051a87ae35e876972c09acd482012":[4,0,0,2,0,4,8], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a02a051a87ae35e876972c09acd482012":[5,0,0,0,0,3,8], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a0609eebe94bc5c9acfaf74439083ed8d":[4,0,0,2,0,4,6], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a02a051a87ae35e876972c09acd482012":[4,0,0,2,0,4,8], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a0609eebe94bc5c9acfaf74439083ed8d":[5,0,0,0,0,3,6], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a1132e1a80da9af3c8570b58c6d8e5d50":[4,0,0,2,0,4,9], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a0609eebe94bc5c9acfaf74439083ed8d":[4,0,0,2,0,4,6], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a1132e1a80da9af3c8570b58c6d8e5d50":[5,0,0,0,0,3,9], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a6a34b091a9bf8f03654a533bb469f66c":[4,0,0,2,0,4,12], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a1132e1a80da9af3c8570b58c6d8e5d50":[4,0,0,2,0,4,9], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a6a34b091a9bf8f03654a533bb469f66c":[5,0,0,0,0,3,12], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a74a6b94c9cec014f10eb413fd7bd0ea0":[4,0,0,2,0,4,10], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a6a34b091a9bf8f03654a533bb469f66c":[4,0,0,2,0,4,12], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a74a6b94c9cec014f10eb413fd7bd0ea0":[5,0,0,0,0,3,10], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a84c445fd28ba4c60f7dd0ff344ac7b9c":[5,0,0,0,0,3,3], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a74a6b94c9cec014f10eb413fd7bd0ea0":[4,0,0,2,0,4,10], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a84c445fd28ba4c60f7dd0ff344ac7b9c":[4,0,0,2,0,4,3], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a9f51fd4fa6aad2c318df86588ed6a34f":[4,0,0,2,0,4,15], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a84c445fd28ba4c60f7dd0ff344ac7b9c":[5,0,0,0,0,3,3], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a9f51fd4fa6aad2c318df86588ed6a34f":[5,0,0,0,0,3,15], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#a9f51fd4fa6aad2c318df86588ed6a34f":[4,0,0,2,0,4,15], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#aa74480eb4341f82afdde5f3b42fc7be6":[5,0,0,0,0,3,7], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#aa74480eb4341f82afdde5f3b42fc7be6":[4,0,0,2,0,4,7], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#aa75a22a2b9c18d411bf9a1ab45cdda7f":[5,0,0,0,0,3,5], @@ -209,34 +207,34 @@ var NAVTREEINDEX8 = "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#ac606bc54b3825a84c997aa6db0153a8e":[4,0,0,2,0,4,0], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#ac77a08a542ba4d873c0a86047b25953d":[5,0,0,0,0,3,14], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#ac77a08a542ba4d873c0a86047b25953d":[4,0,0,2,0,4,14], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#acd2bb91863149c37e73b9e8ae2a50cf5":[4,0,0,2,0,4,1], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#acd2bb91863149c37e73b9e8ae2a50cf5":[5,0,0,0,0,3,1], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#acd2bb91863149c37e73b9e8ae2a50cf5":[4,0,0,2,0,4,1], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#add44d8cd4ee04ef61120fc0c0d12e550":[4,0,0,2,0,4,13], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#add44d8cd4ee04ef61120fc0c0d12e550":[5,0,0,0,0,3,13], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#af7341561984039aca2b984078b12b662":[4,0,0,2,0,4,4], "classnc_1_1coordinates_1_1reference__frames_1_1_e_c_e_f.html#af7341561984039aca2b984078b12b662":[5,0,0,0,0,3,4], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html":[5,0,0,0,0,4], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html":[4,0,0,2,0,5], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a02a051a87ae35e876972c09acd482012":[5,0,0,0,0,4,11], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a02a051a87ae35e876972c09acd482012":[4,0,0,2,0,5,11], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a02a051a87ae35e876972c09acd482012":[5,0,0,0,0,4,11], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a0609eebe94bc5c9acfaf74439083ed8d":[5,0,0,0,0,4,7], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a0609eebe94bc5c9acfaf74439083ed8d":[4,0,0,2,0,5,7], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a1132e1a80da9af3c8570b58c6d8e5d50":[5,0,0,0,0,4,12], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a1132e1a80da9af3c8570b58c6d8e5d50":[4,0,0,2,0,5,12], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a198aeddb215c0d6f51afc6a84d862b31":[5,0,0,0,0,4,10], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a1132e1a80da9af3c8570b58c6d8e5d50":[5,0,0,0,0,4,12], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a198aeddb215c0d6f51afc6a84d862b31":[4,0,0,2,0,5,10], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a198aeddb215c0d6f51afc6a84d862b31":[5,0,0,0,0,4,10], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a36f8ef6af5b044b9fc08958665aa1563":[5,0,0,0,0,4,16], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a36f8ef6af5b044b9fc08958665aa1563":[4,0,0,2,0,5,16], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a6a34b091a9bf8f03654a533bb469f66c":[4,0,0,2,0,5,19], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a6a34b091a9bf8f03654a533bb469f66c":[5,0,0,0,0,4,19], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a6a34b091a9bf8f03654a533bb469f66c":[4,0,0,2,0,5,19], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a74a6b94c9cec014f10eb413fd7bd0ea0":[5,0,0,0,0,4,17], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a74a6b94c9cec014f10eb413fd7bd0ea0":[4,0,0,2,0,5,17], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a7f25fb451d909be3f9fb1d0eeb9ca903":[5,0,0,0,0,4,9], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a7f25fb451d909be3f9fb1d0eeb9ca903":[4,0,0,2,0,5,9], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a841ec6cb5897340c0635cd18d2476729":[4,0,0,2,0,5,15], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a841ec6cb5897340c0635cd18d2476729":[5,0,0,0,0,4,15], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a84c445fd28ba4c60f7dd0ff344ac7b9c":[4,0,0,2,0,5,4], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a841ec6cb5897340c0635cd18d2476729":[4,0,0,2,0,5,15], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a84c445fd28ba4c60f7dd0ff344ac7b9c":[5,0,0,0,0,4,4], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a84c445fd28ba4c60f7dd0ff344ac7b9c":[4,0,0,2,0,5,4], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a9f51fd4fa6aad2c318df86588ed6a34f":[4,0,0,2,0,5,22], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a9f51fd4fa6aad2c318df86588ed6a34f":[5,0,0,0,0,4,22], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#aa4739383e190562d532ab6efc2523e3b":[4,0,0,2,0,5,13], @@ -249,5 +247,7 @@ var NAVTREEINDEX8 = "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#aadcee3796bcc3b8abb92fce83b678359":[5,0,0,0,0,4,3], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac149f2d7075f8b145000b7edfdf035e2":[5,0,0,0,0,4,18], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac149f2d7075f8b145000b7edfdf035e2":[4,0,0,2,0,5,18], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac3efcb3adec07253d12d8b95c9c36b1a":[4,0,0,2,0,5,0] +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac3efcb3adec07253d12d8b95c9c36b1a":[5,0,0,0,0,4,0], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac3efcb3adec07253d12d8b95c9c36b1a":[4,0,0,2,0,5,0], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac77a08a542ba4d873c0a86047b25953d":[4,0,0,2,0,5,21] }; diff --git a/docs/doxygen/html/navtreeindex9.js b/docs/doxygen/html/navtreeindex9.js index 0bb7ef78d..6ab0ed698 100644 --- a/docs/doxygen/html/navtreeindex9.js +++ b/docs/doxygen/html/navtreeindex9.js @@ -1,104 +1,102 @@ var NAVTREEINDEX9 = { -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac3efcb3adec07253d12d8b95c9c36b1a":[5,0,0,0,0,4,0], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac77a08a542ba4d873c0a86047b25953d":[4,0,0,2,0,5,21], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac77a08a542ba4d873c0a86047b25953d":[5,0,0,0,0,4,21], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#acd2bb91863149c37e73b9e8ae2a50cf5":[5,0,0,0,0,4,2], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#acd2bb91863149c37e73b9e8ae2a50cf5":[4,0,0,2,0,5,2], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#acff77c0afc8bd138dca98859d43f82a4":[4,0,0,2,0,5,1], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#acff77c0afc8bd138dca98859d43f82a4":[5,0,0,0,0,4,1], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#add44d8cd4ee04ef61120fc0c0d12e550":[5,0,0,0,0,4,20], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#add44d8cd4ee04ef61120fc0c0d12e550":[4,0,0,2,0,5,20], -"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ae265cf20496d00a8f3c1a95426977b82":[4,0,0,2,0,5,14], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#add44d8cd4ee04ef61120fc0c0d12e550":[5,0,0,0,0,4,20], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ae265cf20496d00a8f3c1a95426977b82":[5,0,0,0,0,4,14], +"classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ae265cf20496d00a8f3c1a95426977b82":[4,0,0,2,0,5,14], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#af7341561984039aca2b984078b12b662":[5,0,0,0,0,4,5], "classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#af7341561984039aca2b984078b12b662":[4,0,0,2,0,5,5], "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html":[5,0,0,0,0,5], "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html":[4,0,0,2,0,6], "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#a3f2f091f929b44f794eceedc16da241a":[5,0,0,0,0,5,4], "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#a3f2f091f929b44f794eceedc16da241a":[4,0,0,2,0,6,4], -"classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#a652c76d4a80534457e52aa3d20637cbe":[4,0,0,2,0,6,2], "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#a652c76d4a80534457e52aa3d20637cbe":[5,0,0,0,0,5,2], -"classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#a7c606fc2a55285282e5bc474c548601f":[4,0,0,2,0,6,3], +"classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#a652c76d4a80534457e52aa3d20637cbe":[4,0,0,2,0,6,2], "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#a7c606fc2a55285282e5bc474c548601f":[5,0,0,0,0,5,3], +"classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#a7c606fc2a55285282e5bc474c548601f":[4,0,0,2,0,6,3], "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#a7feffa017929d65a3fc19c90cbae689d":[4,0,0,2,0,6,6], "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#a7feffa017929d65a3fc19c90cbae689d":[5,0,0,0,0,5,6], -"classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#ab892ee90e4f341e16225b17b813d9e70":[5,0,0,0,0,5,1], "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#ab892ee90e4f341e16225b17b813d9e70":[4,0,0,2,0,6,1], -"classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#ad1fc4507e68ba9759e8f629ddfbd5d82":[5,0,0,0,0,5,0], +"classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#ab892ee90e4f341e16225b17b813d9e70":[5,0,0,0,0,5,1], "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#ad1fc4507e68ba9759e8f629ddfbd5d82":[4,0,0,2,0,6,0], -"classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#afe9b3537b80df119014eb2a34457d29f":[5,0,0,0,0,5,5], +"classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#ad1fc4507e68ba9759e8f629ddfbd5d82":[5,0,0,0,0,5,0], "classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#afe9b3537b80df119014eb2a34457d29f":[4,0,0,2,0,6,5], +"classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#afe9b3537b80df119014eb2a34457d29f":[5,0,0,0,0,5,5], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html":[4,0,0,2,0,7], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html":[5,0,0,0,0,6], -"classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a0a1d6f3ed94808e0c84802aa4310932a":[4,0,0,2,0,7,6], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a0a1d6f3ed94808e0c84802aa4310932a":[5,0,0,0,0,6,6], +"classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a0a1d6f3ed94808e0c84802aa4310932a":[4,0,0,2,0,7,6], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a35500711d2769b513e7ecef2d3e20c9c":[4,0,0,2,0,7,1], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a35500711d2769b513e7ecef2d3e20c9c":[5,0,0,0,0,6,1], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a40596774efdb1024b0f6e195072fde5d":[4,0,0,2,0,7,2], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a40596774efdb1024b0f6e195072fde5d":[5,0,0,0,0,6,2], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a55c73366efd85b96fe3dd17465586b93":[4,0,0,2,0,7,4], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a55c73366efd85b96fe3dd17465586b93":[5,0,0,0,0,6,4], -"classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a97262b9c8791b540840a0cd068cdd87e":[4,0,0,2,0,7,5], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a97262b9c8791b540840a0cd068cdd87e":[5,0,0,0,0,6,5], +"classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a97262b9c8791b540840a0cd068cdd87e":[4,0,0,2,0,7,5], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#abe5c2e910419324b41862110a7c9b890":[4,0,0,2,0,7,0], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#abe5c2e910419324b41862110a7c9b890":[5,0,0,0,0,6,0], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#ad5e82a7ee2a9af35a20f4e6f55fcce6a":[4,0,0,2,0,7,3], "classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#ad5e82a7ee2a9af35a20f4e6f55fcce6a":[5,0,0,0,0,6,3], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html":[4,0,0,2,0,8], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html":[5,0,0,0,0,7], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a02a051a87ae35e876972c09acd482012":[4,0,0,2,0,8,12], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html":[4,0,0,2,0,8], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a02a051a87ae35e876972c09acd482012":[5,0,0,0,0,7,12], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a0609eebe94bc5c9acfaf74439083ed8d":[4,0,0,2,0,8,7], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a02a051a87ae35e876972c09acd482012":[4,0,0,2,0,8,12], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a0609eebe94bc5c9acfaf74439083ed8d":[5,0,0,0,0,7,7], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a0609eebe94bc5c9acfaf74439083ed8d":[4,0,0,2,0,8,7], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a1132e1a80da9af3c8570b58c6d8e5d50":[4,0,0,2,0,8,13], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a1132e1a80da9af3c8570b58c6d8e5d50":[5,0,0,0,0,7,13], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a5a24819c775343fa9e61bc48bcf9ffff":[5,0,0,0,0,7,16], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a5a24819c775343fa9e61bc48bcf9ffff":[4,0,0,2,0,8,16], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a6a34b091a9bf8f03654a533bb469f66c":[4,0,0,2,0,8,19], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a5a24819c775343fa9e61bc48bcf9ffff":[5,0,0,0,0,7,16], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a6a34b091a9bf8f03654a533bb469f66c":[5,0,0,0,0,7,19], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a6e8f15b6471b2555f24184506a0ce478":[5,0,0,0,0,7,11], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a6a34b091a9bf8f03654a533bb469f66c":[4,0,0,2,0,8,19], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a6e8f15b6471b2555f24184506a0ce478":[4,0,0,2,0,8,11], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a74a6b94c9cec014f10eb413fd7bd0ea0":[4,0,0,2,0,8,17], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a6e8f15b6471b2555f24184506a0ce478":[5,0,0,0,0,7,11], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a74a6b94c9cec014f10eb413fd7bd0ea0":[5,0,0,0,0,7,17], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a7f2a276aacd7e57808337d555ac8c721":[4,0,0,2,0,8,14], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a74a6b94c9cec014f10eb413fd7bd0ea0":[4,0,0,2,0,8,17], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a7f2a276aacd7e57808337d555ac8c721":[5,0,0,0,0,7,14], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a7f2a276aacd7e57808337d555ac8c721":[4,0,0,2,0,8,14], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a84c445fd28ba4c60f7dd0ff344ac7b9c":[4,0,0,2,0,8,4], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a84c445fd28ba4c60f7dd0ff344ac7b9c":[5,0,0,0,0,7,4], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a9157fffd656a2af2587ddbf65c2449ce":[4,0,0,2,0,8,15], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a9157fffd656a2af2587ddbf65c2449ce":[5,0,0,0,0,7,15], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a9157fffd656a2af2587ddbf65c2449ce":[4,0,0,2,0,8,15], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a9f51fd4fa6aad2c318df86588ed6a34f":[5,0,0,0,0,7,22], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a9f51fd4fa6aad2c318df86588ed6a34f":[4,0,0,2,0,8,22], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#aa74480eb4341f82afdde5f3b42fc7be6":[5,0,0,0,0,7,8], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#aa74480eb4341f82afdde5f3b42fc7be6":[4,0,0,2,0,8,8], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#aa74480eb4341f82afdde5f3b42fc7be6":[5,0,0,0,0,7,8], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#aa75a22a2b9c18d411bf9a1ab45cdda7f":[5,0,0,0,0,7,6], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#aa75a22a2b9c18d411bf9a1ab45cdda7f":[4,0,0,2,0,8,6], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#aadcee3796bcc3b8abb92fce83b678359":[5,0,0,0,0,7,3], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#aadcee3796bcc3b8abb92fce83b678359":[4,0,0,2,0,8,3], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#ab165453fc9edf268184b3435613b5b32":[4,0,0,2,0,8,10], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#ab165453fc9edf268184b3435613b5b32":[5,0,0,0,0,7,10], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#ab165453fc9edf268184b3435613b5b32":[4,0,0,2,0,8,10], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#ac149f2d7075f8b145000b7edfdf035e2":[5,0,0,0,0,7,18], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#ac149f2d7075f8b145000b7edfdf035e2":[4,0,0,2,0,8,18], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#ac77a08a542ba4d873c0a86047b25953d":[5,0,0,0,0,7,21], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#ac77a08a542ba4d873c0a86047b25953d":[4,0,0,2,0,8,21], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#acd2bb91863149c37e73b9e8ae2a50cf5":[5,0,0,0,0,7,2], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#ac77a08a542ba4d873c0a86047b25953d":[5,0,0,0,0,7,21], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#acd2bb91863149c37e73b9e8ae2a50cf5":[4,0,0,2,0,8,2], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#add44d8cd4ee04ef61120fc0c0d12e550":[4,0,0,2,0,8,20], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#acd2bb91863149c37e73b9e8ae2a50cf5":[5,0,0,0,0,7,2], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#add44d8cd4ee04ef61120fc0c0d12e550":[5,0,0,0,0,7,20], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#add44d8cd4ee04ef61120fc0c0d12e550":[4,0,0,2,0,8,20], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#af6e93d6c222acd895362d37f8993c019":[4,0,0,2,0,8,0], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#af6e93d6c222acd895362d37f8993c019":[5,0,0,0,0,7,0], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#af7341561984039aca2b984078b12b662":[5,0,0,0,0,7,5], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#af7341561984039aca2b984078b12b662":[4,0,0,2,0,8,5], -"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#af8628c44df6fdc91e06ca73061f6a43f":[5,0,0,0,0,7,1], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#af7341561984039aca2b984078b12b662":[5,0,0,0,0,7,5], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#af8628c44df6fdc91e06ca73061f6a43f":[4,0,0,2,0,8,1], +"classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#af8628c44df6fdc91e06ca73061f6a43f":[5,0,0,0,0,7,1], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#af9284b8d9af882703572d3164ad445eb":[5,0,0,0,0,7,9], "classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#af9284b8d9af882703572d3164ad445eb":[4,0,0,2,0,8,9], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html":[4,0,0,2,0,9], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html":[5,0,0,0,0,8], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a3692c20924d005cba324d1972ff59c54":[4,0,0,2,0,9,0], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a3692c20924d005cba324d1972ff59c54":[5,0,0,0,0,8,0], -"classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a7d2ef8bfa25a1dd3f1ce3618d11ac5ce":[5,0,0,0,0,8,5], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a7d2ef8bfa25a1dd3f1ce3618d11ac5ce":[4,0,0,2,0,9,5], +"classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a7d2ef8bfa25a1dd3f1ce3618d11ac5ce":[5,0,0,0,0,8,5], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a7e36ab92c2f8bc9254871ba9f216a588":[5,0,0,0,0,8,9], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a7e36ab92c2f8bc9254871ba9f216a588":[4,0,0,2,0,9,9], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a7e69bbd865512642dbd6858c24e7aef5":[5,0,0,0,0,8,10], @@ -109,8 +107,8 @@ var NAVTREEINDEX9 = "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#aa6404fdd57da73255ee0de5b8b3ea60b":[4,0,0,2,0,9,3], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#ac50255fa40f4a7bb7031aefbe77c3070":[4,0,0,2,0,9,12], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#ac50255fa40f4a7bb7031aefbe77c3070":[5,0,0,0,0,8,12], -"classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#aca0b8d776ff826aa39a4c8bf60b090ac":[4,0,0,2,0,9,4], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#aca0b8d776ff826aa39a4c8bf60b090ac":[5,0,0,0,0,8,4], +"classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#aca0b8d776ff826aa39a4c8bf60b090ac":[4,0,0,2,0,9,4], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#acf49f473495e7a39f8185a461f8c3039":[5,0,0,0,0,8,1], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#acf49f473495e7a39f8185a461f8c3039":[4,0,0,2,0,9,1], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#ae0f7b65acbd06a0941a9f2b7d43df89f":[4,0,0,2,0,9,7], @@ -119,78 +117,78 @@ var NAVTREEINDEX9 = "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#ae57aeec394d31a60595d12a67b4eb35c":[5,0,0,0,0,8,11], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#af06f84fe87675cb60e75e666c407922a":[4,0,0,2,0,9,2], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#af06f84fe87675cb60e75e666c407922a":[5,0,0,0,0,8,2], -"classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#afd8a41d876bcd430e9b9c41ac14c7f61":[4,0,0,2,0,9,6], "classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#afd8a41d876bcd430e9b9c41ac14c7f61":[5,0,0,0,0,8,6], -"classnc_1_1image_processing_1_1_centroid.html":[4,0,0,9,0], +"classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#afd8a41d876bcd430e9b9c41ac14c7f61":[4,0,0,2,0,9,6], "classnc_1_1image_processing_1_1_centroid.html":[5,0,0,1,0], +"classnc_1_1image_processing_1_1_centroid.html":[4,0,0,9,0], "classnc_1_1image_processing_1_1_centroid.html#a093719e81ed5bd5af0cb80dcfd03289f":[4,0,0,9,0,10], "classnc_1_1image_processing_1_1_centroid.html#a093719e81ed5bd5af0cb80dcfd03289f":[5,0,0,1,0,10], "classnc_1_1image_processing_1_1_centroid.html#a098ee235ea6fcf22df2a7a0d80d53e44":[4,0,0,9,0,7], "classnc_1_1image_processing_1_1_centroid.html#a098ee235ea6fcf22df2a7a0d80d53e44":[5,0,0,1,0,7], -"classnc_1_1image_processing_1_1_centroid.html#a0a01c6fd74c73f5cc736678aaf38a167":[5,0,0,1,0,16], "classnc_1_1image_processing_1_1_centroid.html#a0a01c6fd74c73f5cc736678aaf38a167":[4,0,0,9,0,16], +"classnc_1_1image_processing_1_1_centroid.html#a0a01c6fd74c73f5cc736678aaf38a167":[5,0,0,1,0,16], "classnc_1_1image_processing_1_1_centroid.html#a0aed7ca35cd8c7cc37eec0f8c25e0dc2":[4,0,0,9,0,4], "classnc_1_1image_processing_1_1_centroid.html#a0aed7ca35cd8c7cc37eec0f8c25e0dc2":[5,0,0,1,0,4], -"classnc_1_1image_processing_1_1_centroid.html#a139efcdd994d1bacdf62d65b3c427d8d":[4,0,0,9,0,13], "classnc_1_1image_processing_1_1_centroid.html#a139efcdd994d1bacdf62d65b3c427d8d":[5,0,0,1,0,13], +"classnc_1_1image_processing_1_1_centroid.html#a139efcdd994d1bacdf62d65b3c427d8d":[4,0,0,9,0,13], "classnc_1_1image_processing_1_1_centroid.html#a2d109ab927d1a7496073af5c964f3172":[5,0,0,1,0,8], "classnc_1_1image_processing_1_1_centroid.html#a2d109ab927d1a7496073af5c964f3172":[4,0,0,9,0,8], "classnc_1_1image_processing_1_1_centroid.html#a3b97e4ddc31b85eb8c3f84b398429a35":[4,0,0,9,0,1], "classnc_1_1image_processing_1_1_centroid.html#a3b97e4ddc31b85eb8c3f84b398429a35":[5,0,0,1,0,1], "classnc_1_1image_processing_1_1_centroid.html#a4ef0e9b2faa4999af5c3597a60140d6c":[4,0,0,9,0,5], "classnc_1_1image_processing_1_1_centroid.html#a4ef0e9b2faa4999af5c3597a60140d6c":[5,0,0,1,0,5], -"classnc_1_1image_processing_1_1_centroid.html#a503a2542b388f65fb80710dd33610abc":[4,0,0,9,0,11], "classnc_1_1image_processing_1_1_centroid.html#a503a2542b388f65fb80710dd33610abc":[5,0,0,1,0,11], +"classnc_1_1image_processing_1_1_centroid.html#a503a2542b388f65fb80710dd33610abc":[4,0,0,9,0,11], "classnc_1_1image_processing_1_1_centroid.html#a59d0af7acae8d24d29ccb372440aed22":[5,0,0,1,0,2], "classnc_1_1image_processing_1_1_centroid.html#a59d0af7acae8d24d29ccb372440aed22":[4,0,0,9,0,2], "classnc_1_1image_processing_1_1_centroid.html#a8433a28b03cb09ba5d67963b077661bd":[5,0,0,1,0,6], "classnc_1_1image_processing_1_1_centroid.html#a8433a28b03cb09ba5d67963b077661bd":[4,0,0,9,0,6], -"classnc_1_1image_processing_1_1_centroid.html#a89eb742174a9dd27b730ce4502e119cd":[5,0,0,1,0,9], "classnc_1_1image_processing_1_1_centroid.html#a89eb742174a9dd27b730ce4502e119cd":[4,0,0,9,0,9], +"classnc_1_1image_processing_1_1_centroid.html#a89eb742174a9dd27b730ce4502e119cd":[5,0,0,1,0,9], "classnc_1_1image_processing_1_1_centroid.html#aa3546b7b2430b51650f40fb344ab55a8":[4,0,0,9,0,14], "classnc_1_1image_processing_1_1_centroid.html#aa3546b7b2430b51650f40fb344ab55a8":[5,0,0,1,0,14], "classnc_1_1image_processing_1_1_centroid.html#aa39ae81638b8f7ed7b81d4476e2a6316":[4,0,0,9,0,15], "classnc_1_1image_processing_1_1_centroid.html#aa39ae81638b8f7ed7b81d4476e2a6316":[5,0,0,1,0,15], -"classnc_1_1image_processing_1_1_centroid.html#aad242afbcb78cfb650864a2c331d2f1a":[5,0,0,1,0,0], "classnc_1_1image_processing_1_1_centroid.html#aad242afbcb78cfb650864a2c331d2f1a":[4,0,0,9,0,0], -"classnc_1_1image_processing_1_1_centroid.html#ab4861437009bad84b5cb42b74dc11995":[4,0,0,9,0,3], +"classnc_1_1image_processing_1_1_centroid.html#aad242afbcb78cfb650864a2c331d2f1a":[5,0,0,1,0,0], "classnc_1_1image_processing_1_1_centroid.html#ab4861437009bad84b5cb42b74dc11995":[5,0,0,1,0,3], +"classnc_1_1image_processing_1_1_centroid.html#ab4861437009bad84b5cb42b74dc11995":[4,0,0,9,0,3], "classnc_1_1image_processing_1_1_centroid.html#ae60198fea1dd29418adbf5e943251d67":[5,0,0,1,0,12], "classnc_1_1image_processing_1_1_centroid.html#ae60198fea1dd29418adbf5e943251d67":[4,0,0,9,0,12], -"classnc_1_1image_processing_1_1_cluster.html":[5,0,0,1,1], "classnc_1_1image_processing_1_1_cluster.html":[4,0,0,9,1], +"classnc_1_1image_processing_1_1_cluster.html":[5,0,0,1,1], "classnc_1_1image_processing_1_1_cluster.html#a243ffe7ecbcf4473e1225e6694624c08":[5,0,0,1,1,0], "classnc_1_1image_processing_1_1_cluster.html#a243ffe7ecbcf4473e1225e6694624c08":[4,0,0,9,1,0], "classnc_1_1image_processing_1_1_cluster.html#a27734d0fa45c7440e3018fa36c6633f9":[5,0,0,1,1,9], "classnc_1_1image_processing_1_1_cluster.html#a27734d0fa45c7440e3018fa36c6633f9":[4,0,0,9,1,9], -"classnc_1_1image_processing_1_1_cluster.html#a3b344c255dfcfcf18e0fc9f1e84979ae":[5,0,0,1,1,1], "classnc_1_1image_processing_1_1_cluster.html#a3b344c255dfcfcf18e0fc9f1e84979ae":[4,0,0,9,1,1], -"classnc_1_1image_processing_1_1_cluster.html#a461863af036452bdb1813dfff33c7c42":[4,0,0,9,1,11], +"classnc_1_1image_processing_1_1_cluster.html#a3b344c255dfcfcf18e0fc9f1e84979ae":[5,0,0,1,1,1], "classnc_1_1image_processing_1_1_cluster.html#a461863af036452bdb1813dfff33c7c42":[5,0,0,1,1,11], +"classnc_1_1image_processing_1_1_cluster.html#a461863af036452bdb1813dfff33c7c42":[4,0,0,9,1,11], "classnc_1_1image_processing_1_1_cluster.html#a58eea870dca4a5c61cfd4db24ea50267":[5,0,0,1,1,19], "classnc_1_1image_processing_1_1_cluster.html#a58eea870dca4a5c61cfd4db24ea50267":[4,0,0,9,1,19], "classnc_1_1image_processing_1_1_cluster.html#a6e761b470453d5506015b9332b12e4a4":[5,0,0,1,1,6], "classnc_1_1image_processing_1_1_cluster.html#a6e761b470453d5506015b9332b12e4a4":[4,0,0,9,1,6], -"classnc_1_1image_processing_1_1_cluster.html#a71ccd5ee3fea70b4b1b27ba25f4b3fb8":[5,0,0,1,1,12], "classnc_1_1image_processing_1_1_cluster.html#a71ccd5ee3fea70b4b1b27ba25f4b3fb8":[4,0,0,9,1,12], -"classnc_1_1image_processing_1_1_cluster.html#a73ce20625b5ca5d9e0d872cc8ad885dc":[4,0,0,9,1,3], +"classnc_1_1image_processing_1_1_cluster.html#a71ccd5ee3fea70b4b1b27ba25f4b3fb8":[5,0,0,1,1,12], "classnc_1_1image_processing_1_1_cluster.html#a73ce20625b5ca5d9e0d872cc8ad885dc":[5,0,0,1,1,3], -"classnc_1_1image_processing_1_1_cluster.html#a8308c5f0313872c9499de36d69d0ff19":[4,0,0,9,1,15], +"classnc_1_1image_processing_1_1_cluster.html#a73ce20625b5ca5d9e0d872cc8ad885dc":[4,0,0,9,1,3], "classnc_1_1image_processing_1_1_cluster.html#a8308c5f0313872c9499de36d69d0ff19":[5,0,0,1,1,15], +"classnc_1_1image_processing_1_1_cluster.html#a8308c5f0313872c9499de36d69d0ff19":[4,0,0,9,1,15], "classnc_1_1image_processing_1_1_cluster.html#a84f695cac046f8fdee8c6abf87b8ff1a":[5,0,0,1,1,24], "classnc_1_1image_processing_1_1_cluster.html#a84f695cac046f8fdee8c6abf87b8ff1a":[4,0,0,9,1,24], "classnc_1_1image_processing_1_1_cluster.html#a8c884e5e55d41c09165bca85446edb1f":[4,0,0,9,1,8], "classnc_1_1image_processing_1_1_cluster.html#a8c884e5e55d41c09165bca85446edb1f":[5,0,0,1,1,8], -"classnc_1_1image_processing_1_1_cluster.html#a9c84aca9710bec5c721fd6a9f94182c3":[5,0,0,1,1,2], "classnc_1_1image_processing_1_1_cluster.html#a9c84aca9710bec5c721fd6a9f94182c3":[4,0,0,9,1,2], -"classnc_1_1image_processing_1_1_cluster.html#a9cab13be79b63d9151e60a798ca39cb5":[5,0,0,1,1,4], +"classnc_1_1image_processing_1_1_cluster.html#a9c84aca9710bec5c721fd6a9f94182c3":[5,0,0,1,1,2], "classnc_1_1image_processing_1_1_cluster.html#a9cab13be79b63d9151e60a798ca39cb5":[4,0,0,9,1,4], +"classnc_1_1image_processing_1_1_cluster.html#a9cab13be79b63d9151e60a798ca39cb5":[5,0,0,1,1,4], "classnc_1_1image_processing_1_1_cluster.html#aa023fb6ea06515f18cd629b155f96a2c":[5,0,0,1,1,14], "classnc_1_1image_processing_1_1_cluster.html#aa023fb6ea06515f18cd629b155f96a2c":[4,0,0,9,1,14], -"classnc_1_1image_processing_1_1_cluster.html#aaa1ee55d0c47196847b8bb1a76258bd3":[4,0,0,9,1,22], "classnc_1_1image_processing_1_1_cluster.html#aaa1ee55d0c47196847b8bb1a76258bd3":[5,0,0,1,1,22], -"classnc_1_1image_processing_1_1_cluster.html#aab51c1c4539c3824bcdbd20a5db1fd4a":[4,0,0,9,1,17], +"classnc_1_1image_processing_1_1_cluster.html#aaa1ee55d0c47196847b8bb1a76258bd3":[4,0,0,9,1,22], "classnc_1_1image_processing_1_1_cluster.html#aab51c1c4539c3824bcdbd20a5db1fd4a":[5,0,0,1,1,17], +"classnc_1_1image_processing_1_1_cluster.html#aab51c1c4539c3824bcdbd20a5db1fd4a":[4,0,0,9,1,17], "classnc_1_1image_processing_1_1_cluster.html#abcc9f76b1d903546a3604ef87795d37e":[5,0,0,1,1,7], "classnc_1_1image_processing_1_1_cluster.html#abcc9f76b1d903546a3604ef87795d37e":[4,0,0,9,1,7], "classnc_1_1image_processing_1_1_cluster.html#abff111af8d260b45e8657507d067eac8":[5,0,0,1,1,13], @@ -201,53 +199,55 @@ var NAVTREEINDEX9 = "classnc_1_1image_processing_1_1_cluster.html#ac7a1671ccc52ba9ff878a906f037c7f2":[5,0,0,1,1,5], "classnc_1_1image_processing_1_1_cluster.html#accbfd3dbb32016c0f4234614347d74ce":[4,0,0,9,1,23], "classnc_1_1image_processing_1_1_cluster.html#accbfd3dbb32016c0f4234614347d74ce":[5,0,0,1,1,23], -"classnc_1_1image_processing_1_1_cluster.html#ae89900f4557d6273fc49b330417e324e":[5,0,0,1,1,21], "classnc_1_1image_processing_1_1_cluster.html#ae89900f4557d6273fc49b330417e324e":[4,0,0,9,1,21], +"classnc_1_1image_processing_1_1_cluster.html#ae89900f4557d6273fc49b330417e324e":[5,0,0,1,1,21], "classnc_1_1image_processing_1_1_cluster.html#af859b6a7dece380c955836deb1b024b9":[5,0,0,1,1,16], "classnc_1_1image_processing_1_1_cluster.html#af859b6a7dece380c955836deb1b024b9":[4,0,0,9,1,16], "classnc_1_1image_processing_1_1_cluster.html#afc8b5d168cf1d611be9f5226ec7efd55":[4,0,0,9,1,10], "classnc_1_1image_processing_1_1_cluster.html#afc8b5d168cf1d611be9f5226ec7efd55":[5,0,0,1,1,10], -"classnc_1_1image_processing_1_1_cluster.html#afdb1943f70f28747a1e83b74de984972":[5,0,0,1,1,18], "classnc_1_1image_processing_1_1_cluster.html#afdb1943f70f28747a1e83b74de984972":[4,0,0,9,1,18], -"classnc_1_1image_processing_1_1_cluster_maker.html":[5,0,0,1,2], +"classnc_1_1image_processing_1_1_cluster.html#afdb1943f70f28747a1e83b74de984972":[5,0,0,1,1,18], "classnc_1_1image_processing_1_1_cluster_maker.html":[4,0,0,9,2], -"classnc_1_1image_processing_1_1_cluster_maker.html#a17c7a9f6260f7d6d0aea002b7e5e6ae6":[4,0,0,9,2,1], +"classnc_1_1image_processing_1_1_cluster_maker.html":[5,0,0,1,2], "classnc_1_1image_processing_1_1_cluster_maker.html#a17c7a9f6260f7d6d0aea002b7e5e6ae6":[5,0,0,1,2,1], -"classnc_1_1image_processing_1_1_cluster_maker.html#a37c172d7253190e76b065ed2547c3020":[5,0,0,1,2,3], +"classnc_1_1image_processing_1_1_cluster_maker.html#a17c7a9f6260f7d6d0aea002b7e5e6ae6":[4,0,0,9,2,1], "classnc_1_1image_processing_1_1_cluster_maker.html#a37c172d7253190e76b065ed2547c3020":[4,0,0,9,2,3], -"classnc_1_1image_processing_1_1_cluster_maker.html#a7d5ceccddb2db3b143c772ec9d66460a":[4,0,0,9,2,4], +"classnc_1_1image_processing_1_1_cluster_maker.html#a37c172d7253190e76b065ed2547c3020":[5,0,0,1,2,3], "classnc_1_1image_processing_1_1_cluster_maker.html#a7d5ceccddb2db3b143c772ec9d66460a":[5,0,0,1,2,4], +"classnc_1_1image_processing_1_1_cluster_maker.html#a7d5ceccddb2db3b143c772ec9d66460a":[4,0,0,9,2,4], "classnc_1_1image_processing_1_1_cluster_maker.html#a870aeb2f713b4efba22a2f978704c215":[4,0,0,9,2,0], "classnc_1_1image_processing_1_1_cluster_maker.html#a870aeb2f713b4efba22a2f978704c215":[5,0,0,1,2,0], -"classnc_1_1image_processing_1_1_cluster_maker.html#aa32e1c0323231d374efe444fb2bf618d":[5,0,0,1,2,2], "classnc_1_1image_processing_1_1_cluster_maker.html#aa32e1c0323231d374efe444fb2bf618d":[4,0,0,9,2,2], +"classnc_1_1image_processing_1_1_cluster_maker.html#aa32e1c0323231d374efe444fb2bf618d":[5,0,0,1,2,2], "classnc_1_1image_processing_1_1_cluster_maker.html#ac197c22f0caa854abc78bd5a02d91f39":[4,0,0,9,2,5], "classnc_1_1image_processing_1_1_cluster_maker.html#ac197c22f0caa854abc78bd5a02d91f39":[5,0,0,1,2,5], "classnc_1_1image_processing_1_1_cluster_maker.html#ae437071bfc291a36745d043ddd4cba1d":[4,0,0,9,2,6], "classnc_1_1image_processing_1_1_cluster_maker.html#ae437071bfc291a36745d043ddd4cba1d":[5,0,0,1,2,6], -"classnc_1_1image_processing_1_1_pixel.html":[4,0,0,9,3], "classnc_1_1image_processing_1_1_pixel.html":[5,0,0,1,3], -"classnc_1_1image_processing_1_1_pixel.html#a008757a06c498b1a31e26d53a54e51dc":[4,0,0,9,3,4], +"classnc_1_1image_processing_1_1_pixel.html":[4,0,0,9,3], "classnc_1_1image_processing_1_1_pixel.html#a008757a06c498b1a31e26d53a54e51dc":[5,0,0,1,3,4], -"classnc_1_1image_processing_1_1_pixel.html#a0d7095db72d4478f37d6e371e77509be":[4,0,0,9,3,0], +"classnc_1_1image_processing_1_1_pixel.html#a008757a06c498b1a31e26d53a54e51dc":[4,0,0,9,3,4], "classnc_1_1image_processing_1_1_pixel.html#a0d7095db72d4478f37d6e371e77509be":[5,0,0,1,3,0], +"classnc_1_1image_processing_1_1_pixel.html#a0d7095db72d4478f37d6e371e77509be":[4,0,0,9,3,0], "classnc_1_1image_processing_1_1_pixel.html#a2ffea8fff18945da4971ab4c847a49bd":[4,0,0,9,3,10], "classnc_1_1image_processing_1_1_pixel.html#a2ffea8fff18945da4971ab4c847a49bd":[5,0,0,1,3,10], "classnc_1_1image_processing_1_1_pixel.html#a38419b5ab40a281ec6932b5c770b3880":[4,0,0,9,3,7], "classnc_1_1image_processing_1_1_pixel.html#a38419b5ab40a281ec6932b5c770b3880":[5,0,0,1,3,7], -"classnc_1_1image_processing_1_1_pixel.html#a3a8fb91578395ef70a5f6038c4c48062":[4,0,0,9,3,5], "classnc_1_1image_processing_1_1_pixel.html#a3a8fb91578395ef70a5f6038c4c48062":[5,0,0,1,3,5], +"classnc_1_1image_processing_1_1_pixel.html#a3a8fb91578395ef70a5f6038c4c48062":[4,0,0,9,3,5], "classnc_1_1image_processing_1_1_pixel.html#a4b80694a366506909633ff28c74b4042":[5,0,0,1,3,2], "classnc_1_1image_processing_1_1_pixel.html#a4b80694a366506909633ff28c74b4042":[4,0,0,9,3,2], -"classnc_1_1image_processing_1_1_pixel.html#a4d1db82b1617d892266270d2bec28f61":[5,0,0,1,3,1], "classnc_1_1image_processing_1_1_pixel.html#a4d1db82b1617d892266270d2bec28f61":[4,0,0,9,3,1], +"classnc_1_1image_processing_1_1_pixel.html#a4d1db82b1617d892266270d2bec28f61":[5,0,0,1,3,1], "classnc_1_1image_processing_1_1_pixel.html#a592926833195d4f2587efef12e4b1148":[4,0,0,9,3,3], "classnc_1_1image_processing_1_1_pixel.html#a592926833195d4f2587efef12e4b1148":[5,0,0,1,3,3], -"classnc_1_1image_processing_1_1_pixel.html#a6749c7a5513e2b7ee5c027aef104b269":[4,0,0,9,3,9], "classnc_1_1image_processing_1_1_pixel.html#a6749c7a5513e2b7ee5c027aef104b269":[5,0,0,1,3,9], +"classnc_1_1image_processing_1_1_pixel.html#a6749c7a5513e2b7ee5c027aef104b269":[4,0,0,9,3,9], "classnc_1_1image_processing_1_1_pixel.html#a6e712ef3b6547f5cafb6e8db1349658e":[5,0,0,1,3,11], "classnc_1_1image_processing_1_1_pixel.html#a6e712ef3b6547f5cafb6e8db1349658e":[4,0,0,9,3,11], -"classnc_1_1image_processing_1_1_pixel.html#ac22936e8b5b80a1c557faaf9722b3183":[5,0,0,1,3,8], "classnc_1_1image_processing_1_1_pixel.html#ac22936e8b5b80a1c557faaf9722b3183":[4,0,0,9,3,8], -"classnc_1_1image_processing_1_1_pixel.html#ae47f279d2f0ba0921027e787e3773ee8":[5,0,0,1,3,6] +"classnc_1_1image_processing_1_1_pixel.html#ac22936e8b5b80a1c557faaf9722b3183":[5,0,0,1,3,8], +"classnc_1_1image_processing_1_1_pixel.html#ae47f279d2f0ba0921027e787e3773ee8":[5,0,0,1,3,6], +"classnc_1_1image_processing_1_1_pixel.html#ae47f279d2f0ba0921027e787e3773ee8":[4,0,0,9,3,6], +"classnc_1_1integrate_1_1_legendre_polynomial.html":[5,0,0,2,0] }; diff --git a/docs/doxygen/html/nbytes_8hpp.html b/docs/doxygen/html/nbytes_8hpp.html index 2a934564c..f6d6be7e0 100644 --- a/docs/doxygen/html/nbytes_8hpp.html +++ b/docs/doxygen/html/nbytes_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nbytes_8hpp_source.html b/docs/doxygen/html/nbytes_8hpp_source.html index b61aacb70..d9484ea98 100644 --- a/docs/doxygen/html/nbytes_8hpp_source.html +++ b/docs/doxygen/html/nbytes_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nearest1d_8hpp.html b/docs/doxygen/html/nearest1d_8hpp.html index 1a889b26f..fa9380468 100644 --- a/docs/doxygen/html/nearest1d_8hpp.html +++ b/docs/doxygen/html/nearest1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nearest1d_8hpp_source.html b/docs/doxygen/html/nearest1d_8hpp_source.html index 12c0e1cf5..d88144c81 100644 --- a/docs/doxygen/html/nearest1d_8hpp_source.html +++ b/docs/doxygen/html/nearest1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nearest2d_8hpp.html b/docs/doxygen/html/nearest2d_8hpp.html index 86b049708..254b8668f 100644 --- a/docs/doxygen/html/nearest2d_8hpp.html +++ b/docs/doxygen/html/nearest2d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nearest2d_8hpp_source.html b/docs/doxygen/html/nearest2d_8hpp_source.html index 2e162ecdc..590dc804e 100644 --- a/docs/doxygen/html/nearest2d_8hpp_source.html +++ b/docs/doxygen/html/nearest2d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/negative_8hpp.html b/docs/doxygen/html/negative_8hpp.html index 2b54e7683..cb791fb9c 100644 --- a/docs/doxygen/html/negative_8hpp.html +++ b/docs/doxygen/html/negative_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/negative_8hpp_source.html b/docs/doxygen/html/negative_8hpp_source.html index f2e03b613..3f531094f 100644 --- a/docs/doxygen/html/negative_8hpp_source.html +++ b/docs/doxygen/html/negative_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/negative_binomial_8hpp.html b/docs/doxygen/html/negative_binomial_8hpp.html index 00e3d3714..22aa1019a 100644 --- a/docs/doxygen/html/negative_binomial_8hpp.html +++ b/docs/doxygen/html/negative_binomial_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/negative_binomial_8hpp_source.html b/docs/doxygen/html/negative_binomial_8hpp_source.html index bb9667fd0..9c05ac6d4 100644 --- a/docs/doxygen/html/negative_binomial_8hpp_source.html +++ b/docs/doxygen/html/negative_binomial_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/newbyteorder_8hpp.html b/docs/doxygen/html/newbyteorder_8hpp.html index 8e709794c..f3280cb6c 100644 --- a/docs/doxygen/html/newbyteorder_8hpp.html +++ b/docs/doxygen/html/newbyteorder_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/newbyteorder_8hpp_source.html b/docs/doxygen/html/newbyteorder_8hpp_source.html index 51bf84ca6..7c561c6cc 100644 --- a/docs/doxygen/html/newbyteorder_8hpp_source.html +++ b/docs/doxygen/html/newbyteorder_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/non_central_chi_squared_8hpp.html b/docs/doxygen/html/non_central_chi_squared_8hpp.html index b0fd5a842..4d5b3e185 100644 --- a/docs/doxygen/html/non_central_chi_squared_8hpp.html +++ b/docs/doxygen/html/non_central_chi_squared_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/non_central_chi_squared_8hpp_source.html b/docs/doxygen/html/non_central_chi_squared_8hpp_source.html index f3364c953..a78363f53 100644 --- a/docs/doxygen/html/non_central_chi_squared_8hpp_source.html +++ b/docs/doxygen/html/non_central_chi_squared_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/none_8hpp.html b/docs/doxygen/html/none_8hpp.html index cc77294e4..113fa80e5 100644 --- a/docs/doxygen/html/none_8hpp.html +++ b/docs/doxygen/html/none_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/none_8hpp_source.html b/docs/doxygen/html/none_8hpp_source.html index 0522729a1..f39609458 100644 --- a/docs/doxygen/html/none_8hpp_source.html +++ b/docs/doxygen/html/none_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nonzero_8hpp.html b/docs/doxygen/html/nonzero_8hpp.html index c7e3d7adc..5f5f1d807 100644 --- a/docs/doxygen/html/nonzero_8hpp.html +++ b/docs/doxygen/html/nonzero_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nonzero_8hpp_source.html b/docs/doxygen/html/nonzero_8hpp_source.html index c7476bb16..8d587d737 100644 --- a/docs/doxygen/html/nonzero_8hpp_source.html +++ b/docs/doxygen/html/nonzero_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/norm_8hpp.html b/docs/doxygen/html/norm_8hpp.html index 8fa382d55..90b3c1496 100644 --- a/docs/doxygen/html/norm_8hpp.html +++ b/docs/doxygen/html/norm_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/norm_8hpp_source.html b/docs/doxygen/html/norm_8hpp_source.html index 725d1f3fb..c9772928c 100644 --- a/docs/doxygen/html/norm_8hpp_source.html +++ b/docs/doxygen/html/norm_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/normal_8hpp.html b/docs/doxygen/html/normal_8hpp.html index 567f98e96..4d5c665d9 100644 --- a/docs/doxygen/html/normal_8hpp.html +++ b/docs/doxygen/html/normal_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/normal_8hpp_source.html b/docs/doxygen/html/normal_8hpp_source.html index 86c054529..10e019269 100644 --- a/docs/doxygen/html/normal_8hpp_source.html +++ b/docs/doxygen/html/normal_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/normalize_8hpp.html b/docs/doxygen/html/normalize_8hpp.html index e7f543261..cfc149879 100644 --- a/docs/doxygen/html/normalize_8hpp.html +++ b/docs/doxygen/html/normalize_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/normalize_8hpp_source.html b/docs/doxygen/html/normalize_8hpp_source.html index dc17b7d1f..b05c4bbbe 100644 --- a/docs/doxygen/html/normalize_8hpp_source.html +++ b/docs/doxygen/html/normalize_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/not__equal_8hpp.html b/docs/doxygen/html/not__equal_8hpp.html index 3beb2bd83..271c485e7 100644 --- a/docs/doxygen/html/not__equal_8hpp.html +++ b/docs/doxygen/html/not__equal_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/not__equal_8hpp_source.html b/docs/doxygen/html/not__equal_8hpp_source.html index 61692223a..d9048e5d6 100644 --- a/docs/doxygen/html/not__equal_8hpp_source.html +++ b/docs/doxygen/html/not__equal_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nth__root_8hpp.html b/docs/doxygen/html/nth__root_8hpp.html index 3fdde6812..424a4e52b 100644 --- a/docs/doxygen/html/nth__root_8hpp.html +++ b/docs/doxygen/html/nth__root_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/nth__root_8hpp_source.html b/docs/doxygen/html/nth__root_8hpp_source.html index 9682032fd..d58eb666f 100644 --- a/docs/doxygen/html/nth__root_8hpp_source.html +++ b/docs/doxygen/html/nth__root_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/num2str_8hpp.html b/docs/doxygen/html/num2str_8hpp.html index 521d1e869..f186642c2 100644 --- a/docs/doxygen/html/num2str_8hpp.html +++ b/docs/doxygen/html/num2str_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/num2str_8hpp_source.html b/docs/doxygen/html/num2str_8hpp_source.html index db85070a1..ff4cf944d 100644 --- a/docs/doxygen/html/num2str_8hpp_source.html +++ b/docs/doxygen/html/num2str_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ones_8hpp.html b/docs/doxygen/html/ones_8hpp.html index 28a53d1ab..5fa5875c2 100644 --- a/docs/doxygen/html/ones_8hpp.html +++ b/docs/doxygen/html/ones_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ones_8hpp_source.html b/docs/doxygen/html/ones_8hpp_source.html index e6fca2342..c768e7a2b 100644 --- a/docs/doxygen/html/ones_8hpp_source.html +++ b/docs/doxygen/html/ones_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ones__like_8hpp.html b/docs/doxygen/html/ones__like_8hpp.html index c63184665..8befee3cf 100644 --- a/docs/doxygen/html/ones__like_8hpp.html +++ b/docs/doxygen/html/ones__like_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ones__like_8hpp_source.html b/docs/doxygen/html/ones__like_8hpp_source.html index 33eed4e1b..51908fe66 100644 --- a/docs/doxygen/html/ones__like_8hpp_source.html +++ b/docs/doxygen/html/ones__like_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/outer_8hpp.html b/docs/doxygen/html/outer_8hpp.html index e598c4700..268cf6e9e 100644 --- a/docs/doxygen/html/outer_8hpp.html +++ b/docs/doxygen/html/outer_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/outer_8hpp_source.html b/docs/doxygen/html/outer_8hpp_source.html index 05a6f4634..9f65e7777 100644 --- a/docs/doxygen/html/outer_8hpp_source.html +++ b/docs/doxygen/html/outer_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -141,36 +141,30 @@
                              51 {
                              53
                              -
                              54 const auto size = inArray1.size();
                              -
                              55
                              -
                              56 if (size != inArray2.size())
                              -
                              57 {
                              -
                              58 THROW_INVALID_ARGUMENT_ERROR("Input arrays must be the same length");
                              -
                              59 }
                              -
                              60
                              - -
                              62 for (uint32 row = 0; row < size; ++row)
                              -
                              63 {
                              -
                              64 const auto array1Value = inArray1[row];
                              -
                              65
                              -
                              66 std::transform(inArray2.begin(),
                              -
                              67 inArray2.end(),
                              -
                              68 returnArray.begin(row),
                              -
                              69 [array1Value](dtype value) -> dtype { return array1Value * value; });
                              -
                              70 }
                              -
                              71
                              -
                              72 return returnArray;
                              -
                              73 }
                              +
                              54 const auto size1 = inArray1.size();
                              +
                              55 const auto size2 = inArray2.size();
                              +
                              56
                              + +
                              58 for (uint32 row = 0; row < size1; ++row)
                              +
                              59 {
                              +
                              60 const auto array1Value = inArray1[row];
                              +
                              61
                              +
                              62 std::transform(inArray2.begin(),
                              +
                              63 inArray2.end(),
                              +
                              64 returnArray.begin(row),
                              +
                              65 [array1Value](dtype value) -> dtype { return array1Value * value; });
                              +
                              66 }
                              +
                              67
                              +
                              68 return returnArray;
                              +
                              69 }
                              -
                              74} // namespace nc
                              +
                              70} // namespace nc
                              -
                              #define THROW_INVALID_ARGUMENT_ERROR(msg)
                              Definition Error.hpp:37
                              #define STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype)
                              Definition StaticAsserts.hpp:56
                              Holds 1D and 2D arrays, the main work horse of the NumCpp library.
                              Definition NdArrayCore.hpp:139
                              Definition Cartesian.hpp:40
                              -
                              uint32 size(const NdArray< dtype > &inArray) noexcept
                              Definition size.hpp:43
                              NdArray< dtype > outer(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)
                              Definition outer.hpp:50
                              NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
                              Definition arange.hpp:59
                              std::uint32_t uint32
                              Definition Types.hpp:40
                              diff --git a/docs/doxygen/html/packbits_8hpp.html b/docs/doxygen/html/packbits_8hpp.html index b2ae25964..7ddf9616c 100644 --- a/docs/doxygen/html/packbits_8hpp.html +++ b/docs/doxygen/html/packbits_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/packbits_8hpp_source.html b/docs/doxygen/html/packbits_8hpp_source.html index 905781de6..2ebf58b91 100644 --- a/docs/doxygen/html/packbits_8hpp_source.html +++ b/docs/doxygen/html/packbits_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/pad_8hpp.html b/docs/doxygen/html/pad_8hpp.html index e63ec79f4..c3626598e 100644 --- a/docs/doxygen/html/pad_8hpp.html +++ b/docs/doxygen/html/pad_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/pad_8hpp_source.html b/docs/doxygen/html/pad_8hpp_source.html index 5174a4834..cc4278399 100644 --- a/docs/doxygen/html/pad_8hpp_source.html +++ b/docs/doxygen/html/pad_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/pages.html b/docs/doxygen/html/pages.html index 593fd522a..019a438cd 100644 --- a/docs/doxygen/html/pages.html +++ b/docs/doxygen/html/pages.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/partition_8hpp.html b/docs/doxygen/html/partition_8hpp.html index e50da7cf2..1a8bef106 100644 --- a/docs/doxygen/html/partition_8hpp.html +++ b/docs/doxygen/html/partition_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/partition_8hpp_source.html b/docs/doxygen/html/partition_8hpp_source.html index efbd679fd..71935db13 100644 --- a/docs/doxygen/html/partition_8hpp_source.html +++ b/docs/doxygen/html/partition_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/percentile_8hpp.html b/docs/doxygen/html/percentile_8hpp.html index b4a38b60d..2b4938390 100644 --- a/docs/doxygen/html/percentile_8hpp.html +++ b/docs/doxygen/html/percentile_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/percentile_8hpp_source.html b/docs/doxygen/html/percentile_8hpp_source.html index 31569c938..2e9618512 100644 --- a/docs/doxygen/html/percentile_8hpp_source.html +++ b/docs/doxygen/html/percentile_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/percentile_filter1d_8hpp.html b/docs/doxygen/html/percentile_filter1d_8hpp.html index 2fec0ea98..fee4bfbb8 100644 --- a/docs/doxygen/html/percentile_filter1d_8hpp.html +++ b/docs/doxygen/html/percentile_filter1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/percentile_filter1d_8hpp_source.html b/docs/doxygen/html/percentile_filter1d_8hpp_source.html index 7151eda95..e97203004 100644 --- a/docs/doxygen/html/percentile_filter1d_8hpp_source.html +++ b/docs/doxygen/html/percentile_filter1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/percentile_filter_8hpp.html b/docs/doxygen/html/percentile_filter_8hpp.html index 6f9848bea..db20cefe6 100644 --- a/docs/doxygen/html/percentile_filter_8hpp.html +++ b/docs/doxygen/html/percentile_filter_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/percentile_filter_8hpp_source.html b/docs/doxygen/html/percentile_filter_8hpp_source.html index b2b1886b3..2b6427f8b 100644 --- a/docs/doxygen/html/percentile_filter_8hpp_source.html +++ b/docs/doxygen/html/percentile_filter_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/permutation_8hpp.html b/docs/doxygen/html/permutation_8hpp.html index eaab4789c..5605877ae 100644 --- a/docs/doxygen/html/permutation_8hpp.html +++ b/docs/doxygen/html/permutation_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/permutation_8hpp_source.html b/docs/doxygen/html/permutation_8hpp_source.html index 81cd1f3af..72b26915e 100644 --- a/docs/doxygen/html/permutation_8hpp_source.html +++ b/docs/doxygen/html/permutation_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/pinv_8hpp.html b/docs/doxygen/html/pinv_8hpp.html index ab73b49b2..97ac442f1 100644 --- a/docs/doxygen/html/pinv_8hpp.html +++ b/docs/doxygen/html/pinv_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -123,8 +123,7 @@

                              Go to the source code of this file.

                              diff --git a/docs/doxygen/html/pinv_8hpp_source.html b/docs/doxygen/html/pinv_8hpp_source.html index da7b9ffbf..e24f12503 100644 --- a/docs/doxygen/html/pinv_8hpp_source.html +++ b/docs/doxygen/html/pinv_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -129,51 +129,34 @@
                              31
                              33#include "NumCpp/Core/Types.hpp"
                              - -
                              35#include "NumCpp/Linalg/svd.hpp"
                              -
                              36#include "NumCpp/NdArray.hpp"
                              -
                              37
                              -
                              38namespace nc::linalg
                              -
                              39{
                              -
                              40 //============================================================================
                              -
                              41 // Method Description:
                              -
                              49 template<typename dtype>
                              -
                              - -
                              51 {
                              - -
                              53
                              - - - -
                              57 svd(inArray, u, d, v);
                              -
                              58
                              -
                              59 const auto inShape = inArray.shape();
                              -
                              60 auto dPlus = nc::zeros<double>(inShape.cols, inShape.rows); // transpose
                              -
                              61
                              -
                              62 for (uint32 i = 0; i < d.shape().rows; ++i)
                              -
                              63 {
                              -
                              64 dPlus(i, i) = 1. / d(i, i);
                              -
                              65 }
                              -
                              66
                              -
                              67 return v.transpose().dot(dPlus).dot(u.transpose());
                              -
                              68 }
                              + +
                              35#include "NumCpp/NdArray.hpp"
                              +
                              36
                              +
                              37namespace nc::linalg
                              +
                              38{
                              +
                              39 //============================================================================
                              +
                              40 // Method Description:
                              +
                              48 template<typename dtype>
                              + -
                              69} // namespace nc::linalg
                              +
                              55} // namespace nc::linalg
                              #define STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype)
                              Definition StaticAsserts.hpp:56
                              Holds 1D and 2D arrays, the main work horse of the NumCpp library.
                              Definition NdArrayCore.hpp:139
                              -
                              self_type transpose() const
                              Definition NdArrayCore.hpp:4959
                              -
                              self_type dot(const self_type &inOtherArray) const
                              Definition NdArrayCore.hpp:2795
                              +
                              Performs the singular value decomposition of a general matrix.
                              Definition svd/svd.hpp:50
                              +
                              NdArray< double > pinv()
                              Definition svd/svd.hpp:109
                              Definition cholesky.hpp:41
                              -
                              NdArray< double > pinv(const NdArray< dtype > &inArray)
                              Definition pinv.hpp:50
                              -
                              void svd(const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVt)
                              Definition svd.hpp:51
                              +
                              NdArray< double > pinv(const NdArray< dtype > &inArray)
                              Definition pinv.hpp:49
                              NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
                              Definition arange.hpp:59
                              -
                              std::uint32_t uint32
                              Definition Types.hpp:40
                              - - +
                              diff --git a/docs/doxygen/html/pivot_l_u__decomposition_8hpp.html b/docs/doxygen/html/pivot_l_u__decomposition_8hpp.html index 7c4949433..83cbd1c13 100644 --- a/docs/doxygen/html/pivot_l_u__decomposition_8hpp.html +++ b/docs/doxygen/html/pivot_l_u__decomposition_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/pivot_l_u__decomposition_8hpp_source.html b/docs/doxygen/html/pivot_l_u__decomposition_8hpp_source.html index a36dde238..758cb73c2 100644 --- a/docs/doxygen/html/pivot_l_u__decomposition_8hpp_source.html +++ b/docs/doxygen/html/pivot_l_u__decomposition_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -146,7 +146,7 @@
                              58 {
                              60
                              -
                              61 const auto shape = inMatrix.shape();
                              +
                              61 const auto& shape = inMatrix.shape();
                              62
                              63 if (!shape.issquare())
                              64 {
                              diff --git a/docs/doxygen/html/place_8hpp.html b/docs/doxygen/html/place_8hpp.html index 972ee886e..0c802ccc5 100644 --- a/docs/doxygen/html/place_8hpp.html +++ b/docs/doxygen/html/place_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/place_8hpp_source.html b/docs/doxygen/html/place_8hpp_source.html index 87f923166..dcc7ff355 100644 --- a/docs/doxygen/html/place_8hpp_source.html +++ b/docs/doxygen/html/place_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/pnr_8hpp.html b/docs/doxygen/html/pnr_8hpp.html index 2c7c7e83e..989c31a90 100644 --- a/docs/doxygen/html/pnr_8hpp.html +++ b/docs/doxygen/html/pnr_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/pnr_8hpp_source.html b/docs/doxygen/html/pnr_8hpp_source.html index 993019f35..7f6a0a5d2 100644 --- a/docs/doxygen/html/pnr_8hpp_source.html +++ b/docs/doxygen/html/pnr_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/poisson_8hpp.html b/docs/doxygen/html/poisson_8hpp.html index 0f8848789..d8de9032a 100644 --- a/docs/doxygen/html/poisson_8hpp.html +++ b/docs/doxygen/html/poisson_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/poisson_8hpp_source.html b/docs/doxygen/html/poisson_8hpp_source.html index 2908ac753..e7ab4344c 100644 --- a/docs/doxygen/html/poisson_8hpp_source.html +++ b/docs/doxygen/html/poisson_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/polar_8hpp.html b/docs/doxygen/html/polar_8hpp.html index 248a58aeb..de4f1a3d0 100644 --- a/docs/doxygen/html/polar_8hpp.html +++ b/docs/doxygen/html/polar_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/polar_8hpp_source.html b/docs/doxygen/html/polar_8hpp_source.html index 8a9c1c1a4..473626eb2 100644 --- a/docs/doxygen/html/polar_8hpp_source.html +++ b/docs/doxygen/html/polar_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/polygamma_8hpp.html b/docs/doxygen/html/polygamma_8hpp.html index b5de770c0..c70a0a11f 100644 --- a/docs/doxygen/html/polygamma_8hpp.html +++ b/docs/doxygen/html/polygamma_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/polygamma_8hpp_source.html b/docs/doxygen/html/polygamma_8hpp_source.html index 9ae716927..b62654ff0 100644 --- a/docs/doxygen/html/polygamma_8hpp_source.html +++ b/docs/doxygen/html/polygamma_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/prime_8hpp.html b/docs/doxygen/html/prime_8hpp.html index 3c82d7bd3..4bff819d6 100644 --- a/docs/doxygen/html/prime_8hpp.html +++ b/docs/doxygen/html/prime_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/prime_8hpp_source.html b/docs/doxygen/html/prime_8hpp_source.html index 44f835374..9eb874dff 100644 --- a/docs/doxygen/html/prime_8hpp_source.html +++ b/docs/doxygen/html/prime_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/print_8hpp.html b/docs/doxygen/html/print_8hpp.html index 3c9d9f7b6..06299d832 100644 --- a/docs/doxygen/html/print_8hpp.html +++ b/docs/doxygen/html/print_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/print_8hpp_source.html b/docs/doxygen/html/print_8hpp_source.html index d3fb867aa..cdb002f5f 100644 --- a/docs/doxygen/html/print_8hpp_source.html +++ b/docs/doxygen/html/print_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/prod_8hpp.html b/docs/doxygen/html/prod_8hpp.html index 17179dfaf..bad4122b5 100644 --- a/docs/doxygen/html/prod_8hpp.html +++ b/docs/doxygen/html/prod_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/prod_8hpp_source.html b/docs/doxygen/html/prod_8hpp_source.html index 43b97929a..6f6b3e870 100644 --- a/docs/doxygen/html/prod_8hpp_source.html +++ b/docs/doxygen/html/prod_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/proj_8hpp.html b/docs/doxygen/html/proj_8hpp.html index 62a84f279..4fbce05d7 100644 --- a/docs/doxygen/html/proj_8hpp.html +++ b/docs/doxygen/html/proj_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/proj_8hpp_source.html b/docs/doxygen/html/proj_8hpp_source.html index 1b6f44ba6..4b0d39dee 100644 --- a/docs/doxygen/html/proj_8hpp_source.html +++ b/docs/doxygen/html/proj_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ptp_8hpp.html b/docs/doxygen/html/ptp_8hpp.html index 664011590..022a8c5c1 100644 --- a/docs/doxygen/html/ptp_8hpp.html +++ b/docs/doxygen/html/ptp_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ptp_8hpp_source.html b/docs/doxygen/html/ptp_8hpp_source.html index 894780a63..65360bb61 100644 --- a/docs/doxygen/html/ptp_8hpp_source.html +++ b/docs/doxygen/html/ptp_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/put_8hpp.html b/docs/doxygen/html/put_8hpp.html index 80fec8fa8..b6cdbc78b 100644 --- a/docs/doxygen/html/put_8hpp.html +++ b/docs/doxygen/html/put_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/put_8hpp_source.html b/docs/doxygen/html/put_8hpp_source.html index 9ab7e0961..28d3424bd 100644 --- a/docs/doxygen/html/put_8hpp_source.html +++ b/docs/doxygen/html/put_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/putmask_8hpp.html b/docs/doxygen/html/putmask_8hpp.html index 29f50b572..324cfb668 100644 --- a/docs/doxygen/html/putmask_8hpp.html +++ b/docs/doxygen/html/putmask_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/putmask_8hpp_source.html b/docs/doxygen/html/putmask_8hpp_source.html index 7261b552a..97cb24a10 100644 --- a/docs/doxygen/html/putmask_8hpp_source.html +++ b/docs/doxygen/html/putmask_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rad2deg_8hpp.html b/docs/doxygen/html/rad2deg_8hpp.html index 789caa15c..7e34c401f 100644 --- a/docs/doxygen/html/rad2deg_8hpp.html +++ b/docs/doxygen/html/rad2deg_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rad2deg_8hpp_source.html b/docs/doxygen/html/rad2deg_8hpp_source.html index 302c24ec1..93cf3b0a7 100644 --- a/docs/doxygen/html/rad2deg_8hpp_source.html +++ b/docs/doxygen/html/rad2deg_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/radians_8hpp.html b/docs/doxygen/html/radians_8hpp.html index 2ec9d6439..ce45d044a 100644 --- a/docs/doxygen/html/radians_8hpp.html +++ b/docs/doxygen/html/radians_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/radians_8hpp_source.html b/docs/doxygen/html/radians_8hpp_source.html index 11c3ca1db..65ba925ae 100644 --- a/docs/doxygen/html/radians_8hpp_source.html +++ b/docs/doxygen/html/radians_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rand_8hpp.html b/docs/doxygen/html/rand_8hpp.html index 4cf34bf29..76f356024 100644 --- a/docs/doxygen/html/rand_8hpp.html +++ b/docs/doxygen/html/rand_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rand_8hpp_source.html b/docs/doxygen/html/rand_8hpp_source.html index e59a23be1..c9aebdb8f 100644 --- a/docs/doxygen/html/rand_8hpp_source.html +++ b/docs/doxygen/html/rand_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rand_float_8hpp.html b/docs/doxygen/html/rand_float_8hpp.html index ca5b0688c..ab69f6259 100644 --- a/docs/doxygen/html/rand_float_8hpp.html +++ b/docs/doxygen/html/rand_float_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rand_float_8hpp_source.html b/docs/doxygen/html/rand_float_8hpp_source.html index 13610534c..6a24548f4 100644 --- a/docs/doxygen/html/rand_float_8hpp_source.html +++ b/docs/doxygen/html/rand_float_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rand_int_8hpp.html b/docs/doxygen/html/rand_int_8hpp.html index 72bc2a07a..d31408fc0 100644 --- a/docs/doxygen/html/rand_int_8hpp.html +++ b/docs/doxygen/html/rand_int_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rand_int_8hpp_source.html b/docs/doxygen/html/rand_int_8hpp_source.html index a083665a6..e6e2ea0ef 100644 --- a/docs/doxygen/html/rand_int_8hpp_source.html +++ b/docs/doxygen/html/rand_int_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rand_n_8hpp.html b/docs/doxygen/html/rand_n_8hpp.html index 1a019e9ec..630a13459 100644 --- a/docs/doxygen/html/rand_n_8hpp.html +++ b/docs/doxygen/html/rand_n_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rand_n_8hpp_source.html b/docs/doxygen/html/rand_n_8hpp_source.html index 97ce075ed..d7ef768db 100644 --- a/docs/doxygen/html/rand_n_8hpp_source.html +++ b/docs/doxygen/html/rand_n_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rank_filter1d_8hpp.html b/docs/doxygen/html/rank_filter1d_8hpp.html index 4b2beca07..2cba78fb0 100644 --- a/docs/doxygen/html/rank_filter1d_8hpp.html +++ b/docs/doxygen/html/rank_filter1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rank_filter1d_8hpp_source.html b/docs/doxygen/html/rank_filter1d_8hpp_source.html index d2e364f31..7cfc0e57e 100644 --- a/docs/doxygen/html/rank_filter1d_8hpp_source.html +++ b/docs/doxygen/html/rank_filter1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rank_filter_8hpp.html b/docs/doxygen/html/rank_filter_8hpp.html index f9615f020..d9b5941b8 100644 --- a/docs/doxygen/html/rank_filter_8hpp.html +++ b/docs/doxygen/html/rank_filter_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rank_filter_8hpp_source.html b/docs/doxygen/html/rank_filter_8hpp_source.html index 40dea2988..4ee89ff53 100644 --- a/docs/doxygen/html/rank_filter_8hpp_source.html +++ b/docs/doxygen/html/rank_filter_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ravel_8hpp.html b/docs/doxygen/html/ravel_8hpp.html index 04e0f2862..3496bd80f 100644 --- a/docs/doxygen/html/ravel_8hpp.html +++ b/docs/doxygen/html/ravel_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/ravel_8hpp_source.html b/docs/doxygen/html/ravel_8hpp_source.html index fbe1e0d36..6afad87fe 100644 --- a/docs/doxygen/html/ravel_8hpp_source.html +++ b/docs/doxygen/html/ravel_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/real_8hpp.html b/docs/doxygen/html/real_8hpp.html index a3df9b205..22522cf19 100644 --- a/docs/doxygen/html/real_8hpp.html +++ b/docs/doxygen/html/real_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/real_8hpp_source.html b/docs/doxygen/html/real_8hpp_source.html index a4e655719..169487446 100644 --- a/docs/doxygen/html/real_8hpp_source.html +++ b/docs/doxygen/html/real_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/reciprocal_8hpp.html b/docs/doxygen/html/reciprocal_8hpp.html index cf140cec6..042134151 100644 --- a/docs/doxygen/html/reciprocal_8hpp.html +++ b/docs/doxygen/html/reciprocal_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/reciprocal_8hpp_source.html b/docs/doxygen/html/reciprocal_8hpp_source.html index 3665915c2..733de6334 100644 --- a/docs/doxygen/html/reciprocal_8hpp_source.html +++ b/docs/doxygen/html/reciprocal_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/reflect1d_8hpp.html b/docs/doxygen/html/reflect1d_8hpp.html index c1afdb1b8..dc27f2fb0 100644 --- a/docs/doxygen/html/reflect1d_8hpp.html +++ b/docs/doxygen/html/reflect1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/reflect1d_8hpp_source.html b/docs/doxygen/html/reflect1d_8hpp_source.html index 27fb7a74a..34c95a1ca 100644 --- a/docs/doxygen/html/reflect1d_8hpp_source.html +++ b/docs/doxygen/html/reflect1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/reflect2d_8hpp.html b/docs/doxygen/html/reflect2d_8hpp.html index 1907f2d73..8e05cc8b1 100644 --- a/docs/doxygen/html/reflect2d_8hpp.html +++ b/docs/doxygen/html/reflect2d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/reflect2d_8hpp_source.html b/docs/doxygen/html/reflect2d_8hpp_source.html index 326a15f06..23de2a9d5 100644 --- a/docs/doxygen/html/reflect2d_8hpp_source.html +++ b/docs/doxygen/html/reflect2d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/remainder_8hpp.html b/docs/doxygen/html/remainder_8hpp.html index fe84f3afe..0eae675b8 100644 --- a/docs/doxygen/html/remainder_8hpp.html +++ b/docs/doxygen/html/remainder_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/remainder_8hpp_source.html b/docs/doxygen/html/remainder_8hpp_source.html index 9e8c136e8..2017f3786 100644 --- a/docs/doxygen/html/remainder_8hpp_source.html +++ b/docs/doxygen/html/remainder_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/repeat_8hpp.html b/docs/doxygen/html/repeat_8hpp.html index 3e72f5112..a9a452e6b 100644 --- a/docs/doxygen/html/repeat_8hpp.html +++ b/docs/doxygen/html/repeat_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/repeat_8hpp_source.html b/docs/doxygen/html/repeat_8hpp_source.html index f9fff3b6f..c50edb2c4 100644 --- a/docs/doxygen/html/repeat_8hpp_source.html +++ b/docs/doxygen/html/repeat_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/replace_8hpp.html b/docs/doxygen/html/replace_8hpp.html index efacd82ae..5fe2c7386 100644 --- a/docs/doxygen/html/replace_8hpp.html +++ b/docs/doxygen/html/replace_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/replace_8hpp_source.html b/docs/doxygen/html/replace_8hpp_source.html index 70ae99509..43bd5c0b6 100644 --- a/docs/doxygen/html/replace_8hpp_source.html +++ b/docs/doxygen/html/replace_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/reshape_8hpp.html b/docs/doxygen/html/reshape_8hpp.html index 850498b7e..c413df7b8 100644 --- a/docs/doxygen/html/reshape_8hpp.html +++ b/docs/doxygen/html/reshape_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/reshape_8hpp_source.html b/docs/doxygen/html/reshape_8hpp_source.html index 1bc68c957..c14bfc21e 100644 --- a/docs/doxygen/html/reshape_8hpp_source.html +++ b/docs/doxygen/html/reshape_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/resize_fast_8hpp.html b/docs/doxygen/html/resize_fast_8hpp.html index 2e73fb05d..92a8ab8e7 100644 --- a/docs/doxygen/html/resize_fast_8hpp.html +++ b/docs/doxygen/html/resize_fast_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/resize_fast_8hpp_source.html b/docs/doxygen/html/resize_fast_8hpp_source.html index bd10680ef..d52c2be1a 100644 --- a/docs/doxygen/html/resize_fast_8hpp_source.html +++ b/docs/doxygen/html/resize_fast_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/resize_slow_8hpp.html b/docs/doxygen/html/resize_slow_8hpp.html index 333bf8dac..d55461bed 100644 --- a/docs/doxygen/html/resize_slow_8hpp.html +++ b/docs/doxygen/html/resize_slow_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/resize_slow_8hpp_source.html b/docs/doxygen/html/resize_slow_8hpp_source.html index 2a794b182..8a818f08b 100644 --- a/docs/doxygen/html/resize_slow_8hpp_source.html +++ b/docs/doxygen/html/resize_slow_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rfft2_8hpp.html b/docs/doxygen/html/rfft2_8hpp.html index f0ec96f42..5b102fa82 100644 --- a/docs/doxygen/html/rfft2_8hpp.html +++ b/docs/doxygen/html/rfft2_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rfft2_8hpp_source.html b/docs/doxygen/html/rfft2_8hpp_source.html index 70296fb44..4b0640ce3 100644 --- a/docs/doxygen/html/rfft2_8hpp_source.html +++ b/docs/doxygen/html/rfft2_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rfft_8hpp.html b/docs/doxygen/html/rfft_8hpp.html index 657e32bc5..23dde53e4 100644 --- a/docs/doxygen/html/rfft_8hpp.html +++ b/docs/doxygen/html/rfft_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rfft_8hpp_source.html b/docs/doxygen/html/rfft_8hpp_source.html index 3eec63778..c60114604 100644 --- a/docs/doxygen/html/rfft_8hpp_source.html +++ b/docs/doxygen/html/rfft_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rfftfreq_8hpp.html b/docs/doxygen/html/rfftfreq_8hpp.html index 0229b5b0b..174a539d0 100644 --- a/docs/doxygen/html/rfftfreq_8hpp.html +++ b/docs/doxygen/html/rfftfreq_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rfftfreq_8hpp_source.html b/docs/doxygen/html/rfftfreq_8hpp_source.html index 3213b9ac8..cf5a3773f 100644 --- a/docs/doxygen/html/rfftfreq_8hpp_source.html +++ b/docs/doxygen/html/rfftfreq_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/riemann__zeta_8hpp.html b/docs/doxygen/html/riemann__zeta_8hpp.html index bde3665d6..c7fd8a47c 100644 --- a/docs/doxygen/html/riemann__zeta_8hpp.html +++ b/docs/doxygen/html/riemann__zeta_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/riemann__zeta_8hpp_source.html b/docs/doxygen/html/riemann__zeta_8hpp_source.html index 67c3a6066..d87152e8d 100644 --- a/docs/doxygen/html/riemann__zeta_8hpp_source.html +++ b/docs/doxygen/html/riemann__zeta_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/right__shift_8hpp.html b/docs/doxygen/html/right__shift_8hpp.html index 04431f1f9..c8d4dbdcc 100644 --- a/docs/doxygen/html/right__shift_8hpp.html +++ b/docs/doxygen/html/right__shift_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/right__shift_8hpp_source.html b/docs/doxygen/html/right__shift_8hpp_source.html index 4e3a93eab..53d339e7f 100644 --- a/docs/doxygen/html/right__shift_8hpp_source.html +++ b/docs/doxygen/html/right__shift_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rint_8hpp.html b/docs/doxygen/html/rint_8hpp.html index 0811e1548..2046248d2 100644 --- a/docs/doxygen/html/rint_8hpp.html +++ b/docs/doxygen/html/rint_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rint_8hpp_source.html b/docs/doxygen/html/rint_8hpp_source.html index 939569753..e58a2409f 100644 --- a/docs/doxygen/html/rint_8hpp_source.html +++ b/docs/doxygen/html/rint_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rms_8hpp.html b/docs/doxygen/html/rms_8hpp.html index e63ce0072..fb32e9e22 100644 --- a/docs/doxygen/html/rms_8hpp.html +++ b/docs/doxygen/html/rms_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rms_8hpp_source.html b/docs/doxygen/html/rms_8hpp_source.html index c0ba71491..2133feb3a 100644 --- a/docs/doxygen/html/rms_8hpp_source.html +++ b/docs/doxygen/html/rms_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rodrigues_rotation_8hpp.html b/docs/doxygen/html/rodrigues_rotation_8hpp.html index 2ddf2fc4e..d5c306216 100644 --- a/docs/doxygen/html/rodrigues_rotation_8hpp.html +++ b/docs/doxygen/html/rodrigues_rotation_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rodrigues_rotation_8hpp_source.html b/docs/doxygen/html/rodrigues_rotation_8hpp_source.html index ae4ef9cd9..cde50eda8 100644 --- a/docs/doxygen/html/rodrigues_rotation_8hpp_source.html +++ b/docs/doxygen/html/rodrigues_rotation_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/roll_8hpp.html b/docs/doxygen/html/roll_8hpp.html index c4b88584d..1f90eaab2 100644 --- a/docs/doxygen/html/roll_8hpp.html +++ b/docs/doxygen/html/roll_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/roll_8hpp_source.html b/docs/doxygen/html/roll_8hpp_source.html index ace0c35be..8be21fc83 100644 --- a/docs/doxygen/html/roll_8hpp_source.html +++ b/docs/doxygen/html/roll_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/romberg_8hpp.html b/docs/doxygen/html/romberg_8hpp.html index 0dffefc8b..560bbd492 100644 --- a/docs/doxygen/html/romberg_8hpp.html +++ b/docs/doxygen/html/romberg_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/romberg_8hpp_source.html b/docs/doxygen/html/romberg_8hpp_source.html index 57b7fab77..cb9e108c5 100644 --- a/docs/doxygen/html/romberg_8hpp_source.html +++ b/docs/doxygen/html/romberg_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rot90_8hpp.html b/docs/doxygen/html/rot90_8hpp.html index 0fdcbe2ab..85dcafa26 100644 --- a/docs/doxygen/html/rot90_8hpp.html +++ b/docs/doxygen/html/rot90_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/rot90_8hpp_source.html b/docs/doxygen/html/rot90_8hpp_source.html index 9d2853da5..5dce3cd1f 100644 --- a/docs/doxygen/html/rot90_8hpp_source.html +++ b/docs/doxygen/html/rot90_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/round_8hpp.html b/docs/doxygen/html/round_8hpp.html index 6a2ea7c4e..ffe67b0de 100644 --- a/docs/doxygen/html/round_8hpp.html +++ b/docs/doxygen/html/round_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/round_8hpp_source.html b/docs/doxygen/html/round_8hpp_source.html index 8ebf56257..b863ed995 100644 --- a/docs/doxygen/html/round_8hpp_source.html +++ b/docs/doxygen/html/round_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/row__stack_8hpp.html b/docs/doxygen/html/row__stack_8hpp.html index 1514dab19..28632738b 100644 --- a/docs/doxygen/html/row__stack_8hpp.html +++ b/docs/doxygen/html/row__stack_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/row__stack_8hpp_source.html b/docs/doxygen/html/row__stack_8hpp_source.html index 2eb8bc63f..60c672c86 100644 --- a/docs/doxygen/html/row__stack_8hpp_source.html +++ b/docs/doxygen/html/row__stack_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/search/all_11.js b/docs/doxygen/html/search/all_11.js index 80413d0f9..1ebf6e2db 100644 --- a/docs/doxygen/html/search/all_11.js +++ b/docs/doxygen/html/search/all_11.js @@ -1,6 +1,6 @@ var searchData= [ - ['ra_0',['ra',['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a3692c20924d005cba324d1972ff59c54',1,'nc::coordinates::reference_frames::RA::RA()=default'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#acf49f473495e7a39f8185a461f8c3039',1,'nc::coordinates::reference_frames::RA::RA(double inDegrees)'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#af06f84fe87675cb60e75e666c407922a',1,'nc::coordinates::reference_frames::RA::RA(uint8 inHours, uint8 inMinutes, double inSeconds) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a27035489316217a64db114902079ea59',1,'nc::coordinates::reference_frames::Celestial::ra()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html',1,'nc::coordinates::reference_frames::RA']]], + ['ra_0',['ra',['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a27035489316217a64db114902079ea59',1,'nc::coordinates::reference_frames::Celestial::ra()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a3692c20924d005cba324d1972ff59c54',1,'nc::coordinates::reference_frames::RA::RA()=default'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#acf49f473495e7a39f8185a461f8c3039',1,'nc::coordinates::reference_frames::RA::RA(double inDegrees)'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#af06f84fe87675cb60e75e666c407922a',1,'nc::coordinates::reference_frames::RA::RA(uint8 inHours, uint8 inMinutes, double inSeconds) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html',1,'nc::coordinates::reference_frames::RA']]], ['rad2deg_1',['rad2deg',['../namespacenc.html#a19a21c68cb53309ac33e9c1a7b5d2513',1,'nc::rad2deg(const NdArray< dtype > &inArray)'],['../namespacenc.html#a8c8fc041b633785104c583a8ce3d9cef',1,'nc::rad2deg(dtype inValue) noexcept']]], ['rad2deg_2ehpp_2',['rad2deg.hpp',['../rad2deg_8hpp.html',1,'']]], ['radians_3',['radians',['../namespacenc.html#a746ecf69081dec55ceb2647726ee106b',1,'nc::radians()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a7e36ab92c2f8bc9254871ba9f216a588',1,'nc::coordinates::reference_frames::RA::radians()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a39c543fd471f182d86bb1172658319d0',1,'nc::coordinates::reference_frames::Dec::radians()'],['../namespacenc.html#ac0f2714a22ef5029abf0f3fee0028546',1,'nc::radians()']]], diff --git a/docs/doxygen/html/search/all_12.js b/docs/doxygen/html/search/all_12.js index dfcedfc0b..353716cf9 100644 --- a/docs/doxygen/html/search/all_12.js +++ b/docs/doxygen/html/search/all_12.js @@ -1,6 +1,6 @@ var searchData= [ - ['s_0',['s',['../classnc_1_1rotations_1_1_quaternion.html#a075b6f1befef247f5d638c91e1a451fd',1,'nc::rotations::Quaternion::s()'],['../classnc_1_1linalg_1_1_s_v_d.html#aa3628ab32a1117f00645ce377c4b8654',1,'nc::linalg::SVD::s()']]], + ['s_0',['s',['../classnc_1_1rotations_1_1_quaternion.html#a075b6f1befef247f5d638c91e1a451fd',1,'nc::rotations::Quaternion::s()'],['../classnc_1_1linalg_1_1_s_v_d.html#a16f7636b9dc063e1636effbc71240f4b',1,'nc::linalg::SVD::s()']]], ['searchsorted_1',['searchsorted',['../namespacenc.html#a99718b2914410e6c1166154122c6f314',1,'nc::searchsorted(const NdArray< dtype > &inArray, dtype inValue, Side side=Side::LEFT)'],['../namespacenc.html#a52ba185a8ca3f231986b8ffa737fd296',1,'nc::searchsorted(const NdArray< dtype > &inArray, const NdArray< dtype > &inValues, Side side=Side::LEFT)']]], ['searchsorted_2ehpp_2',['searchsorted.hpp',['../searchsorted_8hpp.html',1,'']]], ['secant_3',['secant',['../classnc_1_1roots_1_1_secant.html',1,'nc::roots::Secant'],['../classnc_1_1roots_1_1_secant.html#adedf56589f2027e224d6044a071f20e3',1,'nc::roots::Secant::Secant(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_secant.html#af8afc48a7393e85103a9c2acc662c63b',1,'nc::roots::Secant::Secant(const double epsilon, std::function< double(double)> f) noexcept']]], @@ -11,7 +11,7 @@ var searchData= ['seconds_5fper_5fhour_8',['SECONDS_PER_HOUR',['../namespacenc_1_1constants.html#ad635a54557e853e1ee098d0ead5f1902',1,'nc::constants']]], ['seconds_5fper_5fminute_9',['SECONDS_PER_MINUTE',['../namespacenc_1_1constants.html#ad89620cbdf9102f40ec7c0fd52c16a5e',1,'nc::constants']]], ['seconds_5fper_5fweek_10',['SECONDS_PER_WEEK',['../namespacenc_1_1constants.html#ac36cac5f19ce5f81b2acc562f247f0be',1,'nc::constants']]], - ['seed_11',['seed',['../classnc_1_1random_1_1_r_n_g.html#aab4f39a4bc337a897bf4534d828ad7a0',1,'nc::random::RNG::seed()'],['../namespacenc_1_1random.html#ab7a11b67f4e9e18c7b01c7dc4db2fc71',1,'nc::random::seed()']]], + ['seed_11',['seed',['../namespacenc_1_1random.html#ab7a11b67f4e9e18c7b01c7dc4db2fc71',1,'nc::random::seed()'],['../classnc_1_1random_1_1_r_n_g.html#aab4f39a4bc337a897bf4534d828ad7a0',1,'nc::random::RNG::seed()']]], ['select_12',['select',['../namespacenc.html#ab8a9fa3aaf96fc7f9b8635af81170da5',1,'nc::select(const std::vector< const NdArray< bool > * > &condVec, const std::vector< const NdArray< dtype > * > &choiceVec, dtype defaultValue=dtype{ 0 })'],['../namespacenc.html#a9ca2d70f54f68cabcb65aaf87b87b8c8',1,'nc::select(const std::vector< NdArray< bool > > &condList, const std::vector< NdArray< dtype > > &choiceList, dtype defaultValue=dtype{ 0 })']]], ['select_2ehpp_13',['select.hpp',['../select_8hpp.html',1,'']]], ['self_5ftype_14',['self_type',['../classnc_1_1_nd_array.html#ac9e316c3f8d2b4917655aef561f74c7e',1,'nc::NdArray']]], @@ -30,17 +30,17 @@ var searchData= ['setminute_27',['setMinute',['../classnc_1_1_date_time.html#adb8f3532eae7bd10821beb6df8764735',1,'nc::DateTime']]], ['setmonth_28',['setMonth',['../classnc_1_1_date_time.html#ab92ccce69ff3961af858914d5f75ad5d',1,'nc::DateTime']]], ['setname_29',['setName',['../classnc_1_1_timer.html#a88dd680a63b38ae9989a40878a8fd65b',1,'nc::Timer']]], - ['setnorth_30',['setnorth',['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ae265cf20496d00a8f3c1a95426977b82',1,'nc::coordinates::reference_frames::ENU::setNorth()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a5a24819c775343fa9e61bc48bcf9ffff',1,'nc::coordinates::reference_frames::NED::setNorth()']]], - ['setoutputdir_31',['setoutputdir',['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#aa26f32ed5901a96cf7231568012cbe1c',1,'nc::logger::detail::BinaryDataLogger::setOutputDir(std::filesystem::path outputDir)'],['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afc00f8619bae364550863354d4deaf3c',1,'nc::logger::detail::BinaryDataLogger::setOutputDir(std::string_view outputDir)'],['../classnc_1_1logger_1_1_binary_logger.html#a10ad51c791e577870b345fc922d74ed6',1,'nc::logger::BinaryLogger::setOutputDir(std::string_view outputDir)'],['../classnc_1_1logger_1_1_binary_logger.html#abf341d2d1c67e4b91a30abd1a2be81dc',1,'nc::logger::BinaryLogger::setOutputDir(const std::filesystem::path &outputDir)']]], + ['setnorth_30',['setnorth',['../classnc_1_1coordinates_1_1reference__frames_1_1_n_e_d.html#a5a24819c775343fa9e61bc48bcf9ffff',1,'nc::coordinates::reference_frames::NED::setNorth()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ae265cf20496d00a8f3c1a95426977b82',1,'nc::coordinates::reference_frames::ENU::setNorth()']]], + ['setoutputdir_31',['setoutputdir',['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#aa26f32ed5901a96cf7231568012cbe1c',1,'nc::logger::detail::BinaryDataLogger::setOutputDir(std::filesystem::path outputDir)'],['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afc00f8619bae364550863354d4deaf3c',1,'nc::logger::detail::BinaryDataLogger::setOutputDir(std::string_view outputDir)'],['../classnc_1_1logger_1_1_binary_logger.html#abf341d2d1c67e4b91a30abd1a2be81dc',1,'nc::logger::BinaryLogger::setOutputDir(const std::filesystem::path &outputDir)'],['../classnc_1_1logger_1_1_binary_logger.html#a10ad51c791e577870b345fc922d74ed6',1,'nc::logger::BinaryLogger::setOutputDir(std::string_view outputDir)']]], ['setsecond_32',['setSecond',['../classnc_1_1_date_time.html#a870d115af59856e0da866c7e75677408',1,'nc::DateTime']]], ['setup_33',['setUp',['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a841ec6cb5897340c0635cd18d2476729',1,'nc::coordinates::reference_frames::ENU']]], ['setyear_34',['setYear',['../classnc_1_1_date_time.html#afc8f15ff0271f51b4adaba5478fd0737',1,'nc::DateTime']]], - ['shape_35',['shape',['../classnc_1_1_nd_array.html#a4824e91b22bb46ebc31c9c08de55ef13',1,'nc::NdArray::shape()'],['../namespacenc.html#ae2b224742bc8263190d451a44ebe5e34',1,'nc::shape(const NdArray< dtype > &inArray) noexcept'],['../classnc_1_1_shape.html',1,'nc::Shape'],['../classnc_1_1_data_cube.html#a9715d7b13b39a94be82b3b8945da061a',1,'nc::DataCube::shape()'],['../classnc_1_1_shape.html#a4b2cd200804257d9c53084f14fb38e31',1,'nc::Shape::Shape(uint32 inRows, uint32 inCols) noexcept'],['../classnc_1_1_shape.html#a6e870e9fda60c8e82996802fcb71490a',1,'nc::Shape::Shape(uint32 inSquareSize) noexcept'],['../classnc_1_1_shape.html#a0f41587a1b8f1c2b65035adc49705eec',1,'nc::Shape::Shape()=default']]], + ['shape_35',['shape',['../classnc_1_1_shape.html#a6e870e9fda60c8e82996802fcb71490a',1,'nc::Shape::Shape(uint32 inSquareSize) noexcept'],['../classnc_1_1_shape.html#a4b2cd200804257d9c53084f14fb38e31',1,'nc::Shape::Shape(uint32 inRows, uint32 inCols) noexcept'],['../classnc_1_1_data_cube.html#a9715d7b13b39a94be82b3b8945da061a',1,'nc::DataCube::shape()'],['../classnc_1_1_nd_array.html#a4824e91b22bb46ebc31c9c08de55ef13',1,'nc::NdArray::shape()'],['../classnc_1_1_shape.html#a0f41587a1b8f1c2b65035adc49705eec',1,'nc::Shape::Shape()'],['../classnc_1_1_shape.html',1,'nc::Shape'],['../namespacenc.html#ae2b224742bc8263190d451a44ebe5e34',1,'nc::shape(const NdArray< dtype > &inArray) noexcept']]], ['shell_36',['SHELL',['../namespacenc.html#ae31148c2c120e8ed49df98e7dcd960eca28d568b3892dce36f2833542693a1062',1,'nc']]], - ['shuffle_37',['shuffle',['../classnc_1_1random_1_1_r_n_g.html#ada9c17d19a87ab7eb29604a5713ff4e0',1,'nc::random::RNG::shuffle()'],['../namespacenc_1_1random.html#ad73d56152095ad55887c89f47490c070',1,'nc::random::shuffle()'],['../namespacenc_1_1random_1_1detail.html#a2c57a153b2235305ccadf068e70146f9',1,'nc::random::detail::shuffle()']]], + ['shuffle_37',['shuffle',['../namespacenc_1_1random.html#ad73d56152095ad55887c89f47490c070',1,'nc::random::shuffle()'],['../namespacenc_1_1random_1_1detail.html#a2c57a153b2235305ccadf068e70146f9',1,'nc::random::detail::shuffle()'],['../classnc_1_1random_1_1_r_n_g.html#ada9c17d19a87ab7eb29604a5713ff4e0',1,'nc::random::RNG::shuffle()']]], ['shuffle_2ehpp_38',['shuffle.hpp',['../shuffle_8hpp.html',1,'']]], ['side_39',['Side',['../namespacenc.html#a7b16f0b406f36ef56a47ff41f4476a09',1,'nc']]], - ['sign_40',['sign',['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a19892475f282e317b626687605a4b8ac',1,'nc::coordinates::reference_frames::Dec::sign() const noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9c',1,'nc::coordinates::reference_frames::Dec::Sign'],['../namespacenc.html#aaca3db497366050e01e279e6a2f91e9f',1,'nc::sign(const NdArray< dtype > &inArray)'],['../namespacenc.html#a4a5d98f334e0b50a3cf9c2718485e5e9',1,'nc::sign(dtype inValue) noexcept']]], + ['sign_40',['sign',['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9c',1,'nc::coordinates::reference_frames::Dec::Sign'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a19892475f282e317b626687605a4b8ac',1,'nc::coordinates::reference_frames::Dec::sign() const noexcept'],['../namespacenc.html#aaca3db497366050e01e279e6a2f91e9f',1,'nc::sign(const NdArray< dtype > &inArray)'],['../namespacenc.html#a4a5d98f334e0b50a3cf9c2718485e5e9',1,'nc::sign(dtype inValue) noexcept']]], ['sign_2ehpp_41',['sign.hpp',['../sign_8hpp.html',1,'']]], ['signbit_42',['signbit',['../namespacenc.html#afb7d5d83208da53a56dddcc62c8f34c0',1,'nc::signbit(const NdArray< dtype > &inArray)'],['../namespacenc.html#af6dcbdfea85cdc84b4ddcf6c978b71f1',1,'nc::signbit(dtype inValue) noexcept']]], ['signbit_2ehpp_43',['signbit.hpp',['../signbit_8hpp.html',1,'']]], @@ -54,23 +54,23 @@ var searchData= ['sinh_2ehpp_51',['sinh.hpp',['../sinh_8hpp.html',1,'']]], ['sinkconsole_52',['sinkConsole',['../namespacenc_1_1logger_1_1detail.html#a4b7575d22baed101d5655ada912f965d',1,'nc::logger::detail']]], ['sinkfile_53',['sinkFile',['../namespacenc_1_1logger_1_1detail.html#a673b80da843295db08f59a9c947e1143',1,'nc::logger::detail']]], - ['size_54',['size',['../classnc_1_1image_processing_1_1_cluster_maker.html#ae437071bfc291a36745d043ddd4cba1d',1,'nc::imageProcessing::ClusterMaker::size()'],['../classnc_1_1_nd_array.html#a055875abbe80163ca91328c0fa8ffbfa',1,'nc::NdArray::size()'],['../classnc_1_1image_processing_1_1_cluster.html#ae89900f4557d6273fc49b330417e324e',1,'nc::imageProcessing::Cluster::size()'],['../classnc_1_1_shape.html#ab29f87cc8479a2d0610a918cd9b08bbc',1,'nc::Shape::size()'],['../namespacenc.html#a25f36ba02112a206936fae22b0724bb9',1,'nc::size()']]], + ['size_54',['size',['../classnc_1_1image_processing_1_1_cluster.html#ae89900f4557d6273fc49b330417e324e',1,'nc::imageProcessing::Cluster::size()'],['../classnc_1_1_nd_array.html#a055875abbe80163ca91328c0fa8ffbfa',1,'nc::NdArray::size()'],['../classnc_1_1image_processing_1_1_cluster_maker.html#ae437071bfc291a36745d043ddd4cba1d',1,'nc::imageProcessing::ClusterMaker::size()'],['../classnc_1_1_shape.html#ab29f87cc8479a2d0610a918cd9b08bbc',1,'nc::Shape::size()'],['../namespacenc.html#a25f36ba02112a206936fae22b0724bb9',1,'nc::size()']]], ['size_2ehpp_55',['size.hpp',['../size_8hpp.html',1,'']]], - ['size_5ftype_56',['size_type',['../classnc_1_1_nd_array.html#ae2bdede667042f52176de3f3649735f6',1,'nc::NdArray::size_type'],['../classnc_1_1_nd_array_const_column_iterator.html#a99d31459bd356031b795095a38366706',1,'nc::NdArrayConstColumnIterator::size_type'],['../classnc_1_1_nd_array_column_iterator.html#a845a41edc124e1c38ccf1940c02e272d',1,'nc::NdArrayColumnIterator::size_type']]], + ['size_5ftype_56',['size_type',['../classnc_1_1_nd_array_column_iterator.html#a845a41edc124e1c38ccf1940c02e272d',1,'nc::NdArrayColumnIterator::size_type'],['../classnc_1_1_nd_array.html#ae2bdede667042f52176de3f3649735f6',1,'nc::NdArray::size_type'],['../classnc_1_1_nd_array_const_column_iterator.html#a99d31459bd356031b795095a38366706',1,'nc::NdArrayConstColumnIterator::size_type']]], ['sizez_57',['sizeZ',['../classnc_1_1_data_cube.html#a6518d36db671db4053abffff92505c64',1,'nc::DataCube']]], ['sleep_58',['sleep',['../classnc_1_1_timer.html#a9fec514ed605a11c6e1c321041960d7e',1,'nc::Timer']]], ['slerp_59',['slerp',['../classnc_1_1rotations_1_1_quaternion.html#a7a39f199e4d1ad773b93c69e66ae0415',1,'nc::rotations::Quaternion::slerp(const Quaternion &inQuat1, const Quaternion &inQuat2, double inPercent)'],['../classnc_1_1rotations_1_1_quaternion.html#a687155cd6469c095941b94a738119da9',1,'nc::rotations::Quaternion::slerp(const Quaternion &inQuat2, double inPercent) const']]], ['slice_60',['slice',['../classnc_1_1_slice.html#aeb2a7e0854fa82d97a48a5ef402d6e7c',1,'nc::Slice::Slice()=default'],['../classnc_1_1_slice.html#aa54f0fae63ece8ff87455e2192d8f336',1,'nc::Slice::Slice(int32 inStop) noexcept'],['../classnc_1_1_slice.html#aba1f6c8193f0a61a3f5711edd58aeba1',1,'nc::Slice::Slice(int32 inStart, int32 inStop) noexcept'],['../classnc_1_1_slice.html#a91177c7ea9b87318232b8d916a487d38',1,'nc::Slice::Slice(int32 inStart, int32 inStop, int32 inStep) noexcept'],['../classnc_1_1_slice.html',1,'nc::Slice']]], ['slice_2ehpp_61',['Slice.hpp',['../_slice_8hpp.html',1,'']]], - ['slicez_62',['slicez',['../classnc_1_1_data_cube.html#ae1bad1dd6ef3179273aaac7848ff87e0',1,'nc::DataCube::sliceZ(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a719b004665c3a6e7a37ec0a4bdea650e',1,'nc::DataCube::sliceZ(Slice inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#aea79beb771306862ff53af7fbea07585',1,'nc::DataCube::sliceZ(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a525e1118c24720f4718571600c0abc63',1,'nc::DataCube::sliceZ(int32 inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#ae22f81969143c93624edfe5464cb0b76',1,'nc::DataCube::sliceZ(int32 inIndex, Slice inSliceZ) const']]], - ['slicezall_63',['slicezall',['../classnc_1_1_data_cube.html#ae1a2b07f302a0eaf5d88b53ae2b1032d',1,'nc::DataCube::sliceZAll(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a22a15747f5969aa5d600820cfe64ca64',1,'nc::DataCube::sliceZAll(int32 inIndex) const'],['../classnc_1_1_data_cube.html#a9a61f3ea3bd771c67a428b3ba6666b95',1,'nc::DataCube::sliceZAll(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a675e1ed0bdb8a2d147c82a38701a7a3f',1,'nc::DataCube::sliceZAll(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a8bcbe318df56146f36afb67013435a5d',1,'nc::DataCube::sliceZAll(Slice inRow, Slice inCol) const']]], - ['slicezallat_64',['slicezallat',['../classnc_1_1_data_cube.html#a640270511679561d4efdcd6ef9f643f2',1,'nc::DataCube::sliceZAllat(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#aa9c59c8c8fb30f1b09cac2ee292530d1',1,'nc::DataCube::sliceZAllat(int32 inIndex) const'],['../classnc_1_1_data_cube.html#af5e50bad9937b89f6e6fc5eca672239d',1,'nc::DataCube::sliceZAllat(Slice inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a936a4244ab338e07ae95d96d240cb2ea',1,'nc::DataCube::sliceZAllat(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#ad71f0c98336e4d74915bdd77dc951b61',1,'nc::DataCube::sliceZAllat(int32 inRow, int32 inCol) const']]], - ['slicezat_65',['slicezat',['../classnc_1_1_data_cube.html#a7ac8d05eb4202aefe4e95c2794013ef0',1,'nc::DataCube::sliceZat(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#af56f4829146de68936ddec6391d0c46d',1,'nc::DataCube::sliceZat(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a58399f9333a2f3375b914aac44093c00',1,'nc::DataCube::sliceZat(Slice inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#afbf49c559f5c1fa6d1c4376c3b12d1ea',1,'nc::DataCube::sliceZat(int32 inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a94ce00366ab048c954ade7c4b7455d57',1,'nc::DataCube::sliceZat(int32 inIndex, Slice inSliceZ) const']]], + ['slicez_62',['slicez',['../classnc_1_1_data_cube.html#ae22f81969143c93624edfe5464cb0b76',1,'nc::DataCube::sliceZ(int32 inIndex, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a719b004665c3a6e7a37ec0a4bdea650e',1,'nc::DataCube::sliceZ(Slice inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#aea79beb771306862ff53af7fbea07585',1,'nc::DataCube::sliceZ(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#ae1bad1dd6ef3179273aaac7848ff87e0',1,'nc::DataCube::sliceZ(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a525e1118c24720f4718571600c0abc63',1,'nc::DataCube::sliceZ(int32 inRow, int32 inCol, Slice inSliceZ) const']]], + ['slicezall_63',['slicezall',['../classnc_1_1_data_cube.html#a9a61f3ea3bd771c67a428b3ba6666b95',1,'nc::DataCube::sliceZAll(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a8bcbe318df56146f36afb67013435a5d',1,'nc::DataCube::sliceZAll(Slice inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#ae1a2b07f302a0eaf5d88b53ae2b1032d',1,'nc::DataCube::sliceZAll(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a675e1ed0bdb8a2d147c82a38701a7a3f',1,'nc::DataCube::sliceZAll(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a22a15747f5969aa5d600820cfe64ca64',1,'nc::DataCube::sliceZAll(int32 inIndex) const']]], + ['slicezallat_64',['slicezallat',['../classnc_1_1_data_cube.html#aa9c59c8c8fb30f1b09cac2ee292530d1',1,'nc::DataCube::sliceZAllat(int32 inIndex) const'],['../classnc_1_1_data_cube.html#ad71f0c98336e4d74915bdd77dc951b61',1,'nc::DataCube::sliceZAllat(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a640270511679561d4efdcd6ef9f643f2',1,'nc::DataCube::sliceZAllat(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a936a4244ab338e07ae95d96d240cb2ea',1,'nc::DataCube::sliceZAllat(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#af5e50bad9937b89f6e6fc5eca672239d',1,'nc::DataCube::sliceZAllat(Slice inRow, Slice inCol) const']]], + ['slicezat_65',['slicezat',['../classnc_1_1_data_cube.html#a94ce00366ab048c954ade7c4b7455d57',1,'nc::DataCube::sliceZat(int32 inIndex, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#afbf49c559f5c1fa6d1c4376c3b12d1ea',1,'nc::DataCube::sliceZat(int32 inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a7ac8d05eb4202aefe4e95c2794013ef0',1,'nc::DataCube::sliceZat(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#af56f4829146de68936ddec6391d0c46d',1,'nc::DataCube::sliceZat(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a58399f9333a2f3375b914aac44093c00',1,'nc::DataCube::sliceZat(Slice inRow, Slice inCol, Slice inSliceZ) const']]], ['softmax_66',['softmax',['../namespacenc_1_1special.html#a57c31ef5f8cbde558d6871c979162d51',1,'nc::special']]], ['softmax_2ehpp_67',['softmax.hpp',['../softmax_8hpp.html',1,'']]], - ['solve_68',['solve',['../namespacenc_1_1linalg.html#afc9432e7c93e830c4ff8cff7f0a15771',1,'nc::linalg::solve()'],['../classnc_1_1roots_1_1_newton.html#aaed2535d1abdb0c6790aea60762ed789',1,'nc::roots::Newton::solve()'],['../classnc_1_1roots_1_1_secant.html#a3fefb4412402aa20eeabb85145463d70',1,'nc::roots::Secant::solve()'],['../classnc_1_1roots_1_1_dekker.html#a5da7506a8f371764d0fae321fe081111',1,'nc::roots::Dekker::solve()'],['../classnc_1_1roots_1_1_brent.html#a3853981ca1113723006b6627d96d378b',1,'nc::roots::Brent::solve()'],['../classnc_1_1roots_1_1_bisection.html#a1199a68b6f57fee8b24bfc59ffeff486',1,'nc::roots::Bisection::solve()'],['../classnc_1_1linalg_1_1_s_v_d.html#a5f8126b97109ff2929842d861522de19',1,'nc::linalg::SVD::solve()']]], + ['solve_68',['solve',['../namespacenc_1_1linalg.html#afc9432e7c93e830c4ff8cff7f0a15771',1,'nc::linalg::solve()'],['../classnc_1_1roots_1_1_secant.html#a3fefb4412402aa20eeabb85145463d70',1,'nc::roots::Secant::solve()'],['../classnc_1_1roots_1_1_newton.html#aaed2535d1abdb0c6790aea60762ed789',1,'nc::roots::Newton::solve()'],['../classnc_1_1roots_1_1_dekker.html#a5da7506a8f371764d0fae321fe081111',1,'nc::roots::Dekker::solve()'],['../classnc_1_1roots_1_1_brent.html#a3853981ca1113723006b6627d96d378b',1,'nc::roots::Brent::solve()'],['../classnc_1_1roots_1_1_bisection.html#a1199a68b6f57fee8b24bfc59ffeff486',1,'nc::roots::Bisection::solve()']]], ['solve_2ehpp_69',['solve.hpp',['../solve_8hpp.html',1,'']]], - ['sort_70',['sort',['../classnc_1_1_nd_array.html#af20c6e6b28c08b7c005bf3bf96a8b162',1,'nc::NdArray::sort()'],['../namespacenc.html#a3c24c68959c609535bc8ae6a33f54d49',1,'nc::sort()'],['../namespacenc_1_1stl__algorithms.html#a519432fa55645fab8162c354e387b1a6',1,'nc::stl_algorithms::sort(RandomIt first, RandomIt last, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#a1d75d47f198fcc3693e87806d6ea8715',1,'nc::stl_algorithms::sort(RandomIt first, RandomIt last) noexcept']]], + ['sort_70',['sort',['../namespacenc_1_1stl__algorithms.html#a519432fa55645fab8162c354e387b1a6',1,'nc::stl_algorithms::sort()'],['../classnc_1_1_nd_array.html#af20c6e6b28c08b7c005bf3bf96a8b162',1,'nc::NdArray::sort()'],['../namespacenc_1_1stl__algorithms.html#a1d75d47f198fcc3693e87806d6ea8715',1,'nc::stl_algorithms::sort()'],['../namespacenc.html#a3c24c68959c609535bc8ae6a33f54d49',1,'nc::sort()']]], ['sort_2ehpp_71',['sort.hpp',['../sort_8hpp.html',1,'']]], ['special_2ehpp_72',['Special.hpp',['../_special_8hpp.html',1,'']]], ['special_2fbernoulli_2ehpp_73',['bernoulli.hpp',['../_special_2bernoulli_8hpp.html',1,'']]], @@ -78,9 +78,9 @@ var searchData= ['special_2fgamma_2ehpp_75',['gamma.hpp',['../_special_2gamma_8hpp.html',1,'']]], ['spherical_5fbessel_5fjn_76',['spherical_bessel_jn',['../namespacenc_1_1special.html#a979e99d8a1626829183e38f69486e263',1,'nc::special::spherical_bessel_jn(uint32 inV, dtype inX)'],['../namespacenc_1_1special.html#aa7f12646500dfd811792934164f8f403',1,'nc::special::spherical_bessel_jn(uint32 inV, const NdArray< dtype > &inArrayX)']]], ['spherical_5fbessel_5fjn_2ehpp_77',['spherical_bessel_jn.hpp',['../spherical__bessel__jn_8hpp.html',1,'']]], - ['spherical_5fbessel_5fyn_78',['spherical_bessel_yn',['../namespacenc_1_1special.html#a1628a418aa8896a4f9711083ac5579d5',1,'nc::special::spherical_bessel_yn(uint32 inV, dtype inX)'],['../namespacenc_1_1special.html#a11378004d6f60a0ecf65470d071985b0',1,'nc::special::spherical_bessel_yn(uint32 inV, const NdArray< dtype > &inArrayX)']]], + ['spherical_5fbessel_5fyn_78',['spherical_bessel_yn',['../namespacenc_1_1special.html#a11378004d6f60a0ecf65470d071985b0',1,'nc::special::spherical_bessel_yn(uint32 inV, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1special.html#a1628a418aa8896a4f9711083ac5579d5',1,'nc::special::spherical_bessel_yn(uint32 inV, dtype inX)']]], ['spherical_5fbessel_5fyn_2ehpp_79',['spherical_bessel_yn.hpp',['../spherical__bessel__yn_8hpp.html',1,'']]], - ['spherical_5fhankel_5f1_80',['spherical_hankel_1',['../namespacenc_1_1special.html#a5c0f4be297580a6d46f89b851c948227',1,'nc::special::spherical_hankel_1(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a239954539e877214833b9cfe65f742db',1,'nc::special::spherical_hankel_1(dtype1 inV, const NdArray< dtype2 > &inArray)']]], + ['spherical_5fhankel_5f1_80',['spherical_hankel_1',['../namespacenc_1_1special.html#a239954539e877214833b9cfe65f742db',1,'nc::special::spherical_hankel_1(dtype1 inV, const NdArray< dtype2 > &inArray)'],['../namespacenc_1_1special.html#a5c0f4be297580a6d46f89b851c948227',1,'nc::special::spherical_hankel_1(dtype1 inV, dtype2 inX)']]], ['spherical_5fhankel_5f1_2ehpp_81',['spherical_hankel_1.hpp',['../spherical__hankel__1_8hpp.html',1,'']]], ['spherical_5fhankel_5f2_82',['spherical_hankel_2',['../namespacenc_1_1special.html#aa0181306ece55cbaf50c65da8d215542',1,'nc::special::spherical_hankel_2(dtype1 inV, const NdArray< dtype2 > &inArray)'],['../namespacenc_1_1special.html#a6f14fa5d84fc2a11044dc884831c7496',1,'nc::special::spherical_hankel_2(dtype1 inV, dtype2 inX)']]], ['spherical_5fhankel_5f2_2ehpp_83',['spherical_hankel_2.hpp',['../spherical__hankel__2_8hpp.html',1,'']]], @@ -92,17 +92,17 @@ var searchData= ['split_2ehpp_89',['split.hpp',['../split_8hpp.html',1,'']]], ['sqr_90',['sqr',['../namespacenc_1_1utils.html#ae792e10a24b7e5b8291a6c31a28a4512',1,'nc::utils']]], ['sqr_2ehpp_91',['sqr.hpp',['../sqr_8hpp.html',1,'']]], - ['sqrt_92',['sqrt',['../namespacenc.html#a941a5a1ffb61387495a6f23dc4036287',1,'nc::sqrt(dtype inValue) noexcept'],['../namespacenc.html#abb4086978f52185f25340b0ff57ca8f0',1,'nc::sqrt(const NdArray< dtype > &inArray)']]], + ['sqrt_92',['sqrt',['../namespacenc.html#abb4086978f52185f25340b0ff57ca8f0',1,'nc::sqrt(const NdArray< dtype > &inArray)'],['../namespacenc.html#a941a5a1ffb61387495a6f23dc4036287',1,'nc::sqrt(dtype inValue) noexcept']]], ['sqrt_2ehpp_93',['sqrt.hpp',['../sqrt_8hpp.html',1,'']]], - ['square_94',['square',['../namespacenc.html#a39a70c2ad8141e46fc0c56b8d90a0a00',1,'nc::square(const NdArray< dtype > &inArray)'],['../namespacenc.html#a282e72a93afe2e6554e0f17f21dd7b9e',1,'nc::square(dtype inValue) noexcept']]], + ['square_94',['square',['../namespacenc.html#a282e72a93afe2e6554e0f17f21dd7b9e',1,'nc::square(dtype inValue) noexcept'],['../namespacenc.html#a39a70c2ad8141e46fc0c56b8d90a0a00',1,'nc::square(const NdArray< dtype > &inArray)']]], ['square_2ehpp_95',['square.hpp',['../square_8hpp.html',1,'']]], ['stable_5fsort_96',['stable_sort',['../namespacenc_1_1stl__algorithms.html#a7b2c4b6a3ef5cc55ebdae2aa757d1874',1,'nc::stl_algorithms::stable_sort(RandomIt first, RandomIt last, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#a3b9f4bb9ba9a3ea8d8f97258eaa732d9',1,'nc::stl_algorithms::stable_sort(RandomIt first, RandomIt last) noexcept']]], - ['stack_97',['stack',['../namespacenc.html#a2d30e8c82521930d506dd08f5cfaf79b',1,'nc::stack(std::vector< NdArray< dtype > > inArrayList, Axis inAxis=Axis::NONE)'],['../namespacenc.html#abbb3b38779a9d5cc3f473eef1f914057',1,'nc::stack(std::initializer_list< NdArray< dtype > > inArrayList, Axis inAxis=Axis::NONE)'],['../namespacenc_1_1detail.html#a24fef48ccdf0d872dc24bd40189c252c',1,'nc::detail::stack()']]], + ['stack_97',['stack',['../namespacenc.html#abbb3b38779a9d5cc3f473eef1f914057',1,'nc::stack()'],['../namespacenc_1_1detail.html#a24fef48ccdf0d872dc24bd40189c252c',1,'nc::detail::stack()'],['../namespacenc.html#a2d30e8c82521930d506dd08f5cfaf79b',1,'nc::stack()']]], ['stack_2ehpp_98',['stack.hpp',['../stack_8hpp.html',1,'']]], - ['standardnormal_99',['standardnormal',['../classnc_1_1random_1_1_r_n_g.html#a461f38b5aef6ae05b79e26cdaa3e0ca9',1,'nc::random::RNG::standardNormal(const Shape &inShape)'],['../classnc_1_1random_1_1_r_n_g.html#ad28cf8c6f5a889faa3eb6662201baf31',1,'nc::random::RNG::standardNormal()'],['../namespacenc_1_1random.html#a279c7f289afa743f29665cffb9bc6130',1,'nc::random::standardNormal(const Shape &inShape)'],['../namespacenc_1_1random.html#acc9d03c66c1fa8b35dea3fa0a0f075e7',1,'nc::random::standardNormal()'],['../namespacenc_1_1random_1_1detail.html#abdee8056d3ea531f0bf8a7a688e3f002',1,'nc::random::detail::standardNormal(GeneratorType &generator)'],['../namespacenc_1_1random_1_1detail.html#ad13106b872fe88187f21aeca26e078f0',1,'nc::random::detail::standardNormal(GeneratorType &generator, const Shape &inShape)']]], + ['standardnormal_99',['standardnormal',['../classnc_1_1random_1_1_r_n_g.html#ad28cf8c6f5a889faa3eb6662201baf31',1,'nc::random::RNG::standardNormal()'],['../namespacenc_1_1random.html#a279c7f289afa743f29665cffb9bc6130',1,'nc::random::standardNormal(const Shape &inShape)'],['../namespacenc_1_1random.html#acc9d03c66c1fa8b35dea3fa0a0f075e7',1,'nc::random::standardNormal()'],['../namespacenc_1_1random_1_1detail.html#ad13106b872fe88187f21aeca26e078f0',1,'nc::random::detail::standardNormal(GeneratorType &generator, const Shape &inShape)'],['../namespacenc_1_1random_1_1detail.html#abdee8056d3ea531f0bf8a7a688e3f002',1,'nc::random::detail::standardNormal(GeneratorType &generator)'],['../classnc_1_1random_1_1_r_n_g.html#a461f38b5aef6ae05b79e26cdaa3e0ca9',1,'nc::random::RNG::standardNormal()']]], ['standardnormal_2ehpp_100',['standardNormal.hpp',['../standard_normal_8hpp.html',1,'']]], ['start_101',['start',['../classnc_1_1_slice.html#a36ddb261d9057db4a9794b4fc46e9d3f',1,'nc::Slice']]], - ['static_5fassert_5farithmetic_102',['STATIC_ASSERT_ARITHMETIC',['../_static_asserts_8hpp.html#a36abb32368b91aed0d3133a4cfd5ae92',1,'StaticAsserts.hpp']]], + ['static_5fassert_5farithmetic_102',['static_assert_arithmetic',['../_static_asserts_8hpp.html#a36abb32368b91aed0d3133a4cfd5ae92',1,'STATIC_ASSERT_ARITHMETIC: StaticAsserts.hpp'],['../classnc_1_1linalg_1_1_s_v_d.html#a38a3dacc268968d6910618f0ff79073e',1,'nc::linalg::SVD::STATIC_ASSERT_ARITHMETIC()']]], ['static_5fassert_5farithmetic_5for_5fcomplex_103',['STATIC_ASSERT_ARITHMETIC_OR_COMPLEX',['../_static_asserts_8hpp.html#a1589f74d429e30786c65cda69b17ab96',1,'StaticAsserts.hpp']]], ['static_5fassert_5fcomplex_104',['STATIC_ASSERT_COMPLEX',['../_static_asserts_8hpp.html#a1cd1b98c2b918cbd369afc12c11a0597',1,'StaticAsserts.hpp']]], ['static_5fassert_5ffloat_105',['STATIC_ASSERT_FLOAT',['../_static_asserts_8hpp.html#a0cd8e186da549fbdd918111d0302d973',1,'StaticAsserts.hpp']]], @@ -111,28 +111,30 @@ var searchData= ['static_5fassert_5fvalid_5fdtype_108',['STATIC_ASSERT_VALID_DTYPE',['../_static_asserts_8hpp.html#a00cfe1ea01e56fe28ffe3d6ce5cae468',1,'StaticAsserts.hpp']]], ['staticasserts_2ehpp_109',['StaticAsserts.hpp',['../_static_asserts_8hpp.html',1,'']]], ['stdcomplexoperators_2ehpp_110',['StdComplexOperators.hpp',['../_std_complex_operators_8hpp.html',1,'']]], - ['stdev_111',['stdev',['../namespacenc.html#a53ac40df08d0e0ac23ac99719a46f11e',1,'nc::stdev(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#ab743c3f0710a1d9cc48364d749e8da23',1,'nc::stdev(const NdArray< std::complex< dtype > > &inArray, Axis inAxis=Axis::NONE)']]], + ['stdev_111',['stdev',['../namespacenc.html#ab743c3f0710a1d9cc48364d749e8da23',1,'nc::stdev(const NdArray< std::complex< dtype > > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a53ac40df08d0e0ac23ac99719a46f11e',1,'nc::stdev(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], ['stdev_2ehpp_112',['stdev.hpp',['../stdev_8hpp.html',1,'']]], ['step_113',['step',['../classnc_1_1_slice.html#a112855a11aa1737b7859e3d63feb09c4',1,'nc::Slice']]], ['stlalgorithms_2ehpp_114',['StlAlgorithms.hpp',['../_stl_algorithms_8hpp.html',1,'']]], ['stop_115',['stop',['../classnc_1_1_slice.html#ac2d72f4ca003ed645bc82efcafee87f5',1,'nc::Slice']]], - ['str_116',['str',['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#ae57aeec394d31a60595d12a67b4eb35c',1,'nc::coordinates::reference_frames::RA::str()'],['../classnc_1_1_nd_array.html#aa44f94cc8d02a56636223686f30d84f1',1,'nc::NdArray::str()'],['../classnc_1_1polynomial_1_1_poly1d.html#aa5c091077a037bab14a1c558ece21435',1,'nc::polynomial::Poly1d::str()'],['../classnc_1_1rotations_1_1_quaternion.html#a0ddeeba7435df3364f262215f24c93c1',1,'nc::rotations::Quaternion::str()'],['../classnc_1_1image_processing_1_1_pixel.html#ae47f279d2f0ba0921027e787e3773ee8',1,'nc::imageProcessing::Pixel::str()'],['../classnc_1_1image_processing_1_1_cluster.html#aaa1ee55d0c47196847b8bb1a76258bd3',1,'nc::imageProcessing::Cluster::str()'],['../classnc_1_1image_processing_1_1_centroid.html#aa39ae81638b8f7ed7b81d4476e2a6316',1,'nc::imageProcessing::Centroid::str()'],['../classnc_1_1_slice.html#af8bc3bb19b48fd09c769fd1fa9860ed5',1,'nc::Slice::str()'],['../classnc_1_1_shape.html#aadb0e0d633d64e5eb5a4f9bef12b26c4',1,'nc::Shape::str()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa3367f604ff7934fce178ce31dc98d9a',1,'nc::coordinates::reference_frames::Celestial::str()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a86d558ee10fd72ba329326721607a782',1,'nc::coordinates::reference_frames::Dec::str()']]], + ['str_116',['str',['../classnc_1_1rotations_1_1_quaternion.html#a0ddeeba7435df3364f262215f24c93c1',1,'nc::rotations::Quaternion::str()'],['../classnc_1_1_shape.html#aadb0e0d633d64e5eb5a4f9bef12b26c4',1,'nc::Shape::str()'],['../classnc_1_1polynomial_1_1_poly1d.html#aa5c091077a037bab14a1c558ece21435',1,'nc::polynomial::Poly1d::str()'],['../classnc_1_1_nd_array.html#aa44f94cc8d02a56636223686f30d84f1',1,'nc::NdArray::str()'],['../classnc_1_1image_processing_1_1_pixel.html#ae47f279d2f0ba0921027e787e3773ee8',1,'nc::imageProcessing::Pixel::str()'],['../classnc_1_1image_processing_1_1_cluster.html#aaa1ee55d0c47196847b8bb1a76258bd3',1,'nc::imageProcessing::Cluster::str()'],['../classnc_1_1image_processing_1_1_centroid.html#aa39ae81638b8f7ed7b81d4476e2a6316',1,'nc::imageProcessing::Centroid::str()'],['../classnc_1_1_slice.html#af8bc3bb19b48fd09c769fd1fa9860ed5',1,'nc::Slice::str()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa3367f604ff7934fce178ce31dc98d9a',1,'nc::coordinates::reference_frames::Celestial::str()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a86d558ee10fd72ba329326721607a782',1,'nc::coordinates::reference_frames::Dec::str()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#ae57aeec394d31a60595d12a67b4eb35c',1,'nc::coordinates::reference_frames::RA::str()']]], ['strtotimepoint_117',['strToTimepoint',['../classnc_1_1_date_time.html#ac3414e4f92f84c20d072566652a2721e',1,'nc::DateTime']]], - ['studentt_118',['studentt',['../namespacenc_1_1random.html#a0323794f6a1d133f70adfa98409eb176',1,'nc::random::studentT(const Shape &inShape, dtype inDof)'],['../namespacenc_1_1random.html#a9e8074cb89e2362b5ae485834f550217',1,'nc::random::studentT(dtype inDof)'],['../namespacenc_1_1random_1_1detail.html#a684b49082bfd8557d879d56a22c3bc38',1,'nc::random::detail::studentT(GeneratorType &generator, const Shape &inShape, dtype inDof)'],['../namespacenc_1_1random_1_1detail.html#ac3b67cb54637b932ca78f86f76ca10e1',1,'nc::random::detail::studentT(GeneratorType &generator, dtype inDof)'],['../classnc_1_1random_1_1_r_n_g.html#a968778762895842912026116b208cb76',1,'nc::random::RNG::studentT(const Shape &inShape, dtype inDof)'],['../classnc_1_1random_1_1_r_n_g.html#a4706294a8b8ee0ec46dde802d2b37e1d',1,'nc::random::RNG::studentT(dtype inDof)']]], + ['studentt_118',['studentt',['../classnc_1_1random_1_1_r_n_g.html#a968778762895842912026116b208cb76',1,'nc::random::RNG::studentT()'],['../namespacenc_1_1random.html#a0323794f6a1d133f70adfa98409eb176',1,'nc::random::studentT(const Shape &inShape, dtype inDof)'],['../namespacenc_1_1random.html#a9e8074cb89e2362b5ae485834f550217',1,'nc::random::studentT(dtype inDof)'],['../namespacenc_1_1random_1_1detail.html#a684b49082bfd8557d879d56a22c3bc38',1,'nc::random::detail::studentT(GeneratorType &generator, const Shape &inShape, dtype inDof)'],['../namespacenc_1_1random_1_1detail.html#ac3b67cb54637b932ca78f86f76ca10e1',1,'nc::random::detail::studentT(GeneratorType &generator, dtype inDof)'],['../classnc_1_1random_1_1_r_n_g.html#a4706294a8b8ee0ec46dde802d2b37e1d',1,'nc::random::RNG::studentT()']]], ['studentt_2ehpp_119',['studentT.hpp',['../student_t_8hpp.html',1,'']]], - ['subtract_120',['subtract',['../namespacenc.html#a0ee18a6155789e53dcf31c6a48bdc6be',1,'nc::subtract(const NdArray< std::complex< dtype > > &inArray, dtype value)'],['../namespacenc.html#a1d5ece01fede35ffb35c6fac99917fbe',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#af3605001221b69f03d61e993f9ca71aa',1,'nc::subtract(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#afd694b0391256a6032687d6ff6ac95ca',1,'nc::subtract(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a308ab8fd267cf61ed2495f45348f52e0',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype > > &inArray2)'],['../namespacenc.html#a412ca2e04f5178de358c76b1e46698a2',1,'nc::subtract(const NdArray< std::complex< dtype > > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a17440059a0560c2091bbddbba29f36e0',1,'nc::subtract(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a533278a24e8080428321af5673f96929',1,'nc::subtract(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a1152233f151be8ef1f5f4eab940ba3de',1,'nc::subtract(dtype value, const NdArray< std::complex< dtype > > &inArray)']]], + ['subtract_120',['subtract',['../namespacenc.html#a0ee18a6155789e53dcf31c6a48bdc6be',1,'nc::subtract(const NdArray< std::complex< dtype > > &inArray, dtype value)'],['../namespacenc.html#a533278a24e8080428321af5673f96929',1,'nc::subtract(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a17440059a0560c2091bbddbba29f36e0',1,'nc::subtract(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a412ca2e04f5178de358c76b1e46698a2',1,'nc::subtract(const NdArray< std::complex< dtype > > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a308ab8fd267cf61ed2495f45348f52e0',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype > > &inArray2)'],['../namespacenc.html#afd694b0391256a6032687d6ff6ac95ca',1,'nc::subtract(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#af3605001221b69f03d61e993f9ca71aa',1,'nc::subtract(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#a1d5ece01fede35ffb35c6fac99917fbe',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a1152233f151be8ef1f5f4eab940ba3de',1,'nc::subtract(dtype value, const NdArray< std::complex< dtype > > &inArray)']]], ['subtract_2ehpp_121',['subtract.hpp',['../subtract_8hpp.html',1,'']]], ['sum_122',['sum',['../classnc_1_1_nd_array.html#af92a510cd4fb5543e2694b2984c153bb',1,'nc::NdArray::sum()'],['../namespacenc.html#ab688952cfec9d98f50dee43378a9f27b',1,'nc::sum()']]], ['sum_2ehpp_123',['sum.hpp',['../sum_8hpp.html',1,'']]], - ['svd_124',['svd',['../classnc_1_1linalg_1_1_s_v_d.html#ae0561bbc9633e436139258b0c70b98ba',1,'nc::linalg::SVD::SVD()'],['../classnc_1_1linalg_1_1_s_v_d.html',1,'nc::linalg::SVD'],['../namespacenc_1_1linalg.html#acb38ad2613d50422afc539d005159055',1,'nc::linalg::svd(const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVt)']]], + ['svd_124',['svd',['../classnc_1_1linalg_1_1_s_v_d.html#ab4ba7cba1b76cd0a05805c894b93e356',1,'nc::linalg::SVD::SVD()'],['../namespacenc_1_1linalg.html#a305c49baed6667d8d64b9cd13f2c5060',1,'nc::linalg::svd(const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVT)'],['../classnc_1_1linalg_1_1_s_v_d.html',1,'nc::linalg::SVD< dtype >']]], ['svd_2ehpp_125',['svd.hpp',['../svd_8hpp.html',1,'']]], - ['svdclass_2ehpp_126',['SVDClass.hpp',['../_s_v_d_class_8hpp.html',1,'']]], - ['swap_127',['swap',['../namespacenc.html#a39da0502565b913855379ea1439047e1',1,'nc']]], - ['swap_2ehpp_128',['swap.hpp',['../swap_8hpp.html',1,'']]], - ['swapaxes_129',['swapaxes',['../classnc_1_1_nd_array.html#a5f3177c5a086cd8e26b318f6e300eb73',1,'nc::NdArray::swapaxes()'],['../namespacenc.html#a2b2486e85699eb3710fa521082c80436',1,'nc::swapaxes()']]], - ['swapaxes_2ehpp_130',['swapaxes.hpp',['../swapaxes_8hpp.html',1,'']]], - ['swapcols_131',['swapcols',['../classnc_1_1_nd_array.html#a15f4ed211166972e56b463ae1a2bcd54',1,'nc::NdArray::swapCols()'],['../namespacenc.html#a4f75f9175f584d2713ba68962b824dbe',1,'nc::swapCols()']]], - ['swapcols_2ehpp_132',['swapCols.hpp',['../swap_cols_8hpp.html',1,'']]], - ['swaprows_133',['swaprows',['../classnc_1_1_nd_array.html#a35994576cdee7c305c6bd37742ce0f25',1,'nc::NdArray::swapRows()'],['../namespacenc.html#ad028746fa5632bec388025cb21d33e0c',1,'nc::swapRows()']]], - ['swaprows_2ehpp_134',['swapRows.hpp',['../swap_rows_8hpp.html',1,'']]] + ['svd_2fsvd_2ehpp_126',['SVD.hpp',['../svd_2svd_8hpp.html',1,'']]], + ['svdvals_127',['svdvals',['../namespacenc_1_1linalg.html#a9c3f05864405242a8917530242cdda9c',1,'nc::linalg']]], + ['svdvals_2ehpp_128',['svdvals.hpp',['../svdvals_8hpp.html',1,'']]], + ['swap_129',['swap',['../namespacenc.html#a39da0502565b913855379ea1439047e1',1,'nc']]], + ['swap_2ehpp_130',['swap.hpp',['../swap_8hpp.html',1,'']]], + ['swapaxes_131',['swapaxes',['../namespacenc.html#a2b2486e85699eb3710fa521082c80436',1,'nc::swapaxes()'],['../classnc_1_1_nd_array.html#a5f3177c5a086cd8e26b318f6e300eb73',1,'nc::NdArray::swapaxes()']]], + ['swapaxes_2ehpp_132',['swapaxes.hpp',['../swapaxes_8hpp.html',1,'']]], + ['swapcols_133',['swapcols',['../namespacenc.html#a4f75f9175f584d2713ba68962b824dbe',1,'nc::swapCols()'],['../classnc_1_1_nd_array.html#a15f4ed211166972e56b463ae1a2bcd54',1,'nc::NdArray::swapCols()']]], + ['swapcols_2ehpp_134',['swapCols.hpp',['../swap_cols_8hpp.html',1,'']]], + ['swaprows_135',['swaprows',['../namespacenc.html#ad028746fa5632bec388025cb21d33e0c',1,'nc::swapRows()'],['../classnc_1_1_nd_array.html#a35994576cdee7c305c6bd37742ce0f25',1,'nc::NdArray::swapRows()']]], + ['swaprows_2ehpp_136',['swapRows.hpp',['../swap_rows_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_13.js b/docs/doxygen/html/search/all_13.js index e9d904f1d..cb2e35789 100644 --- a/docs/doxygen/html/search/all_13.js +++ b/docs/doxygen/html/search/all_13.js @@ -24,38 +24,39 @@ var searchData= ['tofile_21',['tofile',['../namespacenc.html#a7dc5b27b93f5a921a39151714fa78d67',1,'nc::tofile()'],['../classnc_1_1_nd_array.html#a3533a4192c58304b6be7035098d8e263',1,'nc::NdArray::tofile(const std::string &inFilename) const'],['../classnc_1_1_nd_array.html#a25390a2e453495e50219103d389a62d1',1,'nc::NdArray::tofile(const std::string &inFilename, const char inSep) const'],['../namespacenc.html#adf3cdf51801e83c58bc58c606781467d',1,'nc::tofile()']]], ['tofile_2ehpp_22',['tofile.hpp',['../tofile_8hpp.html',1,'']]], ['toindices_23',['toindices',['../classnc_1_1_slice.html#a31124d5f9e890f57cffb70f2f58260ad',1,'nc::Slice::toIndices()'],['../classnc_1_1_nd_array.html#a01777607b6958af633cc543f9c3ab85f',1,'nc::NdArray::toIndices()']]], - ['tondarray_24',['tondarray',['../classnc_1_1rotations_1_1_quaternion.html#a68e07632cd09569ad607cb802b400ded',1,'nc::rotations::Quaternion::toNdArray()'],['../classnc_1_1_vec2.html#af92e16192f4c40828c343a036506d6cb',1,'nc::Vec2::toNdArray()'],['../classnc_1_1_vec3.html#aea160d6b860e0ed5d931c9494229b530',1,'nc::Vec3::toNdArray()']]], - ['tostlvector_25',['tostlvector',['../classnc_1_1_nd_array.html#a5b35f00bf7af382d3c98792a20bd3531',1,'nc::NdArray::toStlVector()'],['../namespacenc.html#a1d11575e06af9fcb2a87201fc62e9cba',1,'nc::toStlVector()']]], - ['tostlvector_2ehpp_26',['toStlVector.hpp',['../to_stl_vector_8hpp.html',1,'']]], - ['tostr_27',['toStr',['../classnc_1_1_date_time.html#ac751dc623c87ab1178628fcff006d098',1,'nc::DateTime']]], - ['tostring_28',['tostring',['../classnc_1_1_vec3.html#a29fad7279d8da7f78805fee0c6d73408',1,'nc::Vec3::toString()'],['../classnc_1_1_vec2.html#acd4277d3a9acded9199afef378e1907c',1,'nc::Vec2::toString()']]], - ['totimepoint_29',['toTimePoint',['../classnc_1_1_date_time.html#a4e91e1d749d40be47ef9ba4611a62fcc',1,'nc::DateTime']]], - ['trace_30',['trace',['../classnc_1_1_nd_array.html#add51f0dd66fd9e6f8833a059262e3acf',1,'nc::NdArray::trace()'],['../namespacenc.html#a4a75035db8c766b2cececb1f3e4d5b74',1,'nc::trace()']]], - ['trace_2ehpp_31',['trace.hpp',['../trace_8hpp.html',1,'']]], - ['transform_32',['transform',['../namespacenc_1_1stl__algorithms.html#a616d5dabd547326285946d0014361ab4',1,'nc::stl_algorithms::transform(InputIt first, InputIt last, OutputIt destination, UnaryOperation unaryFunction)'],['../namespacenc_1_1stl__algorithms.html#af358fec5563ae500162b310fe263a36d',1,'nc::stl_algorithms::transform(InputIt1 first1, InputIt1 last1, InputIt2 first2, OutputIt destination, BinaryOperation unaryFunction)']]], - ['transforms_2ehpp_33',['Transforms.hpp',['../_transforms_8hpp.html',1,'']]], - ['transpose_34',['transpose',['../classnc_1_1_nd_array.html#a29c62da7ad489f4fc0bc706800820807',1,'nc::NdArray::transpose()'],['../namespacenc.html#af5bc0015bc8f7e29d7eba3c17ec139b4',1,'nc::transpose()']]], - ['transpose_2ehpp_35',['transpose.hpp',['../transpose_8hpp.html',1,'']]], - ['trapazoidal_36',['trapazoidal',['../namespacenc_1_1integrate.html#acdfbecb87f7780b2961eb4e5d3b3d109',1,'nc::integrate']]], - ['trapazoidal_2ehpp_37',['trapazoidal.hpp',['../trapazoidal_8hpp.html',1,'']]], - ['trapz_38',['trapz',['../namespacenc.html#a4d3e8e18ea6e0a61cfcda1711cce9e78',1,'nc::trapz(const NdArray< dtype > &inArrayY, const NdArray< dtype > &inArrayX, Axis inAxis=Axis::NONE)'],['../namespacenc.html#ad1b0aafab44c981245443cf5c1988892',1,'nc::trapz(const NdArray< dtype > &inArray, double dx=1., Axis inAxis=Axis::NONE)']]], - ['trapz_2ehpp_39',['trapz.hpp',['../trapz_8hpp.html',1,'']]], - ['tri_2ehpp_40',['tri.hpp',['../tri_8hpp.html',1,'']]], - ['triangle_41',['triangle',['../classnc_1_1random_1_1_r_n_g.html#a1df9a95c6264a2896991fc9795d528dc',1,'nc::random::RNG::triangle()'],['../namespacenc_1_1random.html#a108d42a99ddb594bdc09a0d83a2b9346',1,'nc::random::triangle(const Shape &inShape, dtype inA=0, dtype inB=0.5, dtype inC=1)'],['../namespacenc_1_1random.html#a3dd603264757ce4334bfc0b989cd4503',1,'nc::random::triangle(dtype inA=0, dtype inB=0.5, dtype inC=1)'],['../namespacenc_1_1random_1_1detail.html#a5e20ac218d3d5eb43c76e7f306b8ea88',1,'nc::random::detail::triangle(GeneratorType &generator, const Shape &inShape, dtype inA=0, dtype inB=0.5, dtype inC=1)'],['../namespacenc_1_1random_1_1detail.html#a116977f73650034faaa5d33b55819ef5',1,'nc::random::detail::triangle(GeneratorType &generator, dtype inA=0, dtype inB=0.5, dtype inC=1)'],['../classnc_1_1random_1_1_r_n_g.html#a19e62f1d8c49f784836b1c3942ccae0a',1,'nc::random::RNG::triangle()']]], - ['triangle_2ehpp_42',['triangle.hpp',['../triangle_8hpp.html',1,'']]], - ['trigamma_43',['trigamma',['../namespacenc_1_1special.html#a8f98455b0421ab89f4722377d9606091',1,'nc::special::trigamma(dtype inValue)'],['../namespacenc_1_1special.html#a0df9137d28cb3421435b464cbc482d5b',1,'nc::special::trigamma(const NdArray< dtype > &inArray)']]], - ['trigamma_2ehpp_44',['trigamma.hpp',['../trigamma_8hpp.html',1,'']]], - ['tril_45',['tril',['../namespacenc.html#a198857bb3bf09efffcc94e6aa3fbed87',1,'nc::tril(uint32 inN, int32 inOffset=0)'],['../namespacenc.html#a4ce8884249c5c1a85464929f09806645',1,'nc::tril(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#ac168ed7ea5aa5e1dd6f4f2d92b407c3c',1,'nc::tril(const NdArray< dtype > &inArray, int32 inOffset=0)']]], - ['trim_5fzeros_46',['trim_zeros',['../namespacenc.html#a6324f311bd14781e1e024c6f1a2cb718',1,'nc']]], - ['trim_5fzeros_2ehpp_47',['trim_zeros.hpp',['../trim__zeros_8hpp.html',1,'']]], - ['trimboundary1d_48',['trimBoundary1d',['../namespacenc_1_1filter_1_1boundary.html#aa753b52c6793ccc5e186979323b66371',1,'nc::filter::boundary']]], - ['trimboundary1d_2ehpp_49',['trimBoundary1d.hpp',['../trim_boundary1d_8hpp.html',1,'']]], - ['trimboundary2d_50',['trimBoundary2d',['../namespacenc_1_1filter_1_1boundary.html#a5fda93817aa652cdd377c9dbb6814cf7',1,'nc::filter::boundary']]], - ['trimboundary2d_2ehpp_51',['trimBoundary2d.hpp',['../trim_boundary2d_8hpp.html',1,'']]], - ['triu_52',['triu',['../namespacenc.html#a05c4de5a2c55f32884dec4b1d5634a36',1,'nc::triu(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#ab8b617f7b76106ae590515c253ea6996',1,'nc::triu(uint32 inN, int32 inOffset=0)'],['../namespacenc.html#ab5d2691b2042cc41b6b4fecd322a5df4',1,'nc::triu(const NdArray< dtype > &inArray, int32 inOffset=0)']]], - ['trunc_53',['trunc',['../namespacenc.html#ac83a50ef99e61f116a86df98196f4a8b',1,'nc::trunc(dtype inValue) noexcept'],['../namespacenc.html#a81f9e7575733a8279c0dbea1897716a8',1,'nc::trunc(const NdArray< dtype > &inArray)']]], - ['trunc_2ehpp_54',['trunc.hpp',['../trunc_8hpp.html',1,'']]], - ['twopi_55',['twoPi',['../namespacenc_1_1constants.html#ae18e903e208f0017275a35ef9d3f06b5',1,'nc::constants']]], - ['types_2ehpp_56',['Types.hpp',['../_types_8hpp.html',1,'']]], - ['typetraits_2ehpp_57',['TypeTraits.hpp',['../_type_traits_8hpp.html',1,'']]] + ['tolerance_24',['TOLERANCE',['../classnc_1_1linalg_1_1_s_v_d.html#a6dd64d76d201318568ce13eb305810fd',1,'nc::linalg::SVD']]], + ['tondarray_25',['tondarray',['../classnc_1_1rotations_1_1_quaternion.html#a68e07632cd09569ad607cb802b400ded',1,'nc::rotations::Quaternion::toNdArray()'],['../classnc_1_1_vec2.html#af92e16192f4c40828c343a036506d6cb',1,'nc::Vec2::toNdArray()'],['../classnc_1_1_vec3.html#aea160d6b860e0ed5d931c9494229b530',1,'nc::Vec3::toNdArray()']]], + ['tostlvector_26',['tostlvector',['../classnc_1_1_nd_array.html#a5b35f00bf7af382d3c98792a20bd3531',1,'nc::NdArray::toStlVector()'],['../namespacenc.html#a1d11575e06af9fcb2a87201fc62e9cba',1,'nc::toStlVector()']]], + ['tostlvector_2ehpp_27',['toStlVector.hpp',['../to_stl_vector_8hpp.html',1,'']]], + ['tostr_28',['toStr',['../classnc_1_1_date_time.html#ac751dc623c87ab1178628fcff006d098',1,'nc::DateTime']]], + ['tostring_29',['tostring',['../classnc_1_1_vec2.html#acd4277d3a9acded9199afef378e1907c',1,'nc::Vec2::toString()'],['../classnc_1_1_vec3.html#a29fad7279d8da7f78805fee0c6d73408',1,'nc::Vec3::toString()']]], + ['totimepoint_30',['toTimePoint',['../classnc_1_1_date_time.html#a4e91e1d749d40be47ef9ba4611a62fcc',1,'nc::DateTime']]], + ['trace_31',['trace',['../classnc_1_1_nd_array.html#add51f0dd66fd9e6f8833a059262e3acf',1,'nc::NdArray::trace()'],['../namespacenc.html#a4a75035db8c766b2cececb1f3e4d5b74',1,'nc::trace()']]], + ['trace_2ehpp_32',['trace.hpp',['../trace_8hpp.html',1,'']]], + ['transform_33',['transform',['../namespacenc_1_1stl__algorithms.html#a616d5dabd547326285946d0014361ab4',1,'nc::stl_algorithms::transform(InputIt first, InputIt last, OutputIt destination, UnaryOperation unaryFunction)'],['../namespacenc_1_1stl__algorithms.html#af358fec5563ae500162b310fe263a36d',1,'nc::stl_algorithms::transform(InputIt1 first1, InputIt1 last1, InputIt2 first2, OutputIt destination, BinaryOperation unaryFunction)']]], + ['transforms_2ehpp_34',['Transforms.hpp',['../_transforms_8hpp.html',1,'']]], + ['transpose_35',['transpose',['../classnc_1_1_nd_array.html#a29c62da7ad489f4fc0bc706800820807',1,'nc::NdArray::transpose()'],['../namespacenc.html#af5bc0015bc8f7e29d7eba3c17ec139b4',1,'nc::transpose()']]], + ['transpose_2ehpp_36',['transpose.hpp',['../transpose_8hpp.html',1,'']]], + ['trapazoidal_37',['trapazoidal',['../namespacenc_1_1integrate.html#acdfbecb87f7780b2961eb4e5d3b3d109',1,'nc::integrate']]], + ['trapazoidal_2ehpp_38',['trapazoidal.hpp',['../trapazoidal_8hpp.html',1,'']]], + ['trapz_39',['trapz',['../namespacenc.html#a4d3e8e18ea6e0a61cfcda1711cce9e78',1,'nc::trapz(const NdArray< dtype > &inArrayY, const NdArray< dtype > &inArrayX, Axis inAxis=Axis::NONE)'],['../namespacenc.html#ad1b0aafab44c981245443cf5c1988892',1,'nc::trapz(const NdArray< dtype > &inArray, double dx=1., Axis inAxis=Axis::NONE)']]], + ['trapz_2ehpp_40',['trapz.hpp',['../trapz_8hpp.html',1,'']]], + ['tri_2ehpp_41',['tri.hpp',['../tri_8hpp.html',1,'']]], + ['triangle_42',['triangle',['../classnc_1_1random_1_1_r_n_g.html#a1df9a95c6264a2896991fc9795d528dc',1,'nc::random::RNG::triangle()'],['../namespacenc_1_1random.html#a108d42a99ddb594bdc09a0d83a2b9346',1,'nc::random::triangle(const Shape &inShape, dtype inA=0, dtype inB=0.5, dtype inC=1)'],['../namespacenc_1_1random.html#a3dd603264757ce4334bfc0b989cd4503',1,'nc::random::triangle(dtype inA=0, dtype inB=0.5, dtype inC=1)'],['../namespacenc_1_1random_1_1detail.html#a5e20ac218d3d5eb43c76e7f306b8ea88',1,'nc::random::detail::triangle(GeneratorType &generator, const Shape &inShape, dtype inA=0, dtype inB=0.5, dtype inC=1)'],['../namespacenc_1_1random_1_1detail.html#a116977f73650034faaa5d33b55819ef5',1,'nc::random::detail::triangle(GeneratorType &generator, dtype inA=0, dtype inB=0.5, dtype inC=1)'],['../classnc_1_1random_1_1_r_n_g.html#a19e62f1d8c49f784836b1c3942ccae0a',1,'nc::random::RNG::triangle()']]], + ['triangle_2ehpp_43',['triangle.hpp',['../triangle_8hpp.html',1,'']]], + ['trigamma_44',['trigamma',['../namespacenc_1_1special.html#a8f98455b0421ab89f4722377d9606091',1,'nc::special::trigamma(dtype inValue)'],['../namespacenc_1_1special.html#a0df9137d28cb3421435b464cbc482d5b',1,'nc::special::trigamma(const NdArray< dtype > &inArray)']]], + ['trigamma_2ehpp_45',['trigamma.hpp',['../trigamma_8hpp.html',1,'']]], + ['tril_46',['tril',['../namespacenc.html#a198857bb3bf09efffcc94e6aa3fbed87',1,'nc::tril(uint32 inN, int32 inOffset=0)'],['../namespacenc.html#a4ce8884249c5c1a85464929f09806645',1,'nc::tril(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#ac168ed7ea5aa5e1dd6f4f2d92b407c3c',1,'nc::tril(const NdArray< dtype > &inArray, int32 inOffset=0)']]], + ['trim_5fzeros_47',['trim_zeros',['../namespacenc.html#a6324f311bd14781e1e024c6f1a2cb718',1,'nc']]], + ['trim_5fzeros_2ehpp_48',['trim_zeros.hpp',['../trim__zeros_8hpp.html',1,'']]], + ['trimboundary1d_49',['trimBoundary1d',['../namespacenc_1_1filter_1_1boundary.html#aa753b52c6793ccc5e186979323b66371',1,'nc::filter::boundary']]], + ['trimboundary1d_2ehpp_50',['trimBoundary1d.hpp',['../trim_boundary1d_8hpp.html',1,'']]], + ['trimboundary2d_51',['trimBoundary2d',['../namespacenc_1_1filter_1_1boundary.html#a5fda93817aa652cdd377c9dbb6814cf7',1,'nc::filter::boundary']]], + ['trimboundary2d_2ehpp_52',['trimBoundary2d.hpp',['../trim_boundary2d_8hpp.html',1,'']]], + ['triu_53',['triu',['../namespacenc.html#a05c4de5a2c55f32884dec4b1d5634a36',1,'nc::triu(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#ab8b617f7b76106ae590515c253ea6996',1,'nc::triu(uint32 inN, int32 inOffset=0)'],['../namespacenc.html#ab5d2691b2042cc41b6b4fecd322a5df4',1,'nc::triu(const NdArray< dtype > &inArray, int32 inOffset=0)']]], + ['trunc_54',['trunc',['../namespacenc.html#ac83a50ef99e61f116a86df98196f4a8b',1,'nc::trunc(dtype inValue) noexcept'],['../namespacenc.html#a81f9e7575733a8279c0dbea1897716a8',1,'nc::trunc(const NdArray< dtype > &inArray)']]], + ['trunc_2ehpp_55',['trunc.hpp',['../trunc_8hpp.html',1,'']]], + ['twopi_56',['twoPi',['../namespacenc_1_1constants.html#ae18e903e208f0017275a35ef9d3f06b5',1,'nc::constants']]], + ['types_2ehpp_57',['Types.hpp',['../_types_8hpp.html',1,'']]], + ['typetraits_2ehpp_58',['TypeTraits.hpp',['../_type_traits_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_14.js b/docs/doxygen/html/search/all_14.js index a043cf59d..9cca66dd2 100644 --- a/docs/doxygen/html/search/all_14.js +++ b/docs/doxygen/html/search/all_14.js @@ -1,6 +1,6 @@ var searchData= [ - ['u_0',['u',['../classnc_1_1linalg_1_1_s_v_d.html#af28a679bf8a8ef8af95184a26a6fbb4e',1,'nc::linalg::SVD']]], + ['u_0',['u',['../classnc_1_1linalg_1_1_s_v_d.html#a158910084dd44940dca481dbf5f92382',1,'nc::linalg::SVD']]], ['uint16_1',['uint16',['../namespacenc.html#a8146518cf6c6a8029c3d84a376167793',1,'nc']]], ['uint32_2',['uint32',['../namespacenc.html#af0f49663fb63332596e2e6327009d581',1,'nc']]], ['uint64_3',['uint64',['../namespacenc.html#a773f8535ba713f886e9e1b8378f6d76d',1,'nc']]], diff --git a/docs/doxygen/html/search/all_15.js b/docs/doxygen/html/search/all_15.js index 3bec9d244..1b5ddf12f 100644 --- a/docs/doxygen/html/search/all_15.js +++ b/docs/doxygen/html/search/all_15.js @@ -1,6 +1,6 @@ var searchData= [ - ['v_0',['v',['../classnc_1_1linalg_1_1_s_v_d.html#ab0ff491e89a4242d15854683d0a45650',1,'nc::linalg::SVD']]], + ['v_0',['v',['../classnc_1_1linalg_1_1_s_v_d.html#adc73c87eefc76c303ef510b5c2534fa3',1,'nc::linalg::SVD']]], ['value_1',['value',['../structnc_1_1greater_than.html#a6664c509bb1b73d1547aeffa4ea2afec',1,'nc::greaterThan::value'],['../structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html#add526ed6ceb3045a816385e5c2c6d553',1,'nc::is_complex< std::complex< T > >::value'],['../structnc_1_1is__complex.html#a273a78ae8b41cf81e633f259204ce5dd',1,'nc::is_complex::value'],['../structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#abcc0bf96b96ead1f67112d755aa417a8',1,'nc::is_ndarray_int< NdArray< dtype, Allocator > >::value'],['../structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#adf26f13ad7b6cf3263f4b8f57ccb0283',1,'nc::type_traits::is_ndarray_signed_int< NdArray< dtype, Allocator > >::value'],['../structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html#ac6c1b85d844e22cf66f62d1c05912d55',1,'nc::type_traits::is_ndarray_int< NdArray< dtype, Allocator > >::value'],['../structnc_1_1is__valid__dtype.html#af383f42b2b624cc161c1748b98cc541e',1,'nc::is_valid_dtype::value'],['../classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize_3_01_data_type_00_01std_1_1void__te6ccce939d7e8d93862519645c528e31.html#a5fb6e321c54ab9ccc32f1754ec99edb4',1,'nc::logger::detail::type_traits::has_serialize< DataType, std::void_t< std::enable_if_t< std::is_same_v< serialize_t< DataType >, std::string >, int > > >::value'],['../classnc_1_1logger_1_1detail_1_1type__traits_1_1has__serialize.html#abcefce32a229b9072bce3593e02fe319',1,'nc::logger::detail::type_traits::has_serialize::value'],['../structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html#a02b49e4936f586c2407c089400ee891f',1,'nc::all_same< T1, T2 >::value'],['../structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html#a6e1a48ad3dc95bb666261cd0e3503f5c',1,'nc::all_arithmetic< Head, Tail... >::value'],['../structnc_1_1all__arithmetic_3_01_t_01_4.html#aeb8a99e0539f9d4d01b6ac63dfe6c186',1,'nc::all_arithmetic< T >::value'],['../structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html#a35efae6bdf247952d31021b7e811a653',1,'nc::all_same< T1, Head, Tail... >::value']]], ['value2str_2',['value2str',['../namespacenc_1_1utils.html#a83530b13c9cc3b01b9bd8b8d3113290a',1,'nc::utils']]], ['value2str_2ehpp_3',['value2str.hpp',['../value2str_8hpp.html',1,'']]], diff --git a/docs/doxygen/html/search/all_2.js b/docs/doxygen/html/search/all_2.js index cf154c6e5..2adf804e1 100644 --- a/docs/doxygen/html/search/all_2.js +++ b/docs/doxygen/html/search/all_2.js @@ -104,7 +104,7 @@ var searchData= ['convolve1d_2ehpp_101',['convolve1d.hpp',['../convolve1d_8hpp.html',1,'']]], ['coordinates_2ehpp_102',['Coordinates.hpp',['../_coordinates_8hpp.html',1,'']]], ['coordinates_2freferenceframes_2fconstants_2ehpp_103',['Constants.hpp',['../_coordinates_2_reference_frames_2_constants_8hpp.html',1,'']]], - ['copy_104',['copy',['../classnc_1_1_nd_array.html#a5ae6d993d5c8d41eee61ddca0b9f2b31',1,'nc::NdArray::copy()'],['../namespacenc.html#ae31148c2c120e8ed49df98e7dcd960ecae8606d021da140a92c7eba8d9b8af84f',1,'nc::COPY'],['../namespacenc_1_1stl__algorithms.html#ae62a4e197ec640aacea520220bd27cef',1,'nc::stl_algorithms::copy()'],['../namespacenc.html#a77989f6ee687183d9797ef6d4a8c3dce',1,'nc::copy()']]], + ['copy_104',['copy',['../classnc_1_1_nd_array.html#a5ae6d993d5c8d41eee61ddca0b9f2b31',1,'nc::NdArray::copy()'],['../namespacenc_1_1stl__algorithms.html#ae62a4e197ec640aacea520220bd27cef',1,'nc::stl_algorithms::copy()'],['../namespacenc.html#a77989f6ee687183d9797ef6d4a8c3dce',1,'nc::copy(const NdArray< dtype > &inArray)'],['../namespacenc.html#ae31148c2c120e8ed49df98e7dcd960ecae8606d021da140a92c7eba8d9b8af84f',1,'nc::COPY']]], ['copy_2ehpp_105',['copy.hpp',['../copy_8hpp.html',1,'']]], ['copysign_106',['copySign',['../namespacenc.html#ab889b055de45596f5c541cdfc213b5c9',1,'nc']]], ['copysign_2ehpp_107',['copySign.hpp',['../copy_sign_8hpp.html',1,'']]], diff --git a/docs/doxygen/html/search/all_3.js b/docs/doxygen/html/search/all_3.js index 6a1efaa36..dc029cefb 100644 --- a/docs/doxygen/html/search/all_3.js +++ b/docs/doxygen/html/search/all_3.js @@ -14,7 +14,7 @@ var searchData= ['days_5fper_5fweek_11',['DAYS_PER_WEEK',['../namespacenc_1_1constants.html#a2c11c386e1a07a17f95122fc4630cbe9',1,'nc::constants']]], ['dcm_12',['DCM',['../classnc_1_1rotations_1_1_d_c_m.html',1,'nc::rotations']]], ['dcm_2ehpp_13',['DCM.hpp',['../_d_c_m_8hpp.html',1,'']]], - ['dec_14',['dec',['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a243f2d36caf61e456d080ca5907f6ba5',1,'nc::coordinates::reference_frames::Dec::Dec()=default'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#aeecd2a4641ad64b3a19220d0c7028a3d',1,'nc::coordinates::reference_frames::Dec::Dec(double inDegrees)'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a67ed76f73de9470756507b11d30ae42a',1,'nc::coordinates::reference_frames::Dec::Dec(Sign inSign, uint8 inDegrees, uint8 inMinutes, double inSeconds) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html',1,'nc::coordinates::reference_frames::Dec'],['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa927c3373686a8618f89789e65e36a48',1,'nc::coordinates::reference_frames::Celestial::dec()']]], + ['dec_14',['dec',['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa927c3373686a8618f89789e65e36a48',1,'nc::coordinates::reference_frames::Celestial::dec()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a243f2d36caf61e456d080ca5907f6ba5',1,'nc::coordinates::reference_frames::Dec::Dec()=default'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#aeecd2a4641ad64b3a19220d0c7028a3d',1,'nc::coordinates::reference_frames::Dec::Dec(double inDegrees)'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html',1,'nc::coordinates::reference_frames::Dec'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a67ed76f73de9470756507b11d30ae42a',1,'nc::coordinates::reference_frames::Dec::Dec()']]], ['decode_15',['decode',['../namespacenc_1_1edac.html#aa24d4f99fd0739df7480845e96668e0f',1,'nc::edac']]], ['deg2rad_16',['deg2rad',['../namespacenc.html#a828388cb973b4e28e0b7060694e2604a',1,'nc::deg2rad(const NdArray< dtype > &inArray)'],['../namespacenc.html#a2cdc1c791ab98eb708ba5662ffb82b39',1,'nc::deg2rad(dtype inValue) noexcept']]], ['deg2rad_2ehpp_17',['deg2rad.hpp',['../deg2rad_8hpp.html',1,'']]], diff --git a/docs/doxygen/html/search/all_4.js b/docs/doxygen/html/search/all_4.js index 433dad9ad..535893181 100644 --- a/docs/doxygen/html/search/all_4.js +++ b/docs/doxygen/html/search/all_4.js @@ -19,77 +19,81 @@ var searchData= ['eceftolla_2ehpp_16',['ECEFtoLLA.hpp',['../_e_c_e_fto_l_l_a_8hpp.html',1,'']]], ['eceftoned_17',['eceftoned',['../namespacenc_1_1coordinates_1_1transforms.html#aa7ce07784d9289636de4cf2566913c85',1,'nc::coordinates::transforms::ECEFtoNED(const reference_frames::ECEF &target, const reference_frames::ECEF &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#ab1c0d50edf3b062d9ff459a7688c864d',1,'nc::coordinates::transforms::ECEFtoNED(const reference_frames::ECEF &target, const reference_frames::LLA &referencePoint) noexcept']]], ['eceftoned_2ehpp_18',['ECEFtoNED.hpp',['../_e_c_e_fto_n_e_d_8hpp.html',1,'']]], - ['el_19',['el',['../classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#a07677b880ca2afe36b366cd84c1c8246',1,'nc::coordinates::reference_frames::AER']]], - ['ellint_5f1_20',['ellint_1',['../namespacenc_1_1special.html#a0198bebbecba53e96b36d270be457490',1,'nc::special::ellint_1(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayP)'],['../namespacenc_1_1special.html#aa7fd769db69bde9583f039306c011816',1,'nc::special::ellint_1(dtype1 inK, dtype2 inP)']]], - ['ellint_5f1_2ehpp_21',['ellint_1.hpp',['../ellint__1_8hpp.html',1,'']]], - ['ellint_5f2_22',['ellint_2',['../namespacenc_1_1special.html#ab9c4568493afa63db21d5b88f3c2a82d',1,'nc::special::ellint_2(dtype1 inK, dtype2 inP)'],['../namespacenc_1_1special.html#a920986b87a9c40529343491bebdadfe0',1,'nc::special::ellint_2(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayP)']]], - ['ellint_5f2_2ehpp_23',['ellint_2.hpp',['../ellint__2_8hpp.html',1,'']]], - ['ellint_5f3_24',['ellint_3',['../namespacenc_1_1special.html#aaf7e9aa3cce2502f67735c787588a2eb',1,'nc::special::ellint_3(dtype1 inK, dtype2 inV, dtype3 inP)'],['../namespacenc_1_1special.html#ab04eafe87336f4206d63b804dc8653ca',1,'nc::special::ellint_3(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayV, const NdArray< dtype3 > &inArrayP)']]], - ['ellint_5f3_2ehpp_25',['ellint_3.hpp',['../ellint__3_8hpp.html',1,'']]], - ['empty_26',['empty',['../namespacenc.html#a3012780ddd20c705d9cff13bac986eff',1,'nc::empty(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a97dd73bece2058ce18e59eb2df095042',1,'nc::empty(const Shape &inShape)']]], - ['empty_2ehpp_27',['empty.hpp',['../empty_8hpp.html',1,'']]], - ['empty_5flike_28',['empty_like',['../namespacenc.html#a875e297baf1d0f1ae229b4342bad8f04',1,'nc']]], - ['empty_5flike_2ehpp_29',['empty_like.hpp',['../empty__like_8hpp.html',1,'']]], - ['enable_30',['enable',['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afb999d453f7b893f479337922bf80c9b',1,'nc::logger::detail::BinaryDataLogger']]], - ['encode_31',['encode',['../namespacenc_1_1edac.html#af5c36a1f2c74d632192cf9fe29cc5f03',1,'nc::edac']]], - ['end_32',['end',['../classnc_1_1_nd_array.html#a546c8b9de00188fab35a6c5075147cc1',1,'nc::NdArray::end(size_type inRow) const'],['../classnc_1_1_nd_array.html#a635448f7b5d598e3a978d2c2e62d7727',1,'nc::NdArray::end() const noexcept'],['../classnc_1_1_nd_array.html#a229701da7e9b386f5a58e5f1dc00bb73',1,'nc::NdArray::end(size_type inRow)'],['../classnc_1_1_data_cube.html#a9aeac78f9aec9b69b9673c1e56778b1b',1,'nc::DataCube::end() noexcept'],['../classnc_1_1_data_cube.html#acc46d9e618309bbc5cfd5af56dd9e977',1,'nc::DataCube::end() const noexcept'],['../classnc_1_1image_processing_1_1_cluster.html#afc8b5d168cf1d611be9f5226ec7efd55',1,'nc::imageProcessing::Cluster::end()'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a7d5ceccddb2db3b143c772ec9d66460a',1,'nc::imageProcessing::ClusterMaker::end()'],['../classnc_1_1_nd_array.html#a153d3032d72c24d233407a351d0f8174',1,'nc::NdArray::end()']]], - ['endian_33',['Endian',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152',1,'nc']]], - ['endian_2ehpp_34',['Endian.hpp',['../_endian_8hpp.html',1,'']]], - ['endianess_35',['endianess',['../classnc_1_1_nd_array.html#a349b83beffbfb0a631799f921f13f7ad',1,'nc::NdArray::endianess()'],['../namespacenc.html#a6d1bce5e0cf3f24f84a50b945eec7a26',1,'nc::endianess()']]], - ['endianess_2ehpp_36',['endianess.hpp',['../endianess_8hpp.html',1,'']]], - ['endpoint_37',['EndPoint',['../namespacenc.html#af9769af0418268b619b18e7f9ffa7f39',1,'nc']]], - ['enu_38',['enu',['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html',1,'nc::coordinates::reference_frames::ENU'],['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac3efcb3adec07253d12d8b95c9c36b1a',1,'nc::coordinates::reference_frames::ENU::ENU(const Cartesian &cartesian) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#acff77c0afc8bd138dca98859d43f82a4',1,'nc::coordinates::reference_frames::ENU::ENU(double east, double north, double up) noexcept']]], - ['enu_2ehpp_39',['ENU.hpp',['../_e_n_u_8hpp.html',1,'']]], - ['enums_2ehpp_40',['Enums.hpp',['../_enums_8hpp.html',1,'']]], - ['enurollpitchyawtoecefeuler_41',['ENURollPitchYawToECEFEuler',['../namespacenc_1_1coordinates_1_1transforms.html#ae1054b00ea5f197ce81ee256a749a8ad',1,'nc::coordinates::transforms']]], - ['enurollpitchyawtoecefeuler_2ehpp_42',['ENURollPitchYawToECEFEuler.hpp',['../_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html',1,'']]], - ['enutoaer_43',['ENUtoAER',['../namespacenc_1_1coordinates_1_1transforms.html#a257ae22ee98cca9d16df59ff8b17cb54',1,'nc::coordinates::transforms']]], - ['enutoaer_2ehpp_44',['ENUtoAER.hpp',['../_e_n_uto_a_e_r_8hpp.html',1,'']]], - ['enutoecef_45',['enutoecef',['../namespacenc_1_1coordinates_1_1transforms.html#a856dc06d3e1ebd1482d59f299574b0b0',1,'nc::coordinates::transforms::ENUtoECEF(const reference_frames::ENU &target, const reference_frames::LLA &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#aad4854fa54a5452ea763d632bfe3ebf0',1,'nc::coordinates::transforms::ENUtoECEF(const reference_frames::ENU &target, const reference_frames::ECEF &referencePoint) noexcept']]], - ['enutoecef_2ehpp_46',['ENUtoECEF.hpp',['../_e_n_uto_e_c_e_f_8hpp.html',1,'']]], - ['enutolla_47',['enutolla',['../namespacenc_1_1coordinates_1_1transforms.html#a2a9677cf3a4e80da17cf254e5df063ca',1,'nc::coordinates::transforms::ENUtoLLA(const reference_frames::ENU &target, const reference_frames::LLA &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a3fc106e20ec851e48602ff7a002a04cc',1,'nc::coordinates::transforms::ENUtoLLA(const reference_frames::ENU &target, const reference_frames::ECEF &referencePoint) noexcept']]], - ['enutolla_2ehpp_48',['ENUtoLLA.hpp',['../_e_n_uto_l_l_a_8hpp.html',1,'']]], - ['enutoned_49',['ENUtoNED',['../namespacenc_1_1coordinates_1_1transforms.html#aa60ec3d43951a07db58ff93de763fdac',1,'nc::coordinates::transforms']]], - ['enutoned_2ehpp_50',['ENUtoNED.hpp',['../_e_n_uto_n_e_d_8hpp.html',1,'']]], - ['enuunitvecsinecef_51',['ENUUnitVecsInECEF',['../namespacenc_1_1coordinates_1_1transforms.html#ac406cc673797cf81dab387ef5d802931',1,'nc::coordinates::transforms']]], - ['enuunitvecsinecef_2ehpp_52',['ENUUnitVecsInECEF.hpp',['../_e_n_u_unit_vecs_in_e_c_e_f_8hpp.html',1,'']]], - ['eod_53',['eod',['../classnc_1_1image_processing_1_1_cluster.html#a461863af036452bdb1813dfff33c7c42',1,'nc::imageProcessing::Cluster::eod()'],['../classnc_1_1image_processing_1_1_centroid.html#a098ee235ea6fcf22df2a7a0d80d53e44',1,'nc::imageProcessing::Centroid::eod()']]], - ['epsilon_54',['epsilon',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac117779d9768d1ba6093ef25b0fc294c',1,'nc::DtypeInfo< std::complex< dtype > >::epsilon()'],['../classnc_1_1_dtype_info.html#a845cc6986a3912805ab68960bc2b2318',1,'nc::DtypeInfo::epsilon()']]], - ['epsilon_5f_55',['epsilon_',['../classnc_1_1roots_1_1_iteration.html#a5eafe219bb90f82da4ece84f012a411a',1,'nc::roots::Iteration']]], - ['equal_56',['equal',['../namespacenc_1_1stl__algorithms.html#a684d1011b375da4078afb4474a36b0e6',1,'nc::stl_algorithms::equal()'],['../namespacenc.html#a6891660e45d9f047bfc3a4625f4a255d',1,'nc::equal()'],['../namespacenc_1_1stl__algorithms.html#ab200b92040bf3da8ee4325f5a994e73d',1,'nc::stl_algorithms::equal()']]], - ['equal_2ehpp_57',['equal.hpp',['../equal_8hpp.html',1,'']]], - ['erf_58',['erf',['../namespacenc_1_1special.html#a8b2da132f8a6d86ea0bcce34819d1833',1,'nc::special::erf(dtype inValue)'],['../namespacenc_1_1special.html#a5b7ac05949538787c3fdec373cb05126',1,'nc::special::erf(const NdArray< dtype > &inArray)']]], - ['erf_2ehpp_59',['erf.hpp',['../erf_8hpp.html',1,'']]], - ['erf_5finv_60',['erf_inv',['../namespacenc_1_1special.html#a0f66785ec1e2643dd4c932ff7cae61a4',1,'nc::special::erf_inv(dtype inValue)'],['../namespacenc_1_1special.html#abab69146b99ff384c6de4a24da69a780',1,'nc::special::erf_inv(const NdArray< dtype > &inArray)']]], - ['erf_5finv_2ehpp_61',['erf_inv.hpp',['../erf__inv_8hpp.html',1,'']]], - ['erfc_62',['erfc',['../namespacenc_1_1special.html#a1673dca59c73c85eedf077fb62aab5d7',1,'nc::special::erfc(dtype inValue)'],['../namespacenc_1_1special.html#a8671b7ab0e06230889f4a0cf417a248f',1,'nc::special::erfc(const NdArray< dtype > &inArray)']]], - ['erfc_2ehpp_63',['erfc.hpp',['../erfc_8hpp.html',1,'']]], - ['erfc_5finv_64',['erfc_inv',['../namespacenc_1_1special.html#a653404a544d777c6d7d636a207ee7bca',1,'nc::special::erfc_inv(dtype inValue)'],['../namespacenc_1_1special.html#a3c9551b639e79ce3024fef298f4ace8c',1,'nc::special::erfc_inv(const NdArray< dtype > &inArray)']]], - ['erfc_5finv_2ehpp_65',['erfc_inv.hpp',['../erfc__inv_8hpp.html',1,'']]], - ['error_2ehpp_66',['Error.hpp',['../_error_8hpp.html',1,'']]], - ['essentiallyequal_67',['essentiallyequal',['../namespacenc_1_1utils.html#a7e935ef90aaa774b37e6ab4b5316e01f',1,'nc::utils::essentiallyEqual(const std::complex< dtype > &inValue1, const std::complex< dtype > &inValue2, const std::complex< dtype > &inEpsilon) noexcept'],['../namespacenc_1_1utils.html#a139da62fc9c51ae191e7451bb4edb706',1,'nc::utils::essentiallyEqual(const std::complex< dtype > &inValue1, const std::complex< dtype > &inValue2) noexcept'],['../namespacenc_1_1utils.html#aedd8afd691cf9f5a8f8e12c9ca33743a',1,'nc::utils::essentiallyEqual(dtype inValue1, dtype inValue2, dtype inEpsilon) noexcept'],['../namespacenc_1_1utils.html#a963b90e7c9a3b057a924298750ddf74c',1,'nc::utils::essentiallyEqual(dtype inValue1, dtype inValue2) noexcept']]], - ['essentiallyequal_2ehpp_68',['essentiallyEqual.hpp',['../essentially_equal_8hpp.html',1,'']]], - ['essentiallyequalcomplex_2ehpp_69',['essentiallyEqualComplex.hpp',['../essentially_equal_complex_8hpp.html',1,'']]], - ['euler_70',['euler',['../classnc_1_1coordinates_1_1_euler.html',1,'nc::coordinates::Euler'],['../classnc_1_1coordinates_1_1_euler.html#ac9d5e3dfbfb276d3596c21ccd60f07ed',1,'nc::coordinates::Euler::Euler(Euler &&other) noexcept=default'],['../classnc_1_1coordinates_1_1_euler.html#a784c9fb6d05298ffbb4c8b3e9c36a6e8',1,'nc::coordinates::Euler::Euler(const Euler &other) noexcept=default'],['../classnc_1_1coordinates_1_1_euler.html#af6496ef339682a7373274b5d786c046a',1,'nc::coordinates::Euler::Euler(double inPsi, double inTheta, double inPhi) noexcept'],['../classnc_1_1coordinates_1_1_euler.html#a5a356e03dcdb4cf04726deeb6fb2a30f',1,'nc::coordinates::Euler::Euler() noexcept=default']]], - ['euler_2ehpp_71',['Euler.hpp',['../_euler_8hpp.html',1,'']]], - ['eulerangles_72',['eulerangles',['../classnc_1_1rotations_1_1_d_c_m.html#a06a1a09ec0bb27c45690afbc08d22f50',1,'nc::rotations::DCM::eulerAngles(const NdArray< double > &angles)'],['../classnc_1_1rotations_1_1_d_c_m.html#afede4ed689a9771968945857c7cd0c1d',1,'nc::rotations::DCM::eulerAngles(double roll, double pitch, double yaw)']]], - ['euleraxisangle_73',['euleraxisangle',['../classnc_1_1rotations_1_1_d_c_m.html#a06b61d863ede73a445a5fb6b5a0673a2',1,'nc::rotations::DCM::eulerAxisAngle(const Vec3 &inAxis, double inAngle)'],['../classnc_1_1rotations_1_1_d_c_m.html#ab72e3514a6022ebea6e63030eb0d2418',1,'nc::rotations::DCM::eulerAxisAngle(const NdArray< double > &inAxis, double inAngle)']]], - ['eval_74',['eval',['../classnc_1_1polynomial_1_1_poly1d.html#a881a194909e80712919e961452a61f8f',1,'nc::polynomial::Poly1d::eval(const NdArray< dtype > &xValues) const noexcept'],['../classnc_1_1polynomial_1_1_poly1d.html#a2fb68aababcddb6da10c9b1ffc29f727',1,'nc::polynomial::Poly1d::eval(dtype xValue) const noexcept']]], - ['exp_75',['exp',['../namespacenc.html#ad7e555d480465930a7ac44f4ab39eea7',1,'nc::exp(dtype inValue) noexcept'],['../namespacenc.html#a4069791fefff15148813bbbbadf064b1',1,'nc::exp(const NdArray< dtype > &inArray)']]], - ['exp_2ehpp_76',['exp.hpp',['../exp_8hpp.html',1,'']]], - ['exp2_77',['exp2',['../namespacenc.html#a0595c87603ad5c35ddc78eab15148db7',1,'nc::exp2(const NdArray< dtype > &inArray)'],['../namespacenc.html#aafbab1d2bd67c753fb1656e037bd8b1d',1,'nc::exp2(dtype inValue) noexcept']]], - ['exp2_2ehpp_78',['exp2.hpp',['../exp2_8hpp.html',1,'']]], - ['expint_79',['expint',['../namespacenc_1_1special.html#a98e6e3ad00faf7aef9f90e1c187f49b0',1,'nc::special::expint(const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1special.html#a23097c9d953be37f1399154274ba2ff1',1,'nc::special::expint(dtype inX)']]], - ['expint_2ehpp_80',['expint.hpp',['../expint_8hpp.html',1,'']]], - ['expm1_81',['expm1',['../namespacenc.html#ac1e31d2bff523a5936799445f16d11af',1,'nc::expm1(const NdArray< dtype > &inArray)'],['../namespacenc.html#a1f8b7ba3bb64b868fc41508d6912afab',1,'nc::expm1(dtype inValue) noexcept']]], - ['expm1_2ehpp_82',['expm1.hpp',['../expm1_8hpp.html',1,'']]], - ['exponential_83',['exponential',['../namespacenc_1_1random_1_1detail.html#a8a32f909feccd6758fdaf83e9165a9e1',1,'nc::random::detail::exponential(GeneratorType &generator, const Shape &inShape, dtype inScaleValue=1)'],['../namespacenc_1_1random_1_1detail.html#af48797ccfc3ba95d300bc8b2ee6985ab',1,'nc::random::detail::exponential(GeneratorType &generator, dtype inScaleValue=1)'],['../namespacenc_1_1random.html#a278212d1b177cb2bba47215d083bb10f',1,'nc::random::exponential(dtype inScaleValue=1)'],['../namespacenc_1_1random.html#ac9e91a01188c8bdbb5c6a6ef9eba8ff0',1,'nc::random::exponential(const Shape &inShape, dtype inScaleValue=1)'],['../classnc_1_1random_1_1_r_n_g.html#a7a8cf1c4f63f4c5c2a378dda89ff2203',1,'nc::random::RNG::exponential(dtype inScaleValue=1)'],['../classnc_1_1random_1_1_r_n_g.html#ae7df952d6e30b7b3e74c53c7e30ef388',1,'nc::random::RNG::exponential(const Shape &inShape, dtype inScaleValue=1)']]], - ['exponential_2ehpp_84',['exponential.hpp',['../exponential_8hpp.html',1,'']]], - ['extract_85',['extract',['../namespacenc.html#ab8bb2c211c6492e27e11cb071df6ea2c',1,'nc']]], - ['extract_2ehpp_86',['extract.hpp',['../extract_8hpp.html',1,'']]], - ['extractdata_87',['extractData',['../namespacenc_1_1edac_1_1detail.html#a38252e9565b5419af3453ca10754f25e',1,'nc::edac::detail']]], - ['extremevalue_88',['extremevalue',['../namespacenc_1_1random_1_1detail.html#a1bb8e952d9b4026dc2061dce2600d2b9',1,'nc::random::detail::extremeValue()'],['../namespacenc_1_1random.html#a11144426dec05283d6c682e0e532af7e',1,'nc::random::extremeValue(dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#ac98ea131ff7d46c66fb80701edaca7ae',1,'nc::random::extremeValue(const Shape &inShape, dtype inA=1, dtype inB=1)'],['../classnc_1_1random_1_1_r_n_g.html#aea082fd631056fa79f07290db7f83632',1,'nc::random::RNG::extremeValue()'],['../namespacenc_1_1random_1_1detail.html#abfdd56b9db1a4153d36b9fe09c00e143',1,'nc::random::detail::extremeValue()'],['../classnc_1_1random_1_1_r_n_g.html#a7bc35c4f5072b85f250e179b3b0204f2',1,'nc::random::RNG::extremeValue()']]], - ['extremevalue_2ehpp_89',['extremeValue.hpp',['../extreme_value_8hpp.html',1,'']]], - ['eye_90',['eye',['../namespacenc.html#ab97edf38a4c2d559a5e8824c69b3562a',1,'nc::eye(uint32 inN, uint32 inM, int32 inK=0)'],['../namespacenc.html#af94ba88bfd5bddaa20e562f000898918',1,'nc::eye(uint32 inN, int32 inK=0)'],['../namespacenc.html#a3c4b6aeeda66831808f80029011f48a7',1,'nc::eye(const Shape &inShape, int32 inK=0)']]], - ['eye_2ehpp_91',['eye.hpp',['../eye_8hpp.html',1,'']]] + ['eig_19',['eig',['../namespacenc_1_1linalg.html#a1b037ada059b1292a794e6ffb1823a05',1,'nc::linalg']]], + ['eig_2ehpp_20',['eig.hpp',['../eig_8hpp.html',1,'']]], + ['eigvals_21',['eigvals',['../namespacenc_1_1linalg.html#a2853cd2015993be7a86f9ba823601ca6',1,'nc::linalg']]], + ['eigvals_2ehpp_22',['eigvals.hpp',['../eigvals_8hpp.html',1,'']]], + ['el_23',['el',['../classnc_1_1coordinates_1_1reference__frames_1_1_a_e_r.html#a07677b880ca2afe36b366cd84c1c8246',1,'nc::coordinates::reference_frames::AER']]], + ['ellint_5f1_24',['ellint_1',['../namespacenc_1_1special.html#a0198bebbecba53e96b36d270be457490',1,'nc::special::ellint_1(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayP)'],['../namespacenc_1_1special.html#aa7fd769db69bde9583f039306c011816',1,'nc::special::ellint_1(dtype1 inK, dtype2 inP)']]], + ['ellint_5f1_2ehpp_25',['ellint_1.hpp',['../ellint__1_8hpp.html',1,'']]], + ['ellint_5f2_26',['ellint_2',['../namespacenc_1_1special.html#ab9c4568493afa63db21d5b88f3c2a82d',1,'nc::special::ellint_2(dtype1 inK, dtype2 inP)'],['../namespacenc_1_1special.html#a920986b87a9c40529343491bebdadfe0',1,'nc::special::ellint_2(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayP)']]], + ['ellint_5f2_2ehpp_27',['ellint_2.hpp',['../ellint__2_8hpp.html',1,'']]], + ['ellint_5f3_28',['ellint_3',['../namespacenc_1_1special.html#aaf7e9aa3cce2502f67735c787588a2eb',1,'nc::special::ellint_3(dtype1 inK, dtype2 inV, dtype3 inP)'],['../namespacenc_1_1special.html#ab04eafe87336f4206d63b804dc8653ca',1,'nc::special::ellint_3(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayV, const NdArray< dtype3 > &inArrayP)']]], + ['ellint_5f3_2ehpp_29',['ellint_3.hpp',['../ellint__3_8hpp.html',1,'']]], + ['empty_30',['empty',['../namespacenc.html#a3012780ddd20c705d9cff13bac986eff',1,'nc::empty(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a97dd73bece2058ce18e59eb2df095042',1,'nc::empty(const Shape &inShape)']]], + ['empty_2ehpp_31',['empty.hpp',['../empty_8hpp.html',1,'']]], + ['empty_5flike_32',['empty_like',['../namespacenc.html#a875e297baf1d0f1ae229b4342bad8f04',1,'nc']]], + ['empty_5flike_2ehpp_33',['empty_like.hpp',['../empty__like_8hpp.html',1,'']]], + ['enable_34',['enable',['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afb999d453f7b893f479337922bf80c9b',1,'nc::logger::detail::BinaryDataLogger']]], + ['encode_35',['encode',['../namespacenc_1_1edac.html#af5c36a1f2c74d632192cf9fe29cc5f03',1,'nc::edac']]], + ['end_36',['end',['../classnc_1_1_nd_array.html#a546c8b9de00188fab35a6c5075147cc1',1,'nc::NdArray::end()'],['../classnc_1_1_data_cube.html#a9aeac78f9aec9b69b9673c1e56778b1b',1,'nc::DataCube::end() noexcept'],['../classnc_1_1_data_cube.html#acc46d9e618309bbc5cfd5af56dd9e977',1,'nc::DataCube::end() const noexcept'],['../classnc_1_1image_processing_1_1_cluster.html#afc8b5d168cf1d611be9f5226ec7efd55',1,'nc::imageProcessing::Cluster::end()'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a7d5ceccddb2db3b143c772ec9d66460a',1,'nc::imageProcessing::ClusterMaker::end()'],['../classnc_1_1_nd_array.html#a153d3032d72c24d233407a351d0f8174',1,'nc::NdArray::end() noexcept'],['../classnc_1_1_nd_array.html#a229701da7e9b386f5a58e5f1dc00bb73',1,'nc::NdArray::end(size_type inRow)'],['../classnc_1_1_nd_array.html#a635448f7b5d598e3a978d2c2e62d7727',1,'nc::NdArray::end() const noexcept']]], + ['endian_37',['Endian',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152',1,'nc']]], + ['endian_2ehpp_38',['Endian.hpp',['../_endian_8hpp.html',1,'']]], + ['endianess_39',['endianess',['../classnc_1_1_nd_array.html#a349b83beffbfb0a631799f921f13f7ad',1,'nc::NdArray::endianess()'],['../namespacenc.html#a6d1bce5e0cf3f24f84a50b945eec7a26',1,'nc::endianess()']]], + ['endianess_2ehpp_40',['endianess.hpp',['../endianess_8hpp.html',1,'']]], + ['endpoint_41',['EndPoint',['../namespacenc.html#af9769af0418268b619b18e7f9ffa7f39',1,'nc']]], + ['enu_42',['enu',['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac3efcb3adec07253d12d8b95c9c36b1a',1,'nc::coordinates::reference_frames::ENU::ENU(const Cartesian &cartesian) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#acff77c0afc8bd138dca98859d43f82a4',1,'nc::coordinates::reference_frames::ENU::ENU(double east, double north, double up) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html',1,'nc::coordinates::reference_frames::ENU']]], + ['enu_2ehpp_43',['ENU.hpp',['../_e_n_u_8hpp.html',1,'']]], + ['enums_2ehpp_44',['Enums.hpp',['../_enums_8hpp.html',1,'']]], + ['enurollpitchyawtoecefeuler_45',['ENURollPitchYawToECEFEuler',['../namespacenc_1_1coordinates_1_1transforms.html#ae1054b00ea5f197ce81ee256a749a8ad',1,'nc::coordinates::transforms']]], + ['enurollpitchyawtoecefeuler_2ehpp_46',['ENURollPitchYawToECEFEuler.hpp',['../_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html',1,'']]], + ['enutoaer_47',['ENUtoAER',['../namespacenc_1_1coordinates_1_1transforms.html#a257ae22ee98cca9d16df59ff8b17cb54',1,'nc::coordinates::transforms']]], + ['enutoaer_2ehpp_48',['ENUtoAER.hpp',['../_e_n_uto_a_e_r_8hpp.html',1,'']]], + ['enutoecef_49',['enutoecef',['../namespacenc_1_1coordinates_1_1transforms.html#a856dc06d3e1ebd1482d59f299574b0b0',1,'nc::coordinates::transforms::ENUtoECEF(const reference_frames::ENU &target, const reference_frames::LLA &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#aad4854fa54a5452ea763d632bfe3ebf0',1,'nc::coordinates::transforms::ENUtoECEF(const reference_frames::ENU &target, const reference_frames::ECEF &referencePoint) noexcept']]], + ['enutoecef_2ehpp_50',['ENUtoECEF.hpp',['../_e_n_uto_e_c_e_f_8hpp.html',1,'']]], + ['enutolla_51',['enutolla',['../namespacenc_1_1coordinates_1_1transforms.html#a2a9677cf3a4e80da17cf254e5df063ca',1,'nc::coordinates::transforms::ENUtoLLA(const reference_frames::ENU &target, const reference_frames::LLA &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a3fc106e20ec851e48602ff7a002a04cc',1,'nc::coordinates::transforms::ENUtoLLA(const reference_frames::ENU &target, const reference_frames::ECEF &referencePoint) noexcept']]], + ['enutolla_2ehpp_52',['ENUtoLLA.hpp',['../_e_n_uto_l_l_a_8hpp.html',1,'']]], + ['enutoned_53',['ENUtoNED',['../namespacenc_1_1coordinates_1_1transforms.html#aa60ec3d43951a07db58ff93de763fdac',1,'nc::coordinates::transforms']]], + ['enutoned_2ehpp_54',['ENUtoNED.hpp',['../_e_n_uto_n_e_d_8hpp.html',1,'']]], + ['enuunitvecsinecef_55',['ENUUnitVecsInECEF',['../namespacenc_1_1coordinates_1_1transforms.html#ac406cc673797cf81dab387ef5d802931',1,'nc::coordinates::transforms']]], + ['enuunitvecsinecef_2ehpp_56',['ENUUnitVecsInECEF.hpp',['../_e_n_u_unit_vecs_in_e_c_e_f_8hpp.html',1,'']]], + ['eod_57',['eod',['../classnc_1_1image_processing_1_1_centroid.html#a098ee235ea6fcf22df2a7a0d80d53e44',1,'nc::imageProcessing::Centroid::eod()'],['../classnc_1_1image_processing_1_1_cluster.html#a461863af036452bdb1813dfff33c7c42',1,'nc::imageProcessing::Cluster::eod()']]], + ['epsilon_58',['epsilon',['../classnc_1_1_dtype_info.html#a845cc6986a3912805ab68960bc2b2318',1,'nc::DtypeInfo::epsilon()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac117779d9768d1ba6093ef25b0fc294c',1,'nc::DtypeInfo< std::complex< dtype > >::epsilon()']]], + ['epsilon_5f_59',['epsilon_',['../classnc_1_1roots_1_1_iteration.html#a5eafe219bb90f82da4ece84f012a411a',1,'nc::roots::Iteration']]], + ['equal_60',['equal',['../namespacenc_1_1stl__algorithms.html#a684d1011b375da4078afb4474a36b0e6',1,'nc::stl_algorithms::equal()'],['../namespacenc.html#a6891660e45d9f047bfc3a4625f4a255d',1,'nc::equal()'],['../namespacenc_1_1stl__algorithms.html#ab200b92040bf3da8ee4325f5a994e73d',1,'nc::stl_algorithms::equal()']]], + ['equal_2ehpp_61',['equal.hpp',['../equal_8hpp.html',1,'']]], + ['erf_62',['erf',['../namespacenc_1_1special.html#a8b2da132f8a6d86ea0bcce34819d1833',1,'nc::special::erf(dtype inValue)'],['../namespacenc_1_1special.html#a5b7ac05949538787c3fdec373cb05126',1,'nc::special::erf(const NdArray< dtype > &inArray)']]], + ['erf_2ehpp_63',['erf.hpp',['../erf_8hpp.html',1,'']]], + ['erf_5finv_64',['erf_inv',['../namespacenc_1_1special.html#a0f66785ec1e2643dd4c932ff7cae61a4',1,'nc::special::erf_inv(dtype inValue)'],['../namespacenc_1_1special.html#abab69146b99ff384c6de4a24da69a780',1,'nc::special::erf_inv(const NdArray< dtype > &inArray)']]], + ['erf_5finv_2ehpp_65',['erf_inv.hpp',['../erf__inv_8hpp.html',1,'']]], + ['erfc_66',['erfc',['../namespacenc_1_1special.html#a8671b7ab0e06230889f4a0cf417a248f',1,'nc::special::erfc(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#a1673dca59c73c85eedf077fb62aab5d7',1,'nc::special::erfc(dtype inValue)']]], + ['erfc_2ehpp_67',['erfc.hpp',['../erfc_8hpp.html',1,'']]], + ['erfc_5finv_68',['erfc_inv',['../namespacenc_1_1special.html#a653404a544d777c6d7d636a207ee7bca',1,'nc::special::erfc_inv(dtype inValue)'],['../namespacenc_1_1special.html#a3c9551b639e79ce3024fef298f4ace8c',1,'nc::special::erfc_inv(const NdArray< dtype > &inArray)']]], + ['erfc_5finv_2ehpp_69',['erfc_inv.hpp',['../erfc__inv_8hpp.html',1,'']]], + ['error_2ehpp_70',['Error.hpp',['../_error_8hpp.html',1,'']]], + ['essentiallyequal_71',['essentiallyequal',['../namespacenc_1_1utils.html#a7e935ef90aaa774b37e6ab4b5316e01f',1,'nc::utils::essentiallyEqual(const std::complex< dtype > &inValue1, const std::complex< dtype > &inValue2, const std::complex< dtype > &inEpsilon) noexcept'],['../namespacenc_1_1utils.html#a139da62fc9c51ae191e7451bb4edb706',1,'nc::utils::essentiallyEqual(const std::complex< dtype > &inValue1, const std::complex< dtype > &inValue2) noexcept'],['../namespacenc_1_1utils.html#aedd8afd691cf9f5a8f8e12c9ca33743a',1,'nc::utils::essentiallyEqual(dtype inValue1, dtype inValue2, dtype inEpsilon) noexcept'],['../namespacenc_1_1utils.html#a963b90e7c9a3b057a924298750ddf74c',1,'nc::utils::essentiallyEqual(dtype inValue1, dtype inValue2) noexcept']]], + ['essentiallyequal_2ehpp_72',['essentiallyEqual.hpp',['../essentially_equal_8hpp.html',1,'']]], + ['essentiallyequalcomplex_2ehpp_73',['essentiallyEqualComplex.hpp',['../essentially_equal_complex_8hpp.html',1,'']]], + ['euler_74',['euler',['../classnc_1_1coordinates_1_1_euler.html',1,'nc::coordinates::Euler'],['../classnc_1_1coordinates_1_1_euler.html#a5a356e03dcdb4cf04726deeb6fb2a30f',1,'nc::coordinates::Euler::Euler() noexcept=default'],['../classnc_1_1coordinates_1_1_euler.html#af6496ef339682a7373274b5d786c046a',1,'nc::coordinates::Euler::Euler(double inPsi, double inTheta, double inPhi) noexcept'],['../classnc_1_1coordinates_1_1_euler.html#a784c9fb6d05298ffbb4c8b3e9c36a6e8',1,'nc::coordinates::Euler::Euler(const Euler &other) noexcept=default'],['../classnc_1_1coordinates_1_1_euler.html#ac9d5e3dfbfb276d3596c21ccd60f07ed',1,'nc::coordinates::Euler::Euler(Euler &&other) noexcept=default']]], + ['euler_2ehpp_75',['Euler.hpp',['../_euler_8hpp.html',1,'']]], + ['eulerangles_76',['eulerangles',['../classnc_1_1rotations_1_1_d_c_m.html#afede4ed689a9771968945857c7cd0c1d',1,'nc::rotations::DCM::eulerAngles(double roll, double pitch, double yaw)'],['../classnc_1_1rotations_1_1_d_c_m.html#a06a1a09ec0bb27c45690afbc08d22f50',1,'nc::rotations::DCM::eulerAngles(const NdArray< double > &angles)']]], + ['euleraxisangle_77',['euleraxisangle',['../classnc_1_1rotations_1_1_d_c_m.html#ab72e3514a6022ebea6e63030eb0d2418',1,'nc::rotations::DCM::eulerAxisAngle(const NdArray< double > &inAxis, double inAngle)'],['../classnc_1_1rotations_1_1_d_c_m.html#a06b61d863ede73a445a5fb6b5a0673a2',1,'nc::rotations::DCM::eulerAxisAngle(const Vec3 &inAxis, double inAngle)']]], + ['eval_78',['eval',['../classnc_1_1polynomial_1_1_poly1d.html#a881a194909e80712919e961452a61f8f',1,'nc::polynomial::Poly1d::eval(const NdArray< dtype > &xValues) const noexcept'],['../classnc_1_1polynomial_1_1_poly1d.html#a2fb68aababcddb6da10c9b1ffc29f727',1,'nc::polynomial::Poly1d::eval(dtype xValue) const noexcept']]], + ['exp_79',['exp',['../namespacenc.html#ad7e555d480465930a7ac44f4ab39eea7',1,'nc::exp(dtype inValue) noexcept'],['../namespacenc.html#a4069791fefff15148813bbbbadf064b1',1,'nc::exp(const NdArray< dtype > &inArray)']]], + ['exp_2ehpp_80',['exp.hpp',['../exp_8hpp.html',1,'']]], + ['exp2_81',['exp2',['../namespacenc.html#a0595c87603ad5c35ddc78eab15148db7',1,'nc::exp2(const NdArray< dtype > &inArray)'],['../namespacenc.html#aafbab1d2bd67c753fb1656e037bd8b1d',1,'nc::exp2(dtype inValue) noexcept']]], + ['exp2_2ehpp_82',['exp2.hpp',['../exp2_8hpp.html',1,'']]], + ['expint_83',['expint',['../namespacenc_1_1special.html#a98e6e3ad00faf7aef9f90e1c187f49b0',1,'nc::special::expint(const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1special.html#a23097c9d953be37f1399154274ba2ff1',1,'nc::special::expint(dtype inX)']]], + ['expint_2ehpp_84',['expint.hpp',['../expint_8hpp.html',1,'']]], + ['expm1_85',['expm1',['../namespacenc.html#ac1e31d2bff523a5936799445f16d11af',1,'nc::expm1(const NdArray< dtype > &inArray)'],['../namespacenc.html#a1f8b7ba3bb64b868fc41508d6912afab',1,'nc::expm1(dtype inValue) noexcept']]], + ['expm1_2ehpp_86',['expm1.hpp',['../expm1_8hpp.html',1,'']]], + ['exponential_87',['exponential',['../namespacenc_1_1random_1_1detail.html#a8a32f909feccd6758fdaf83e9165a9e1',1,'nc::random::detail::exponential(GeneratorType &generator, const Shape &inShape, dtype inScaleValue=1)'],['../namespacenc_1_1random_1_1detail.html#af48797ccfc3ba95d300bc8b2ee6985ab',1,'nc::random::detail::exponential(GeneratorType &generator, dtype inScaleValue=1)'],['../namespacenc_1_1random.html#a278212d1b177cb2bba47215d083bb10f',1,'nc::random::exponential(dtype inScaleValue=1)'],['../namespacenc_1_1random.html#ac9e91a01188c8bdbb5c6a6ef9eba8ff0',1,'nc::random::exponential(const Shape &inShape, dtype inScaleValue=1)'],['../classnc_1_1random_1_1_r_n_g.html#a7a8cf1c4f63f4c5c2a378dda89ff2203',1,'nc::random::RNG::exponential(dtype inScaleValue=1)'],['../classnc_1_1random_1_1_r_n_g.html#ae7df952d6e30b7b3e74c53c7e30ef388',1,'nc::random::RNG::exponential(const Shape &inShape, dtype inScaleValue=1)']]], + ['exponential_2ehpp_88',['exponential.hpp',['../exponential_8hpp.html',1,'']]], + ['extract_89',['extract',['../namespacenc.html#ab8bb2c211c6492e27e11cb071df6ea2c',1,'nc']]], + ['extract_2ehpp_90',['extract.hpp',['../extract_8hpp.html',1,'']]], + ['extractdata_91',['extractData',['../namespacenc_1_1edac_1_1detail.html#a38252e9565b5419af3453ca10754f25e',1,'nc::edac::detail']]], + ['extremevalue_92',['extremevalue',['../namespacenc_1_1random_1_1detail.html#a1bb8e952d9b4026dc2061dce2600d2b9',1,'nc::random::detail::extremeValue()'],['../namespacenc_1_1random.html#a11144426dec05283d6c682e0e532af7e',1,'nc::random::extremeValue(dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#ac98ea131ff7d46c66fb80701edaca7ae',1,'nc::random::extremeValue(const Shape &inShape, dtype inA=1, dtype inB=1)'],['../classnc_1_1random_1_1_r_n_g.html#aea082fd631056fa79f07290db7f83632',1,'nc::random::RNG::extremeValue()'],['../namespacenc_1_1random_1_1detail.html#abfdd56b9db1a4153d36b9fe09c00e143',1,'nc::random::detail::extremeValue()'],['../classnc_1_1random_1_1_r_n_g.html#a7bc35c4f5072b85f250e179b3b0204f2',1,'nc::random::RNG::extremeValue()']]], + ['extremevalue_2ehpp_93',['extremeValue.hpp',['../extreme_value_8hpp.html',1,'']]], + ['eye_94',['eye',['../namespacenc.html#ab97edf38a4c2d559a5e8824c69b3562a',1,'nc::eye(uint32 inN, uint32 inM, int32 inK=0)'],['../namespacenc.html#af94ba88bfd5bddaa20e562f000898918',1,'nc::eye(uint32 inN, int32 inK=0)'],['../namespacenc.html#a3c4b6aeeda66831808f80029011f48a7',1,'nc::eye(const Shape &inShape, int32 inK=0)']]], + ['eye_2ehpp_95',['eye.hpp',['../eye_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_b.js b/docs/doxygen/html/search/all_b.js index 456faf3c7..a34e784e8 100644 --- a/docs/doxygen/html/search/all_b.js +++ b/docs/doxygen/html/search/all_b.js @@ -16,7 +16,7 @@ var searchData= ['legendre_5fq_13',['legendre_q',['../namespacenc_1_1polynomial.html#a00bc3047baef4182addac153f2b2c1a9',1,'nc::polynomial::legendre_q(int32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a78897e159974d6732b77759be2f2da13',1,'nc::polynomial::legendre_q(int32 n, dtype x)']]], ['legendre_5fq_2ehpp_14',['legendre_q.hpp',['../legendre__q_8hpp.html',1,'']]], ['legendrepolynomial_15',['legendrepolynomial',['../classnc_1_1integrate_1_1_legendre_polynomial.html#a2e1fefae138e66215cd7586a85fc3642',1,'nc::integrate::LegendrePolynomial::LegendrePolynomial()'],['../classnc_1_1integrate_1_1_legendre_polynomial.html',1,'nc::integrate::LegendrePolynomial']]], - ['lerp_16',['lerp',['../classnc_1_1_vec2.html#a91e6417e5b9903ed6bee3ad90c0c38f4',1,'nc::Vec2::lerp()'],['../classnc_1_1_vec3.html#ab4878c8a4ebcd94fd0baf93059b50ac6',1,'nc::Vec3::lerp()']]], + ['lerp_16',['lerp',['../classnc_1_1_vec3.html#ab4878c8a4ebcd94fd0baf93059b50ac6',1,'nc::Vec3::lerp()'],['../classnc_1_1_vec2.html#a91e6417e5b9903ed6bee3ad90c0c38f4',1,'nc::Vec2::lerp()']]], ['less_17',['less',['../namespacenc.html#a214ff1cf329d515457a611f0be8e9bd8',1,'nc']]], ['less_2ehpp_18',['less.hpp',['../less_8hpp.html',1,'']]], ['less_5fequal_19',['less_equal',['../namespacenc.html#a052d0b4471adf86a70d91430ccb4873d',1,'nc']]], @@ -32,7 +32,7 @@ var searchData= ['llatoaer_2ehpp_29',['LLAtoAER.hpp',['../_l_l_ato_a_e_r_8hpp.html',1,'']]], ['llatoecef_30',['LLAtoECEF',['../namespacenc_1_1coordinates_1_1transforms.html#a4534f88d7138f27edf20f951aac05970',1,'nc::coordinates::transforms']]], ['llatoecef_2ehpp_31',['LLAtoECEF.hpp',['../_l_l_ato_e_c_e_f_8hpp.html',1,'']]], - ['llatoenu_32',['llatoenu',['../namespacenc_1_1coordinates_1_1transforms.html#aac1bcca3fce0215d67f3a4438424d8c7',1,'nc::coordinates::transforms::LLAtoENU(const reference_frames::LLA &target, const reference_frames::LLA &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a404d07a49fdffc55d2410b8d3a332a25',1,'nc::coordinates::transforms::LLAtoENU(const reference_frames::LLA &target, const reference_frames::ECEF &referencePoint) noexcept']]], + ['llatoenu_32',['llatoenu',['../namespacenc_1_1coordinates_1_1transforms.html#a404d07a49fdffc55d2410b8d3a332a25',1,'nc::coordinates::transforms::LLAtoENU(const reference_frames::LLA &target, const reference_frames::ECEF &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#aac1bcca3fce0215d67f3a4438424d8c7',1,'nc::coordinates::transforms::LLAtoENU(const reference_frames::LLA &target, const reference_frames::LLA &referencePoint) noexcept']]], ['llatoenu_2ehpp_33',['LLAtoENU.hpp',['../_l_l_ato_e_n_u_8hpp.html',1,'']]], ['llatogeocentric_34',['LLAtoGeocentric',['../namespacenc_1_1coordinates_1_1transforms.html#ab018d57e2605ae4cfe9378b9f47ec70c',1,'nc::coordinates::transforms']]], ['llatogeocentric_2ehpp_35',['LLAtoGeocentric.hpp',['../_l_l_ato_geocentric_8hpp.html',1,'']]], @@ -40,13 +40,13 @@ var searchData= ['llatoned_2ehpp_37',['LLAtoNED.hpp',['../_l_l_ato_n_e_d_8hpp.html',1,'']]], ['load_38',['load',['../namespacenc.html#ad6129b92b4e017a4ca772a59b43960e8',1,'nc']]], ['load_2ehpp_39',['load.hpp',['../load_8hpp.html',1,'']]], - ['log_40',['log',['../namespacenc.html#aba925957229bf54bfe854be197cd3d52',1,'nc::log()'],['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a3aca7ed321528ee82085970a7b15887c',1,'nc::logger::detail::BinaryDataLogger::log(const_reference dataElement)'],['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae5dc8913ba9d11738f57dbf9a21189d1',1,'nc::logger::detail::BinaryDataLogger::log(const_pointer dataElements, std::size_t numElements)'],['../namespacenc.html#a3f08d373ae167ac90d3bb6b6c4da0fb9',1,'nc::log()']]], + ['log_40',['log',['../namespacenc.html#a3f08d373ae167ac90d3bb6b6c4da0fb9',1,'nc::log(dtype inValue) noexcept'],['../namespacenc.html#aba925957229bf54bfe854be197cd3d52',1,'nc::log(const NdArray< dtype > &inArray)'],['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae5dc8913ba9d11738f57dbf9a21189d1',1,'nc::logger::detail::BinaryDataLogger::log(const_pointer dataElements, std::size_t numElements)'],['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a3aca7ed321528ee82085970a7b15887c',1,'nc::logger::detail::BinaryDataLogger::log(const_reference dataElement)']]], ['log_2ehpp_41',['log.hpp',['../log_8hpp.html',1,'']]], ['log10_42',['log10',['../namespacenc.html#a0d8a5ffeaed868463a6e55645c625c8f',1,'nc::log10(dtype inValue) noexcept'],['../namespacenc.html#a3cd82f65b6ee069a7d6443646dfecf67',1,'nc::log10(const NdArray< dtype > &inArray)']]], ['log10_2ehpp_43',['log10.hpp',['../log10_8hpp.html',1,'']]], ['log1p_44',['log1p',['../namespacenc.html#a5abcc8523a49a47fd2224d5588f128b4',1,'nc::log1p(dtype inValue) noexcept'],['../namespacenc.html#a1ae30700a2db1cd8e44fa59b84c2b547',1,'nc::log1p(const NdArray< dtype > &inArray)']]], ['log1p_2ehpp_45',['log1p.hpp',['../log1p_8hpp.html',1,'']]], - ['log2_46',['log2',['../namespacenc.html#a48cbc16dc706678b6f85e655e935cd41',1,'nc::log2(dtype inValue) noexcept'],['../namespacenc.html#a536e5046481a32bd6955a222f323393a',1,'nc::log2(const NdArray< dtype > &inArray)']]], + ['log2_46',['log2',['../namespacenc.html#a536e5046481a32bd6955a222f323393a',1,'nc::log2(const NdArray< dtype > &inArray)'],['../namespacenc.html#a48cbc16dc706678b6f85e655e935cd41',1,'nc::log2(dtype inValue) noexcept']]], ['log2_2ehpp_47',['log2.hpp',['../log2_8hpp.html',1,'']]], ['log_5fdebug_48',['LOG_DEBUG',['../_logger_8hpp.html#a6ff63e8955665c4a58b1598f2b07c51a',1,'Logger.hpp']]], ['log_5ferror_49',['LOG_ERROR',['../_logger_8hpp.html#aced66975c154ea0e2a8ec3bc818b4e08',1,'Logger.hpp']]], @@ -73,13 +73,13 @@ var searchData= ['logical_5for_2ehpp_70',['logical_or.hpp',['../logical__or_8hpp.html',1,'']]], ['logical_5fxor_71',['logical_xor',['../namespacenc.html#aae5c773c4e480fc760781013a8def13d',1,'nc']]], ['logical_5fxor_2ehpp_72',['logical_xor.hpp',['../logical__xor_8hpp.html',1,'']]], - ['lognormal_73',['lognormal',['../classnc_1_1random_1_1_r_n_g.html#a31c17ed48b3d97e4888bbbd2d56c5243',1,'nc::random::RNG::lognormal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)'],['../classnc_1_1random_1_1_r_n_g.html#a3a65dc0a17943c15f87769e1d5d45b8c',1,'nc::random::RNG::lognormal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random_1_1detail.html#aefb6e46b202083c2a279a8ae009af02c',1,'nc::random::detail::lognormal(GeneratorType &generator, dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random_1_1detail.html#aa4810e51158c9385d80b93230b92a043',1,'nc::random::detail::lognormal(GeneratorType &generator, const Shape &inShape, dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a03d5528a3a97b3731210ba2cc5d1c75d',1,'nc::random::lognormal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a4373dc28e42b40a6d65accb8c5f5248e',1,'nc::random::lognormal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)']]], + ['lognormal_73',['lognormal',['../classnc_1_1random_1_1_r_n_g.html#a3a65dc0a17943c15f87769e1d5d45b8c',1,'nc::random::RNG::lognormal()'],['../namespacenc_1_1random_1_1detail.html#aefb6e46b202083c2a279a8ae009af02c',1,'nc::random::detail::lognormal(GeneratorType &generator, dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random_1_1detail.html#aa4810e51158c9385d80b93230b92a043',1,'nc::random::detail::lognormal(GeneratorType &generator, const Shape &inShape, dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a03d5528a3a97b3731210ba2cc5d1c75d',1,'nc::random::lognormal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a4373dc28e42b40a6d65accb8c5f5248e',1,'nc::random::lognormal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)'],['../classnc_1_1random_1_1_r_n_g.html#a31c17ed48b3d97e4888bbbd2d56c5243',1,'nc::random::RNG::lognormal()']]], ['lognormal_2ehpp_74',['lognormal.hpp',['../lognormal_8hpp.html',1,'']]], ['logspace_75',['logspace',['../namespacenc.html#af30d297f088e3b9356cdba5cb76e70cc',1,'nc']]], ['logspace_2ehpp_76',['logspace.hpp',['../logspace_8hpp.html',1,'']]], ['longitude_77',['longitude',['../classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a0a1d6f3ed94808e0c84802aa4310932a',1,'nc::coordinates::reference_frames::LLA::longitude'],['../classnc_1_1coordinates_1_1reference__frames_1_1_geocentric.html#afe9b3537b80df119014eb2a34457d29f',1,'nc::coordinates::reference_frames::Geocentric::longitude']]], ['lower_78',['LOWER',['../namespacenc.html#a476f76c3468948fe24d7abf9cd0d650eaa7c48ba367e019d004bfb0239b85f2b3',1,'nc']]], - ['lstsq_79',['lstsq',['../namespacenc_1_1linalg.html#a8baf25f50874e4bd27d2644a2730fb03',1,'nc::linalg']]], + ['lstsq_79',['lstsq',['../classnc_1_1linalg_1_1_s_v_d.html#ac242186475a35804492d717f933024bd',1,'nc::linalg::SVD::lstsq()'],['../namespacenc_1_1linalg.html#af96af1e6e215b975a74f12949b5f0b46',1,'nc::linalg::lstsq()']]], ['lstsq_2ehpp_80',['lstsq.hpp',['../lstsq_8hpp.html',1,'']]], ['lu_5fdecomposition_81',['lu_decomposition',['../namespacenc_1_1linalg.html#a60e7cebe243cc88b69d508b569456300',1,'nc::linalg']]], ['lu_5fdecomposition_2ehpp_82',['lu_decomposition.hpp',['../lu__decomposition_8hpp.html',1,'']]] diff --git a/docs/doxygen/html/search/all_d.js b/docs/doxygen/html/search/all_d.js index 8dc5e1bb4..40470b1bd 100644 --- a/docs/doxygen/html/search/all_d.js +++ b/docs/doxygen/html/search/all_d.js @@ -114,7 +114,7 @@ var searchData= ['no_111',['no',['../namespacenc.html#a522ac3d88d34662e09f35b28fbf97582ac2f3f489a00553e7a01d369c103c7251',1,'nc::NO'],['../namespacenc.html#af32f8c9a95a0b701f8ecbcf0d1e9710cac2f3f489a00553e7a01d369c103c7251',1,'nc::NO'],['../namespacenc.html#af9769af0418268b619b18e7f9ffa7f39ac2f3f489a00553e7a01d369c103c7251',1,'nc::NO'],['../namespacenc.html#af9055934b0b2245795a4ecbcde6c8ebdac2f3f489a00553e7a01d369c103c7251',1,'nc::NO'],['../namespacenc.html#a85b85e03c940a6f01f9d77308a255455ac2f3f489a00553e7a01d369c103c7251',1,'nc::NO'],['../namespacenc.html#a789bf2546eff297f1ecc11542decf8d7ac2f3f489a00553e7a01d369c103c7251',1,'nc::NO'],['../namespacenc.html#a671e78f21b7e89dbb3f0afb50ecba063ac2f3f489a00553e7a01d369c103c7251',1,'nc::NO']]], ['noncentralchisquared_112',['noncentralchisquared',['../namespacenc_1_1random.html#abf3cab0396026700ebf2d2ffa5e13fa6',1,'nc::random::nonCentralChiSquared()'],['../classnc_1_1random_1_1_r_n_g.html#af33db571bd6dd997aeb37c11113894e6',1,'nc::random::RNG::nonCentralChiSquared(dtype inK=1, dtype inLambda=1)'],['../classnc_1_1random_1_1_r_n_g.html#a722b97fd101adf88ed061fe5d7b04dd9',1,'nc::random::RNG::nonCentralChiSquared(const Shape &inShape, dtype inK=1, dtype inLambda=1)'],['../namespacenc_1_1random_1_1detail.html#a8787f79f4caaccef2e0f4016e433b5ec',1,'nc::random::detail::nonCentralChiSquared(GeneratorType &generator, dtype inK=1, dtype inLambda=1)'],['../namespacenc_1_1random_1_1detail.html#af31c8314c99e04b2f84a8a27695e7637',1,'nc::random::detail::nonCentralChiSquared(GeneratorType &generator, const Shape &inShape, dtype inK=1, dtype inLambda=1)'],['../namespacenc_1_1random.html#a3323c8874267147ac892a4140d2b3f8c',1,'nc::random::nonCentralChiSquared()']]], ['noncentralchisquared_2ehpp_113',['nonCentralChiSquared.hpp',['../non_central_chi_squared_8hpp.html',1,'']]], - ['none_114',['none',['../classnc_1_1_nd_array.html#a3d025e3d5699b5871b1be88a79fe543f',1,'nc::NdArray::none()'],['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84ab50339a10e1de285ac99d4c3990b8693',1,'nc::NONE'],['../namespacenc.html#ac4e2b389aad16ef62c9807ad246d6c96',1,'nc::none(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], + ['none_114',['none',['../classnc_1_1_nd_array.html#a3d025e3d5699b5871b1be88a79fe543f',1,'nc::NdArray::none()'],['../namespacenc.html#ac4e2b389aad16ef62c9807ad246d6c96',1,'nc::none(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84ab50339a10e1de285ac99d4c3990b8693',1,'nc::NONE']]], ['none_2ehpp_115',['none.hpp',['../none_8hpp.html',1,'']]], ['none_5fof_116',['none_of',['../namespacenc_1_1stl__algorithms.html#a2804ccb14980f96c7680838adc3b2762',1,'nc::stl_algorithms']]], ['nonzero_117',['nonzero',['../namespacenc.html#a291d0ac850232def29be8cc885fd0053',1,'nc::nonzero()'],['../classnc_1_1_nd_array.html#a6ce7327b2d1c60e74d02345d573c7237',1,'nc::NdArray::nonzero()']]], diff --git a/docs/doxygen/html/search/all_f.js b/docs/doxygen/html/search/all_f.js index 2ed04d313..899d203b1 100644 --- a/docs/doxygen/html/search/all_f.js +++ b/docs/doxygen/html/search/all_f.js @@ -14,17 +14,17 @@ var searchData= ['percentilefilter_2ehpp_11',['percentileFilter.hpp',['../percentile_filter_8hpp.html',1,'']]], ['percentilefilter1d_12',['percentileFilter1d',['../namespacenc_1_1filter.html#a9c50b34b16623a2d5dd6eeff52140fc5',1,'nc::filter']]], ['percentilefilter1d_2ehpp_13',['percentileFilter1d.hpp',['../percentile_filter1d_8hpp.html',1,'']]], - ['permutation_14',['permutation',['../namespacenc_1_1random.html#aa2ec0842c315e125d50c6af81007a389',1,'nc::random::permutation()'],['../classnc_1_1random_1_1_r_n_g.html#a53920102dbb082afdfd4890b73c2aec3',1,'nc::random::RNG::permutation(const NdArray< dtype > &inArray)'],['../classnc_1_1random_1_1_r_n_g.html#a96bb27d60c7d5241ab503d032d3a1841',1,'nc::random::RNG::permutation(dtype inValue)'],['../namespacenc_1_1random.html#a89b35742889ecffb90cb6497cd1cb265',1,'nc::random::permutation()'],['../namespacenc_1_1random_1_1detail.html#a289c78de5afe93abbd471fa493ef2216',1,'nc::random::detail::permutation(GeneratorType &generator, const NdArray< dtype > &inArray)'],['../namespacenc_1_1random_1_1detail.html#a07bf092c354cabb8b995f1f4beb81582',1,'nc::random::detail::permutation(GeneratorType &generator, dtype inValue)']]], + ['permutation_14',['permutation',['../namespacenc_1_1random_1_1detail.html#a289c78de5afe93abbd471fa493ef2216',1,'nc::random::detail::permutation()'],['../classnc_1_1random_1_1_r_n_g.html#a96bb27d60c7d5241ab503d032d3a1841',1,'nc::random::RNG::permutation(dtype inValue)'],['../classnc_1_1random_1_1_r_n_g.html#a53920102dbb082afdfd4890b73c2aec3',1,'nc::random::RNG::permutation(const NdArray< dtype > &inArray)'],['../namespacenc_1_1random.html#aa2ec0842c315e125d50c6af81007a389',1,'nc::random::permutation(const NdArray< dtype > &inArray)'],['../namespacenc_1_1random.html#a89b35742889ecffb90cb6497cd1cb265',1,'nc::random::permutation(dtype inValue)'],['../namespacenc_1_1random_1_1detail.html#a07bf092c354cabb8b995f1f4beb81582',1,'nc::random::detail::permutation()']]], ['permutation_2ehpp_15',['permutation.hpp',['../permutation_8hpp.html',1,'']]], ['phi_16',['phi',['../classnc_1_1coordinates_1_1_euler.html#a1516925a2f04d722355c6fa32dcfbece',1,'nc::coordinates::Euler']]], ['pi_17',['pi',['../namespacenc_1_1constants.html#a2f1219a120c9cc1434486d9de75a8221',1,'nc::constants']]], - ['pinv_18',['pinv',['../namespacenc_1_1linalg.html#a1ab0529b2e6d2bd4668051b8b7dcb85b',1,'nc::linalg']]], + ['pinv_18',['pinv',['../namespacenc_1_1linalg.html#a1ab0529b2e6d2bd4668051b8b7dcb85b',1,'nc::linalg::pinv()'],['../classnc_1_1linalg_1_1_s_v_d.html#a81c5d57cc757e95a3dc48cec03ca80fb',1,'nc::linalg::SVD::pinv()']]], ['pinv_2ehpp_19',['pinv.hpp',['../pinv_8hpp.html',1,'']]], - ['pitch_20',['pitch',['../classnc_1_1rotations_1_1_quaternion.html#a601b444c8c8f820700844d7ab5f743ba',1,'nc::rotations::Quaternion::pitch()'],['../classnc_1_1rotations_1_1_d_c_m.html#a726e1d9c5e2a88dbd7e70b8fc9d55fbf',1,'nc::rotations::DCM::pitch()'],['../classnc_1_1coordinates_1_1_orientation.html#a819f4482cc856e67b9b8d8d9269ae3cf',1,'nc::coordinates::Orientation::pitch']]], + ['pitch_20',['pitch',['../classnc_1_1rotations_1_1_d_c_m.html#a726e1d9c5e2a88dbd7e70b8fc9d55fbf',1,'nc::rotations::DCM::pitch()'],['../classnc_1_1coordinates_1_1_orientation.html#a819f4482cc856e67b9b8d8d9269ae3cf',1,'nc::coordinates::Orientation::pitch'],['../classnc_1_1rotations_1_1_quaternion.html#a601b444c8c8f820700844d7ab5f743ba',1,'nc::rotations::Quaternion::pitch() const noexcept']]], ['pitchrotation_21',['pitchRotation',['../classnc_1_1rotations_1_1_quaternion.html#aff32c4f1c065428e8ed31e552a1c8e53',1,'nc::rotations::Quaternion']]], ['pivotlu_5fdecomposition_22',['pivotLU_decomposition',['../namespacenc_1_1linalg.html#a7e29068f07fa422d6c9185a4d91bf6a2',1,'nc::linalg']]], ['pivotlu_5fdecomposition_2ehpp_23',['pivotLU_decomposition.hpp',['../pivot_l_u__decomposition_8hpp.html',1,'']]], - ['pixel_24',['pixel',['../classnc_1_1image_processing_1_1_pixel.html#a4d1db82b1617d892266270d2bec28f61',1,'nc::imageProcessing::Pixel::Pixel()'],['../classnc_1_1image_processing_1_1_pixel.html',1,'nc::imageProcessing::Pixel< dtype >'],['../classnc_1_1image_processing_1_1_pixel.html#a0d7095db72d4478f37d6e371e77509be',1,'nc::imageProcessing::Pixel::Pixel()']]], + ['pixel_24',['pixel',['../classnc_1_1image_processing_1_1_pixel.html#a0d7095db72d4478f37d6e371e77509be',1,'nc::imageProcessing::Pixel::Pixel()=default'],['../classnc_1_1image_processing_1_1_pixel.html#a4d1db82b1617d892266270d2bec28f61',1,'nc::imageProcessing::Pixel::Pixel(uint32 inRow, uint32 inCol, dtype inIntensity) noexcept'],['../classnc_1_1image_processing_1_1_pixel.html',1,'nc::imageProcessing::Pixel< dtype >']]], ['pixel_2ehpp_25',['Pixel.hpp',['../_pixel_8hpp.html',1,'']]], ['place_26',['place',['../namespacenc.html#a171da00c79cfbc9500916b6ac4d3de70',1,'nc']]], ['place_2ehpp_27',['place.hpp',['../place_8hpp.html',1,'']]], @@ -32,23 +32,23 @@ var searchData= ['pnr_2ehpp_29',['pnr.hpp',['../pnr_8hpp.html',1,'']]], ['pointer_30',['pointer',['../classnc_1_1_nd_array.html#a288e6b26205492751717d3fb8854ca30',1,'nc::NdArray::pointer'],['../classnc_1_1_nd_array_const_iterator.html#a47936ba0f04dbcad7ab4e239bfb7da03',1,'nc::NdArrayConstIterator::pointer'],['../classnc_1_1_nd_array_iterator.html#a60d5e768fcd13cedd43febeb28148aea',1,'nc::NdArrayIterator::pointer'],['../classnc_1_1_nd_array_const_column_iterator.html#a4070d7ef2c99fec46a8df015769f58b6',1,'nc::NdArrayConstColumnIterator::pointer'],['../classnc_1_1_nd_array_column_iterator.html#aeb402bf56941dc24138dc9f33845be81',1,'nc::NdArrayColumnIterator::pointer']]], ['pointerpolicy_31',['PointerPolicy',['../namespacenc.html#ae31148c2c120e8ed49df98e7dcd960ec',1,'nc']]], - ['poisson_32',['poisson',['../classnc_1_1random_1_1_r_n_g.html#aea354ddc8f6443ee46ab3e77f89a15a3',1,'nc::random::RNG::poisson(double inMean=1)'],['../classnc_1_1random_1_1_r_n_g.html#aef31a7b85c359992d6f7e101f991c145',1,'nc::random::RNG::poisson(const Shape &inShape, double inMean=1)'],['../namespacenc_1_1random.html#a0818ee6f61baf994f13a513f70fd0840',1,'nc::random::poisson(const Shape &inShape, double inMean=1)'],['../namespacenc_1_1random.html#ae18029c16ca489ea9db6331c609b20e8',1,'nc::random::poisson(double inMean=1)'],['../namespacenc_1_1random_1_1detail.html#a7899dfcd192eda5c8318ebe2f8d5bb41',1,'nc::random::detail::poisson(GeneratorType &generator, double inMean=1)'],['../namespacenc_1_1random_1_1detail.html#a9e402d65304589f2792021f031836430',1,'nc::random::detail::poisson(GeneratorType &generator, const Shape &inShape, double inMean=1)']]], + ['poisson_32',['poisson',['../classnc_1_1random_1_1_r_n_g.html#aef31a7b85c359992d6f7e101f991c145',1,'nc::random::RNG::poisson()'],['../namespacenc_1_1random_1_1detail.html#a7899dfcd192eda5c8318ebe2f8d5bb41',1,'nc::random::detail::poisson(GeneratorType &generator, double inMean=1)'],['../namespacenc_1_1random_1_1detail.html#a9e402d65304589f2792021f031836430',1,'nc::random::detail::poisson(GeneratorType &generator, const Shape &inShape, double inMean=1)'],['../namespacenc_1_1random.html#ae18029c16ca489ea9db6331c609b20e8',1,'nc::random::poisson(double inMean=1)'],['../namespacenc_1_1random.html#a0818ee6f61baf994f13a513f70fd0840',1,'nc::random::poisson(const Shape &inShape, double inMean=1)'],['../classnc_1_1random_1_1_r_n_g.html#aea354ddc8f6443ee46ab3e77f89a15a3',1,'nc::random::RNG::poisson()']]], ['poisson_2ehpp_33',['poisson.hpp',['../poisson_8hpp.html',1,'']]], ['polar_34',['polar',['../namespacenc.html#abbf3200fe11e4cb7ae6363b00099c2fe',1,'nc::polar(dtype magnitude, dtype phaseAngle)'],['../namespacenc.html#a4f674e5cab66c911b212a5eae86a641b',1,'nc::polar(const NdArray< dtype > &magnitude, const NdArray< dtype > &phaseAngle)']]], ['polar_2ehpp_35',['polar.hpp',['../polar_8hpp.html',1,'']]], - ['poly1d_36',['poly1d',['../classnc_1_1polynomial_1_1_poly1d.html#a30777a0dd9351cf64f96959dad0d9ba5',1,'nc::polynomial::Poly1d::Poly1d()'],['../classnc_1_1polynomial_1_1_poly1d.html',1,'nc::polynomial::Poly1d< dtype >'],['../classnc_1_1polynomial_1_1_poly1d.html#a4f7f317a4ecbc855aabd4087e1c1b9a2',1,'nc::polynomial::Poly1d::Poly1d()']]], + ['poly1d_36',['poly1d',['../classnc_1_1polynomial_1_1_poly1d.html',1,'nc::polynomial::Poly1d< dtype >'],['../classnc_1_1polynomial_1_1_poly1d.html#a30777a0dd9351cf64f96959dad0d9ba5',1,'nc::polynomial::Poly1d::Poly1d()=default'],['../classnc_1_1polynomial_1_1_poly1d.html#a4f7f317a4ecbc855aabd4087e1c1b9a2',1,'nc::polynomial::Poly1d::Poly1d(const NdArray< dtype > &inValues, IsRoots isRoots=IsRoots::NO)']]], ['poly1d_2ehpp_37',['Poly1d.hpp',['../_poly1d_8hpp.html',1,'']]], - ['polygamma_38',['polygamma',['../namespacenc_1_1special.html#a1aab975128b9cfbd175699a9587b34d0',1,'nc::special::polygamma(uint32 n, const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#a132b29cd86870cdd360652baeb54c663',1,'nc::special::polygamma(uint32 n, dtype inValue)']]], + ['polygamma_38',['polygamma',['../namespacenc_1_1special.html#a132b29cd86870cdd360652baeb54c663',1,'nc::special::polygamma(uint32 n, dtype inValue)'],['../namespacenc_1_1special.html#a1aab975128b9cfbd175699a9587b34d0',1,'nc::special::polygamma(uint32 n, const NdArray< dtype > &inArray)']]], ['polygamma_2ehpp_39',['polygamma.hpp',['../polygamma_8hpp.html',1,'']]], ['polynomial_2ehpp_40',['Polynomial.hpp',['../_polynomial_8hpp.html',1,'']]], ['pop_5fback_41',['pop_back',['../classnc_1_1_data_cube.html#a8e261e08fd074073771b98dc96726b0f',1,'nc::DataCube']]], ['positive_42',['POSITIVE',['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#afcdc0ed1532a94a817d44eaaa1fc5a9caab6c31432785221bae58327ef5f6ea58',1,'nc::coordinates::reference_frames::Dec']]], - ['power_43',['power',['../namespacenc_1_1utils.html#a716a63ef8627c73f6cc4146481fcabdf',1,'nc::utils::power()'],['../namespacenc.html#accb66c153866ca430e3f2ce0386f92eb',1,'nc::power(const NdArray< dtype > &inArray, const NdArray< uint8 > &inExponents)'],['../namespacenc.html#affc3af7f5f6f2daca46e7730df7cf3ee',1,'nc::power(const NdArray< dtype > &inArray, uint8 inExponent)'],['../namespacenc.html#a1f059635ecfc805979db6973dfa29008',1,'nc::power(dtype inValue, uint8 inExponent) noexcept']]], - ['powerf_44',['powerf',['../namespacenc.html#acc759e42feb1633b521ed7138cf4bfe3',1,'nc::powerf()'],['../namespacenc_1_1utils.html#ac113b30b96f9c707c0cbe2eecbabe85f',1,'nc::utils::powerf()'],['../namespacenc.html#a1284308e19d619e53362f5784256c99f',1,'nc::powerf(const NdArray< dtype1 > &inArray, const NdArray< dtype2 > &inExponents)'],['../namespacenc.html#afa339e99c7bf037352cf0f2a0751f7fd',1,'nc::powerf(const NdArray< dtype1 > &inArray, dtype2 inExponent)']]], + ['power_43',['power',['../namespacenc.html#affc3af7f5f6f2daca46e7730df7cf3ee',1,'nc::power(const NdArray< dtype > &inArray, uint8 inExponent)'],['../namespacenc.html#accb66c153866ca430e3f2ce0386f92eb',1,'nc::power(const NdArray< dtype > &inArray, const NdArray< uint8 > &inExponents)'],['../namespacenc_1_1utils.html#a716a63ef8627c73f6cc4146481fcabdf',1,'nc::utils::power()'],['../namespacenc.html#a1f059635ecfc805979db6973dfa29008',1,'nc::power(dtype inValue, uint8 inExponent) noexcept']]], + ['powerf_44',['powerf',['../namespacenc.html#acc759e42feb1633b521ed7138cf4bfe3',1,'nc::powerf()'],['../namespacenc_1_1utils.html#ac113b30b96f9c707c0cbe2eecbabe85f',1,'nc::utils::powerf()'],['../namespacenc.html#afa339e99c7bf037352cf0f2a0751f7fd',1,'nc::powerf(const NdArray< dtype1 > &inArray, dtype2 inExponent)'],['../namespacenc.html#a1284308e19d619e53362f5784256c99f',1,'nc::powerf(const NdArray< dtype1 > &inArray, const NdArray< dtype2 > &inExponents)']]], ['powersoftwo_45',['powersOfTwo',['../namespacenc_1_1edac_1_1detail.html#a03c06e60e061de0018d33a36239caa97',1,'nc::edac::detail']]], - ['prime_46',['prime',['../namespacenc_1_1special.html#a2e0b9f447fd033ac62a0dfe3eadb46cd',1,'nc::special::prime(uint32 n)'],['../namespacenc_1_1special.html#a85113d7e84f6acfe8503d1b791829f58',1,'nc::special::prime(const NdArray< uint32 > &inArray)']]], + ['prime_46',['prime',['../namespacenc_1_1special.html#a85113d7e84f6acfe8503d1b791829f58',1,'nc::special::prime(const NdArray< uint32 > &inArray)'],['../namespacenc_1_1special.html#a2e0b9f447fd033ac62a0dfe3eadb46cd',1,'nc::special::prime(uint32 n)']]], ['prime_2ehpp_47',['prime.hpp',['../prime_8hpp.html',1,'']]], - ['print_48',['print',['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a884037195f11ea154452a19f3db84ae6',1,'nc::coordinates::reference_frames::RA::print()'],['../namespacenc.html#aad1fad7ba0ba94b118bdceb29178488b',1,'nc::print()'],['../classnc_1_1image_processing_1_1_pixel.html#a3a8fb91578395ef70a5f6038c4c48062',1,'nc::imageProcessing::Pixel::print()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a626910d5937ec7d1421827ca0d2f57b1',1,'nc::coordinates::reference_frames::Dec::print()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#af655d6abdacad6003aa88b1207741eeb',1,'nc::coordinates::reference_frames::Celestial::print()'],['../classnc_1_1_shape.html#a494a3d8467911c47d56aa881e11a69f1',1,'nc::Shape::print()'],['../classnc_1_1_slice.html#a24c1eb77b94d3120bb02868cc965c058',1,'nc::Slice::print()'],['../classnc_1_1image_processing_1_1_centroid.html#a139efcdd994d1bacdf62d65b3c427d8d',1,'nc::imageProcessing::Centroid::print()'],['../classnc_1_1image_processing_1_1_cluster.html#afdb1943f70f28747a1e83b74de984972',1,'nc::imageProcessing::Cluster::print()'],['../classnc_1_1rotations_1_1_quaternion.html#a815d72f9b492ff821077d5d4652b7985',1,'nc::rotations::Quaternion::print()'],['../classnc_1_1polynomial_1_1_poly1d.html#ab17f5e0983d6c66a3419cb331d158395',1,'nc::polynomial::Poly1d::print()'],['../classnc_1_1_nd_array.html#a8729dc551775ca022cbfbf66b22c999b',1,'nc::NdArray::print()']]], + ['print_48',['print',['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#af655d6abdacad6003aa88b1207741eeb',1,'nc::coordinates::reference_frames::Celestial::print()'],['../classnc_1_1_shape.html#a494a3d8467911c47d56aa881e11a69f1',1,'nc::Shape::print()'],['../namespacenc.html#aad1fad7ba0ba94b118bdceb29178488b',1,'nc::print()'],['../classnc_1_1_slice.html#a24c1eb77b94d3120bb02868cc965c058',1,'nc::Slice::print()'],['../classnc_1_1image_processing_1_1_centroid.html#a139efcdd994d1bacdf62d65b3c427d8d',1,'nc::imageProcessing::Centroid::print()'],['../classnc_1_1image_processing_1_1_cluster.html#afdb1943f70f28747a1e83b74de984972',1,'nc::imageProcessing::Cluster::print()'],['../classnc_1_1image_processing_1_1_pixel.html#a3a8fb91578395ef70a5f6038c4c48062',1,'nc::imageProcessing::Pixel::print()'],['../classnc_1_1_nd_array.html#a8729dc551775ca022cbfbf66b22c999b',1,'nc::NdArray::print()'],['../classnc_1_1polynomial_1_1_poly1d.html#ab17f5e0983d6c66a3419cb331d158395',1,'nc::polynomial::Poly1d::print()'],['../classnc_1_1rotations_1_1_quaternion.html#a815d72f9b492ff821077d5d4652b7985',1,'nc::rotations::Quaternion::print()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a626910d5937ec7d1421827ca0d2f57b1',1,'nc::coordinates::reference_frames::Dec::print()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a884037195f11ea154452a19f3db84ae6',1,'nc::coordinates::reference_frames::RA::print()']]], ['print_2ehpp_49',['print.hpp',['../print_8hpp.html',1,'']]], ['printelapsedtime_50',['PrintElapsedTime',['../namespacenc.html#a789bf2546eff297f1ecc11542decf8d7',1,'nc']]], ['printresults_51',['PrintResults',['../namespacenc.html#a671e78f21b7e89dbb3f0afb50ecba063',1,'nc']]], @@ -61,7 +61,7 @@ var searchData= ['ptp_58',['ptp',['../classnc_1_1_nd_array.html#ade7af18a5e752671e48f45dd0b5b1bf7',1,'nc::NdArray::ptp()'],['../namespacenc.html#af42505ac3f2610d1fe9779bf97d89215',1,'nc::ptp()']]], ['ptp_2ehpp_59',['ptp.hpp',['../ptp_8hpp.html',1,'']]], ['push_5fback_60',['push_back',['../classnc_1_1_data_cube.html#a00f652afe3e8734f7d0707b12afd6a65',1,'nc::DataCube']]], - ['put_61',['put',['../namespacenc.html#ae566be3952130fe9fcb640dd64f2f0c2',1,'nc::put()'],['../classnc_1_1_nd_array.html#aacd3053f17458c8fc51a43b0e35a84b3',1,'nc::NdArray::put()'],['../namespacenc.html#a70086f6838e32bc48d4c509fc06b4e65',1,'nc::put(NdArray< dtype > &inArray, const Slice &inRowSlice, const ColIndices &inColIndices, const NdArray< dtype > &inValues)'],['../namespacenc.html#ac737768119106780a28cf58021ed8ad1',1,'nc::put(NdArray< dtype > &inArray, const Indices &inRowIndices, int32 inColIndex, const NdArray< dtype > &inValues)'],['../namespacenc.html#a80856fdb5e2a3b4702185c5a9ba398ae',1,'nc::put(NdArray< dtype > &inArray, const Slice &inRowSlice, int32 inColIndex, const NdArray< dtype > &inValues)'],['../namespacenc.html#ad97b40d48abdded2c79e419042b26d8e',1,'nc::put(NdArray< dtype > &inArray, int32 inRowIndex, const Indices &inColIndices, const NdArray< dtype > &inValues)'],['../namespacenc.html#adc7a200fb17632e18dc972843e843f89',1,'nc::put(NdArray< dtype > &inArray, int32 inRowIndex, const Slice &inColSlice, const NdArray< dtype > &inValues)'],['../namespacenc.html#a5611f54234229ddb39c89b032a59616b',1,'nc::put(NdArray< dtype > &inArray, const RowIndices &inRowIndices, const Slice &inColSlice, const NdArray< dtype > &inValues)'],['../namespacenc.html#af460043e8ba8071cd21c47c8c4364933',1,'nc::put(NdArray< dtype > &inArray, const RowIndices &inRowIndices, const ColIndices &inColIndices, const NdArray< dtype > &inValues)'],['../namespacenc.html#a06ba9924d8ca177a3ad753851eaa84ad',1,'nc::put(NdArray< dtype > &inArray, int32 inRowIndex, const Slice &inColSlice, const dtype &inValue)'],['../namespacenc.html#a0b2fa410818e095dac6898161664b9ef',1,'nc::put(NdArray< dtype > &inArray, int32 inRowIndex, const Indices &inColIndices, const dtype &inValue)'],['../namespacenc.html#a8632c33c1f13c9d7e2127e3b91a32833',1,'nc::put(NdArray< dtype > &inArray, const Slice &inRowSlice, int32 inColIndex, const dtype &inValue)'],['../namespacenc.html#a84c236a072e06588fe839324a226d078',1,'nc::put(NdArray< dtype > &inArray, const Indices &inRowIndices, int32 inColIndex, const dtype &inValue)'],['../namespacenc.html#ad9b1d0b17fffdfb1783cbec4156b1540',1,'nc::put(NdArray< dtype > &inArray, const Slice &inRowSlice, const Slice &inColSlice, const dtype &inValue)'],['../namespacenc.html#abf1aef717a7f0f3f64b96d6552e4884d',1,'nc::put(NdArray< dtype > &inArray, const Slice &inRowSlice, const ColIndices &inColIndices, const dtype &inValue)'],['../namespacenc.html#a55e08e41868a46a6423bcfb0f384e1a5',1,'nc::put(NdArray< dtype > &inArray, const RowIndices &inRowIndices, const Slice &inColSlice, const dtype &inValue)'],['../namespacenc.html#a45b73d56522f52def6af02b1ea049645',1,'nc::put(NdArray< dtype > &inArray, const RowIndices &inRowIndices, const ColIndices &inColIndices, const dtype &inValue)'],['../namespacenc.html#ac8b57dfa32e1e4adf4ca98ae4841b462',1,'nc::put(NdArray< dtype > &inArray, const Slice &inSlice, const NdArray< dtype > &inValues)'],['../namespacenc.html#a73bde45c6281ba3a75e213a2675fa479',1,'nc::put(NdArray< dtype > &inArray, const Slice &inSlice, const dtype &inValue)'],['../namespacenc.html#a34fd32b4ac2703d6256ec75546cd65f8',1,'nc::put(NdArray< dtype > &inArray, const Indices &inIndices, const NdArray< dtype > &inValues)'],['../namespacenc.html#a0e5bb0df7e1a359f6af7bc675d468809',1,'nc::put(NdArray< dtype > &inArray, const Indices &inIndices, const dtype &inValue)'],['../namespacenc.html#a37964b5660dbe495af4a1f0d44cfea32',1,'nc::put(NdArray< dtype > &inArray, int32 inRow, int32 inCol, const dtype &inValue)'],['../namespacenc.html#a67c64a382604771260312ce13da69944',1,'nc::put(NdArray< dtype > &inArray, int32 inIndex, const dtype &inValue)'],['../classnc_1_1_nd_array.html#a8409e49f922af6202ae6ac9efa99eff7',1,'nc::NdArray::put(const Slice &inRowSlice, index_type inColIndex, const value_type &inValue)'],['../classnc_1_1_nd_array.html#afa2a40b7393c650c7529bfcee3b49dc2',1,'nc::NdArray::put(index_type inRow, index_type inCol, const value_type &inValue)'],['../classnc_1_1_nd_array.html#acf1f8244d4e188c5f2bc9ecc6f63c992',1,'nc::NdArray::put(const Indices &inIndices, const value_type &inValue)'],['../classnc_1_1_nd_array.html#a954b7bc4fb08ad200ded89926f03c044',1,'nc::NdArray::put(const Indices &inIndices, const self_type &inValues)'],['../classnc_1_1_nd_array.html#abc93f10cf3e9b3ff42d2574509d46b42',1,'nc::NdArray::put(const Slice &inSlice, const value_type &inValue)'],['../classnc_1_1_nd_array.html#acd6d86dd103bc92285e04d5ca8cbe464',1,'nc::NdArray::put(const Slice &inSlice, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a1c90866928ee9d3d9a5561bb383197b1',1,'nc::NdArray::put(const RowIndices &inRowIndices, const ColIndices &inColIndices, const value_type &inValue)'],['../classnc_1_1_nd_array.html#adb55ab056ca590042be07b1ebae23045',1,'nc::NdArray::put(const RowIndices &inRowIndices, const Slice &inColSlice, const value_type &inValue)'],['../classnc_1_1_nd_array.html#a0a95f3798fb3314cd2f93da65d9d3901',1,'nc::NdArray::put(const Slice &inRowSlice, const ColIndices &inColIndices, const value_type &inValue)'],['../classnc_1_1_nd_array.html#af31768bef101e162cf0cbe077800cf14',1,'nc::NdArray::put(const Slice &inRowSlice, const Slice &inColSlice, const value_type &inValue)'],['../classnc_1_1_nd_array.html#a5432510bb597b7b50c82c6ad7f4a3960',1,'nc::NdArray::put(const Indices &inRowIndices, index_type inColIndex, const value_type &inValue)'],['../classnc_1_1_nd_array.html#add4015cf76c23ee8f3e2fab79e234ede',1,'nc::NdArray::put(index_type inRowIndex, const Slice &inColSlice, const value_type &inValue)'],['../classnc_1_1_nd_array.html#a0940e2a76abd7d251e37b48d9942cc90',1,'nc::NdArray::put(const RowIndices &inRowIndices, const ColIndices &inColIndices, const self_type &inValues)'],['../classnc_1_1_nd_array.html#aae8361a012523be0f0b5f341e5939595',1,'nc::NdArray::put(const RowIndices &inRowIndices, Slice inColSlice, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a8383354f7a2e9e4f691475a44c7f1d3b',1,'nc::NdArray::put(Slice inRowSlice, const ColIndices &inColIndices, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a56b36a9d76286a583fe2a83bd8f204ce',1,'nc::NdArray::put(Slice inRowSlice, Slice inColSlice, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a7baaa9093de2a18b5dbbe4a44b7fad9d',1,'nc::NdArray::put(const Indices &inRowIndices, index_type inColIndex, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a8299084e56d9ca172843055046442404',1,'nc::NdArray::put(const Slice &inRowSlice, index_type inColIndex, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a6dd4a60fee1f8b880d383160d8836b89',1,'nc::NdArray::put(index_type inRowIndex, const Indices &inColIndices, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a6398259baddf9e69e120d263c02c5add',1,'nc::NdArray::put(index_type inRowIndex, const Slice &inColSlice, const self_type &inValues)'],['../classnc_1_1_nd_array.html#afcfdb9f8bbbc9f9f920fe35c7af6a8ff',1,'nc::NdArray::put(index_type inIndex, const value_type &inValue)']]], + ['put_61',['put',['../namespacenc.html#ae566be3952130fe9fcb640dd64f2f0c2',1,'nc::put()'],['../classnc_1_1_nd_array.html#a8409e49f922af6202ae6ac9efa99eff7',1,'nc::NdArray::put()'],['../namespacenc.html#a70086f6838e32bc48d4c509fc06b4e65',1,'nc::put(NdArray< dtype > &inArray, const Slice &inRowSlice, const ColIndices &inColIndices, const NdArray< dtype > &inValues)'],['../namespacenc.html#ac737768119106780a28cf58021ed8ad1',1,'nc::put(NdArray< dtype > &inArray, const Indices &inRowIndices, int32 inColIndex, const NdArray< dtype > &inValues)'],['../namespacenc.html#a80856fdb5e2a3b4702185c5a9ba398ae',1,'nc::put(NdArray< dtype > &inArray, const Slice &inRowSlice, int32 inColIndex, const NdArray< dtype > &inValues)'],['../namespacenc.html#ad97b40d48abdded2c79e419042b26d8e',1,'nc::put(NdArray< dtype > &inArray, int32 inRowIndex, const Indices &inColIndices, const NdArray< dtype > &inValues)'],['../namespacenc.html#adc7a200fb17632e18dc972843e843f89',1,'nc::put(NdArray< dtype > &inArray, int32 inRowIndex, const Slice &inColSlice, const NdArray< dtype > &inValues)'],['../namespacenc.html#a5611f54234229ddb39c89b032a59616b',1,'nc::put(NdArray< dtype > &inArray, const RowIndices &inRowIndices, const Slice &inColSlice, const NdArray< dtype > &inValues)'],['../namespacenc.html#af460043e8ba8071cd21c47c8c4364933',1,'nc::put(NdArray< dtype > &inArray, const RowIndices &inRowIndices, const ColIndices &inColIndices, const NdArray< dtype > &inValues)'],['../namespacenc.html#a06ba9924d8ca177a3ad753851eaa84ad',1,'nc::put(NdArray< dtype > &inArray, int32 inRowIndex, const Slice &inColSlice, const dtype &inValue)'],['../namespacenc.html#a0b2fa410818e095dac6898161664b9ef',1,'nc::put(NdArray< dtype > &inArray, int32 inRowIndex, const Indices &inColIndices, const dtype &inValue)'],['../namespacenc.html#a8632c33c1f13c9d7e2127e3b91a32833',1,'nc::put(NdArray< dtype > &inArray, const Slice &inRowSlice, int32 inColIndex, const dtype &inValue)'],['../namespacenc.html#a84c236a072e06588fe839324a226d078',1,'nc::put(NdArray< dtype > &inArray, const Indices &inRowIndices, int32 inColIndex, const dtype &inValue)'],['../namespacenc.html#ad9b1d0b17fffdfb1783cbec4156b1540',1,'nc::put(NdArray< dtype > &inArray, const Slice &inRowSlice, const Slice &inColSlice, const dtype &inValue)'],['../namespacenc.html#abf1aef717a7f0f3f64b96d6552e4884d',1,'nc::put(NdArray< dtype > &inArray, const Slice &inRowSlice, const ColIndices &inColIndices, const dtype &inValue)'],['../namespacenc.html#a55e08e41868a46a6423bcfb0f384e1a5',1,'nc::put(NdArray< dtype > &inArray, const RowIndices &inRowIndices, const Slice &inColSlice, const dtype &inValue)'],['../namespacenc.html#a45b73d56522f52def6af02b1ea049645',1,'nc::put(NdArray< dtype > &inArray, const RowIndices &inRowIndices, const ColIndices &inColIndices, const dtype &inValue)'],['../namespacenc.html#ac8b57dfa32e1e4adf4ca98ae4841b462',1,'nc::put(NdArray< dtype > &inArray, const Slice &inSlice, const NdArray< dtype > &inValues)'],['../namespacenc.html#a73bde45c6281ba3a75e213a2675fa479',1,'nc::put(NdArray< dtype > &inArray, const Slice &inSlice, const dtype &inValue)'],['../namespacenc.html#a34fd32b4ac2703d6256ec75546cd65f8',1,'nc::put(NdArray< dtype > &inArray, const Indices &inIndices, const NdArray< dtype > &inValues)'],['../namespacenc.html#a0e5bb0df7e1a359f6af7bc675d468809',1,'nc::put(NdArray< dtype > &inArray, const Indices &inIndices, const dtype &inValue)'],['../namespacenc.html#a37964b5660dbe495af4a1f0d44cfea32',1,'nc::put(NdArray< dtype > &inArray, int32 inRow, int32 inCol, const dtype &inValue)'],['../namespacenc.html#a67c64a382604771260312ce13da69944',1,'nc::put(NdArray< dtype > &inArray, int32 inIndex, const dtype &inValue)'],['../classnc_1_1_nd_array.html#aacd3053f17458c8fc51a43b0e35a84b3',1,'nc::NdArray::put(index_type inRowIndex, const Indices &inColIndices, const value_type &inValue)'],['../classnc_1_1_nd_array.html#afa2a40b7393c650c7529bfcee3b49dc2',1,'nc::NdArray::put(index_type inRow, index_type inCol, const value_type &inValue)'],['../classnc_1_1_nd_array.html#acf1f8244d4e188c5f2bc9ecc6f63c992',1,'nc::NdArray::put(const Indices &inIndices, const value_type &inValue)'],['../classnc_1_1_nd_array.html#a954b7bc4fb08ad200ded89926f03c044',1,'nc::NdArray::put(const Indices &inIndices, const self_type &inValues)'],['../classnc_1_1_nd_array.html#abc93f10cf3e9b3ff42d2574509d46b42',1,'nc::NdArray::put(const Slice &inSlice, const value_type &inValue)'],['../classnc_1_1_nd_array.html#acd6d86dd103bc92285e04d5ca8cbe464',1,'nc::NdArray::put(const Slice &inSlice, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a1c90866928ee9d3d9a5561bb383197b1',1,'nc::NdArray::put(const RowIndices &inRowIndices, const ColIndices &inColIndices, const value_type &inValue)'],['../classnc_1_1_nd_array.html#adb55ab056ca590042be07b1ebae23045',1,'nc::NdArray::put(const RowIndices &inRowIndices, const Slice &inColSlice, const value_type &inValue)'],['../classnc_1_1_nd_array.html#a0a95f3798fb3314cd2f93da65d9d3901',1,'nc::NdArray::put(const Slice &inRowSlice, const ColIndices &inColIndices, const value_type &inValue)'],['../classnc_1_1_nd_array.html#af31768bef101e162cf0cbe077800cf14',1,'nc::NdArray::put(const Slice &inRowSlice, const Slice &inColSlice, const value_type &inValue)'],['../classnc_1_1_nd_array.html#a5432510bb597b7b50c82c6ad7f4a3960',1,'nc::NdArray::put(const Indices &inRowIndices, index_type inColIndex, const value_type &inValue)'],['../classnc_1_1_nd_array.html#add4015cf76c23ee8f3e2fab79e234ede',1,'nc::NdArray::put(index_type inRowIndex, const Slice &inColSlice, const value_type &inValue)'],['../classnc_1_1_nd_array.html#a0940e2a76abd7d251e37b48d9942cc90',1,'nc::NdArray::put(const RowIndices &inRowIndices, const ColIndices &inColIndices, const self_type &inValues)'],['../classnc_1_1_nd_array.html#aae8361a012523be0f0b5f341e5939595',1,'nc::NdArray::put(const RowIndices &inRowIndices, Slice inColSlice, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a8383354f7a2e9e4f691475a44c7f1d3b',1,'nc::NdArray::put(Slice inRowSlice, const ColIndices &inColIndices, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a56b36a9d76286a583fe2a83bd8f204ce',1,'nc::NdArray::put(Slice inRowSlice, Slice inColSlice, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a7baaa9093de2a18b5dbbe4a44b7fad9d',1,'nc::NdArray::put(const Indices &inRowIndices, index_type inColIndex, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a8299084e56d9ca172843055046442404',1,'nc::NdArray::put(const Slice &inRowSlice, index_type inColIndex, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a6dd4a60fee1f8b880d383160d8836b89',1,'nc::NdArray::put(index_type inRowIndex, const Indices &inColIndices, const self_type &inValues)'],['../classnc_1_1_nd_array.html#a6398259baddf9e69e120d263c02c5add',1,'nc::NdArray::put(index_type inRowIndex, const Slice &inColSlice, const self_type &inValues)'],['../classnc_1_1_nd_array.html#afcfdb9f8bbbc9f9f920fe35c7af6a8ff',1,'nc::NdArray::put(index_type inIndex, const value_type &inValue)']]], ['put_2ehpp_62',['put.hpp',['../put_8hpp.html',1,'']]], ['putmask_63',['putmask',['../classnc_1_1_nd_array.html#aebb76869aac43d6d98611f8f09b27a4d',1,'nc::NdArray::putMask()'],['../namespacenc.html#a067d9482aba483287169730b7d42ae0e',1,'nc::putmask(NdArray< dtype > &inArray, const NdArray< bool > &inMask, dtype inValue)'],['../namespacenc.html#a024bd17e5b9f66ea7bb757a162be375d',1,'nc::putmask(NdArray< dtype > &inArray, const NdArray< bool > &inMask, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a860430649e79b09774ada67a58d3f8a4',1,'nc::NdArray::putMask()']]], ['putmask_2ehpp_64',['putmask.hpp',['../putmask_8hpp.html',1,'']]], diff --git a/docs/doxygen/html/search/files_11.js b/docs/doxygen/html/search/files_11.js index 04bec2b36..fdeb8d217 100644 --- a/docs/doxygen/html/search/files_11.js +++ b/docs/doxygen/html/search/files_11.js @@ -39,9 +39,10 @@ var searchData= ['subtract_2ehpp_36',['subtract.hpp',['../subtract_8hpp.html',1,'']]], ['sum_2ehpp_37',['sum.hpp',['../sum_8hpp.html',1,'']]], ['svd_2ehpp_38',['svd.hpp',['../svd_8hpp.html',1,'']]], - ['svdclass_2ehpp_39',['SVDClass.hpp',['../_s_v_d_class_8hpp.html',1,'']]], - ['swap_2ehpp_40',['swap.hpp',['../swap_8hpp.html',1,'']]], - ['swapaxes_2ehpp_41',['swapaxes.hpp',['../swapaxes_8hpp.html',1,'']]], - ['swapcols_2ehpp_42',['swapCols.hpp',['../swap_cols_8hpp.html',1,'']]], - ['swaprows_2ehpp_43',['swapRows.hpp',['../swap_rows_8hpp.html',1,'']]] + ['svd_2fsvd_2ehpp_39',['SVD.hpp',['../svd_2svd_8hpp.html',1,'']]], + ['svdvals_2ehpp_40',['svdvals.hpp',['../svdvals_8hpp.html',1,'']]], + ['swap_2ehpp_41',['swap.hpp',['../swap_8hpp.html',1,'']]], + ['swapaxes_2ehpp_42',['swapaxes.hpp',['../swapaxes_8hpp.html',1,'']]], + ['swapcols_2ehpp_43',['swapCols.hpp',['../swap_cols_8hpp.html',1,'']]], + ['swaprows_2ehpp_44',['swapRows.hpp',['../swap_rows_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_4.js b/docs/doxygen/html/search/files_4.js index 4d088b52f..5a45e9c11 100644 --- a/docs/doxygen/html/search/files_4.js +++ b/docs/doxygen/html/search/files_4.js @@ -7,36 +7,38 @@ var searchData= ['eceftoenu_2ehpp_4',['ECEFtoENU.hpp',['../_e_c_e_fto_e_n_u_8hpp.html',1,'']]], ['eceftolla_2ehpp_5',['ECEFtoLLA.hpp',['../_e_c_e_fto_l_l_a_8hpp.html',1,'']]], ['eceftoned_2ehpp_6',['ECEFtoNED.hpp',['../_e_c_e_fto_n_e_d_8hpp.html',1,'']]], - ['ellint_5f1_2ehpp_7',['ellint_1.hpp',['../ellint__1_8hpp.html',1,'']]], - ['ellint_5f2_2ehpp_8',['ellint_2.hpp',['../ellint__2_8hpp.html',1,'']]], - ['ellint_5f3_2ehpp_9',['ellint_3.hpp',['../ellint__3_8hpp.html',1,'']]], - ['empty_2ehpp_10',['empty.hpp',['../empty_8hpp.html',1,'']]], - ['empty_5flike_2ehpp_11',['empty_like.hpp',['../empty__like_8hpp.html',1,'']]], - ['endian_2ehpp_12',['Endian.hpp',['../_endian_8hpp.html',1,'']]], - ['endianess_2ehpp_13',['endianess.hpp',['../endianess_8hpp.html',1,'']]], - ['enu_2ehpp_14',['ENU.hpp',['../_e_n_u_8hpp.html',1,'']]], - ['enums_2ehpp_15',['Enums.hpp',['../_enums_8hpp.html',1,'']]], - ['enurollpitchyawtoecefeuler_2ehpp_16',['ENURollPitchYawToECEFEuler.hpp',['../_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html',1,'']]], - ['enutoaer_2ehpp_17',['ENUtoAER.hpp',['../_e_n_uto_a_e_r_8hpp.html',1,'']]], - ['enutoecef_2ehpp_18',['ENUtoECEF.hpp',['../_e_n_uto_e_c_e_f_8hpp.html',1,'']]], - ['enutolla_2ehpp_19',['ENUtoLLA.hpp',['../_e_n_uto_l_l_a_8hpp.html',1,'']]], - ['enutoned_2ehpp_20',['ENUtoNED.hpp',['../_e_n_uto_n_e_d_8hpp.html',1,'']]], - ['enuunitvecsinecef_2ehpp_21',['ENUUnitVecsInECEF.hpp',['../_e_n_u_unit_vecs_in_e_c_e_f_8hpp.html',1,'']]], - ['equal_2ehpp_22',['equal.hpp',['../equal_8hpp.html',1,'']]], - ['erf_2ehpp_23',['erf.hpp',['../erf_8hpp.html',1,'']]], - ['erf_5finv_2ehpp_24',['erf_inv.hpp',['../erf__inv_8hpp.html',1,'']]], - ['erfc_2ehpp_25',['erfc.hpp',['../erfc_8hpp.html',1,'']]], - ['erfc_5finv_2ehpp_26',['erfc_inv.hpp',['../erfc__inv_8hpp.html',1,'']]], - ['error_2ehpp_27',['Error.hpp',['../_error_8hpp.html',1,'']]], - ['essentiallyequal_2ehpp_28',['essentiallyEqual.hpp',['../essentially_equal_8hpp.html',1,'']]], - ['essentiallyequalcomplex_2ehpp_29',['essentiallyEqualComplex.hpp',['../essentially_equal_complex_8hpp.html',1,'']]], - ['euler_2ehpp_30',['Euler.hpp',['../_euler_8hpp.html',1,'']]], - ['exp_2ehpp_31',['exp.hpp',['../exp_8hpp.html',1,'']]], - ['exp2_2ehpp_32',['exp2.hpp',['../exp2_8hpp.html',1,'']]], - ['expint_2ehpp_33',['expint.hpp',['../expint_8hpp.html',1,'']]], - ['expm1_2ehpp_34',['expm1.hpp',['../expm1_8hpp.html',1,'']]], - ['exponential_2ehpp_35',['exponential.hpp',['../exponential_8hpp.html',1,'']]], - ['extract_2ehpp_36',['extract.hpp',['../extract_8hpp.html',1,'']]], - ['extremevalue_2ehpp_37',['extremeValue.hpp',['../extreme_value_8hpp.html',1,'']]], - ['eye_2ehpp_38',['eye.hpp',['../eye_8hpp.html',1,'']]] + ['eig_2ehpp_7',['eig.hpp',['../eig_8hpp.html',1,'']]], + ['eigvals_2ehpp_8',['eigvals.hpp',['../eigvals_8hpp.html',1,'']]], + ['ellint_5f1_2ehpp_9',['ellint_1.hpp',['../ellint__1_8hpp.html',1,'']]], + ['ellint_5f2_2ehpp_10',['ellint_2.hpp',['../ellint__2_8hpp.html',1,'']]], + ['ellint_5f3_2ehpp_11',['ellint_3.hpp',['../ellint__3_8hpp.html',1,'']]], + ['empty_2ehpp_12',['empty.hpp',['../empty_8hpp.html',1,'']]], + ['empty_5flike_2ehpp_13',['empty_like.hpp',['../empty__like_8hpp.html',1,'']]], + ['endian_2ehpp_14',['Endian.hpp',['../_endian_8hpp.html',1,'']]], + ['endianess_2ehpp_15',['endianess.hpp',['../endianess_8hpp.html',1,'']]], + ['enu_2ehpp_16',['ENU.hpp',['../_e_n_u_8hpp.html',1,'']]], + ['enums_2ehpp_17',['Enums.hpp',['../_enums_8hpp.html',1,'']]], + ['enurollpitchyawtoecefeuler_2ehpp_18',['ENURollPitchYawToECEFEuler.hpp',['../_e_n_u_roll_pitch_yaw_to_e_c_e_f_euler_8hpp.html',1,'']]], + ['enutoaer_2ehpp_19',['ENUtoAER.hpp',['../_e_n_uto_a_e_r_8hpp.html',1,'']]], + ['enutoecef_2ehpp_20',['ENUtoECEF.hpp',['../_e_n_uto_e_c_e_f_8hpp.html',1,'']]], + ['enutolla_2ehpp_21',['ENUtoLLA.hpp',['../_e_n_uto_l_l_a_8hpp.html',1,'']]], + ['enutoned_2ehpp_22',['ENUtoNED.hpp',['../_e_n_uto_n_e_d_8hpp.html',1,'']]], + ['enuunitvecsinecef_2ehpp_23',['ENUUnitVecsInECEF.hpp',['../_e_n_u_unit_vecs_in_e_c_e_f_8hpp.html',1,'']]], + ['equal_2ehpp_24',['equal.hpp',['../equal_8hpp.html',1,'']]], + ['erf_2ehpp_25',['erf.hpp',['../erf_8hpp.html',1,'']]], + ['erf_5finv_2ehpp_26',['erf_inv.hpp',['../erf__inv_8hpp.html',1,'']]], + ['erfc_2ehpp_27',['erfc.hpp',['../erfc_8hpp.html',1,'']]], + ['erfc_5finv_2ehpp_28',['erfc_inv.hpp',['../erfc__inv_8hpp.html',1,'']]], + ['error_2ehpp_29',['Error.hpp',['../_error_8hpp.html',1,'']]], + ['essentiallyequal_2ehpp_30',['essentiallyEqual.hpp',['../essentially_equal_8hpp.html',1,'']]], + ['essentiallyequalcomplex_2ehpp_31',['essentiallyEqualComplex.hpp',['../essentially_equal_complex_8hpp.html',1,'']]], + ['euler_2ehpp_32',['Euler.hpp',['../_euler_8hpp.html',1,'']]], + ['exp_2ehpp_33',['exp.hpp',['../exp_8hpp.html',1,'']]], + ['exp2_2ehpp_34',['exp2.hpp',['../exp2_8hpp.html',1,'']]], + ['expint_2ehpp_35',['expint.hpp',['../expint_8hpp.html',1,'']]], + ['expm1_2ehpp_36',['expm1.hpp',['../expm1_8hpp.html',1,'']]], + ['exponential_2ehpp_37',['exponential.hpp',['../exponential_8hpp.html',1,'']]], + ['extract_2ehpp_38',['extract.hpp',['../extract_8hpp.html',1,'']]], + ['extremevalue_2ehpp_39',['extremeValue.hpp',['../extreme_value_8hpp.html',1,'']]], + ['eye_2ehpp_40',['eye.hpp',['../eye_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/functions_11.js b/docs/doxygen/html/search/functions_11.js index 5a405d9d3..313593da3 100644 --- a/docs/doxygen/html/search/functions_11.js +++ b/docs/doxygen/html/search/functions_11.js @@ -1,6 +1,6 @@ var searchData= [ - ['ra_0',['ra',['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#acf49f473495e7a39f8185a461f8c3039',1,'nc::coordinates::reference_frames::RA::RA(double inDegrees)'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#af06f84fe87675cb60e75e666c407922a',1,'nc::coordinates::reference_frames::RA::RA(uint8 inHours, uint8 inMinutes, double inSeconds) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a27035489316217a64db114902079ea59',1,'nc::coordinates::reference_frames::Celestial::ra()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a3692c20924d005cba324d1972ff59c54',1,'nc::coordinates::reference_frames::RA::RA()']]], + ['ra_0',['ra',['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a3692c20924d005cba324d1972ff59c54',1,'nc::coordinates::reference_frames::RA::RA()=default'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#acf49f473495e7a39f8185a461f8c3039',1,'nc::coordinates::reference_frames::RA::RA(double inDegrees)'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#af06f84fe87675cb60e75e666c407922a',1,'nc::coordinates::reference_frames::RA::RA(uint8 inHours, uint8 inMinutes, double inSeconds) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a27035489316217a64db114902079ea59',1,'nc::coordinates::reference_frames::Celestial::ra()']]], ['rad2deg_1',['rad2deg',['../namespacenc.html#a19a21c68cb53309ac33e9c1a7b5d2513',1,'nc::rad2deg(const NdArray< dtype > &inArray)'],['../namespacenc.html#a8c8fc041b633785104c583a8ce3d9cef',1,'nc::rad2deg(dtype inValue) noexcept']]], ['radians_2',['radians',['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#a7e36ab92c2f8bc9254871ba9f216a588',1,'nc::coordinates::reference_frames::RA::radians()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a39c543fd471f182d86bb1172658319d0',1,'nc::coordinates::reference_frames::Dec::radians()'],['../namespacenc.html#a746ecf69081dec55ceb2647726ee106b',1,'nc::radians(const NdArray< dtype > &inArray)'],['../namespacenc.html#ac0f2714a22ef5029abf0f3fee0028546',1,'nc::radians(dtype inValue) noexcept']]], ['radianseperation_3',['radianseperation',['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#a9cc629cc5a7feec5a80acce4f4e935cb',1,'nc::coordinates::reference_frames::Celestial::radianSeperation(const Celestial &inOtherCelestial) const'],['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#af1488e9200aedcc61c9cbc52d181417a',1,'nc::coordinates::reference_frames::Celestial::radianSeperation(const NdArray< double > &inVector) const']]], diff --git a/docs/doxygen/html/search/functions_12.js b/docs/doxygen/html/search/functions_12.js index 76bc29b01..12c088ee6 100644 --- a/docs/doxygen/html/search/functions_12.js +++ b/docs/doxygen/html/search/functions_12.js @@ -1,6 +1,6 @@ var searchData= [ - ['s_0',['s',['../classnc_1_1rotations_1_1_quaternion.html#a075b6f1befef247f5d638c91e1a451fd',1,'nc::rotations::Quaternion::s()'],['../classnc_1_1linalg_1_1_s_v_d.html#aa3628ab32a1117f00645ce377c4b8654',1,'nc::linalg::SVD::s()']]], + ['s_0',['s',['../classnc_1_1rotations_1_1_quaternion.html#a075b6f1befef247f5d638c91e1a451fd',1,'nc::rotations::Quaternion::s()'],['../classnc_1_1linalg_1_1_s_v_d.html#a16f7636b9dc063e1636effbc71240f4b',1,'nc::linalg::SVD::s()']]], ['searchsorted_1',['searchsorted',['../namespacenc.html#a52ba185a8ca3f231986b8ffa737fd296',1,'nc::searchsorted(const NdArray< dtype > &inArray, const NdArray< dtype > &inValues, Side side=Side::LEFT)'],['../namespacenc.html#a99718b2914410e6c1166154122c6f314',1,'nc::searchsorted(const NdArray< dtype > &inArray, dtype inValue, Side side=Side::LEFT)']]], ['secant_2',['secant',['../classnc_1_1roots_1_1_secant.html#af8afc48a7393e85103a9c2acc662c63b',1,'nc::roots::Secant::Secant(const double epsilon, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_secant.html#adedf56589f2027e224d6044a071f20e3',1,'nc::roots::Secant::Secant(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept']]], ['second_3',['second',['../classnc_1_1_date_time.html#a324374f987aba2acaf441c27dc1673c1',1,'nc::DateTime']]], @@ -25,7 +25,7 @@ var searchData= ['setsecond_22',['setSecond',['../classnc_1_1_date_time.html#a870d115af59856e0da866c7e75677408',1,'nc::DateTime']]], ['setup_23',['setUp',['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#a841ec6cb5897340c0635cd18d2476729',1,'nc::coordinates::reference_frames::ENU']]], ['setyear_24',['setYear',['../classnc_1_1_date_time.html#afc8f15ff0271f51b4adaba5478fd0737',1,'nc::DateTime']]], - ['shape_25',['shape',['../namespacenc.html#ae2b224742bc8263190d451a44ebe5e34',1,'nc::shape()'],['../classnc_1_1_nd_array.html#a4824e91b22bb46ebc31c9c08de55ef13',1,'nc::NdArray::shape()'],['../classnc_1_1_data_cube.html#a9715d7b13b39a94be82b3b8945da061a',1,'nc::DataCube::shape()'],['../classnc_1_1_shape.html#a4b2cd200804257d9c53084f14fb38e31',1,'nc::Shape::Shape(uint32 inRows, uint32 inCols) noexcept'],['../classnc_1_1_shape.html#a6e870e9fda60c8e82996802fcb71490a',1,'nc::Shape::Shape(uint32 inSquareSize) noexcept'],['../classnc_1_1_shape.html#a0f41587a1b8f1c2b65035adc49705eec',1,'nc::Shape::Shape()=default']]], + ['shape_25',['shape',['../namespacenc.html#ae2b224742bc8263190d451a44ebe5e34',1,'nc::shape()'],['../classnc_1_1_shape.html#a4b2cd200804257d9c53084f14fb38e31',1,'nc::Shape::Shape(uint32 inRows, uint32 inCols) noexcept'],['../classnc_1_1_shape.html#a6e870e9fda60c8e82996802fcb71490a',1,'nc::Shape::Shape(uint32 inSquareSize) noexcept'],['../classnc_1_1_shape.html#a0f41587a1b8f1c2b65035adc49705eec',1,'nc::Shape::Shape()=default'],['../classnc_1_1_nd_array.html#a4824e91b22bb46ebc31c9c08de55ef13',1,'nc::NdArray::shape()'],['../classnc_1_1_data_cube.html#a9715d7b13b39a94be82b3b8945da061a',1,'nc::DataCube::shape()']]], ['shuffle_26',['shuffle',['../namespacenc_1_1random_1_1detail.html#a2c57a153b2235305ccadf068e70146f9',1,'nc::random::detail::shuffle()'],['../namespacenc_1_1random.html#ad73d56152095ad55887c89f47490c070',1,'nc::random::shuffle()'],['../classnc_1_1random_1_1_r_n_g.html#ada9c17d19a87ab7eb29604a5713ff4e0',1,'nc::random::RNG::shuffle()']]], ['sign_27',['sign',['../namespacenc.html#aaca3db497366050e01e279e6a2f91e9f',1,'nc::sign(const NdArray< dtype > &inArray)'],['../namespacenc.html#a4a5d98f334e0b50a3cf9c2718485e5e9',1,'nc::sign(dtype inValue) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a19892475f282e317b626687605a4b8ac',1,'nc::coordinates::reference_frames::Dec::sign()']]], ['signbit_28',['signbit',['../namespacenc.html#af6dcbdfea85cdc84b4ddcf6c978b71f1',1,'nc::signbit(dtype inValue) noexcept'],['../namespacenc.html#afb7d5d83208da53a56dddcc62c8f34c0',1,'nc::signbit(const NdArray< dtype > &inArray)']]], @@ -43,7 +43,7 @@ var searchData= ['slicezallat_40',['slicezallat',['../classnc_1_1_data_cube.html#af5e50bad9937b89f6e6fc5eca672239d',1,'nc::DataCube::sliceZAllat(Slice inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a936a4244ab338e07ae95d96d240cb2ea',1,'nc::DataCube::sliceZAllat(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a640270511679561d4efdcd6ef9f643f2',1,'nc::DataCube::sliceZAllat(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#ad71f0c98336e4d74915bdd77dc951b61',1,'nc::DataCube::sliceZAllat(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#aa9c59c8c8fb30f1b09cac2ee292530d1',1,'nc::DataCube::sliceZAllat(int32 inIndex) const']]], ['slicezat_41',['slicezat',['../classnc_1_1_data_cube.html#a58399f9333a2f3375b914aac44093c00',1,'nc::DataCube::sliceZat(Slice inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#af56f4829146de68936ddec6391d0c46d',1,'nc::DataCube::sliceZat(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a7ac8d05eb4202aefe4e95c2794013ef0',1,'nc::DataCube::sliceZat(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#afbf49c559f5c1fa6d1c4376c3b12d1ea',1,'nc::DataCube::sliceZat(int32 inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a94ce00366ab048c954ade7c4b7455d57',1,'nc::DataCube::sliceZat(int32 inIndex, Slice inSliceZ) const']]], ['softmax_42',['softmax',['../namespacenc_1_1special.html#a57c31ef5f8cbde558d6871c979162d51',1,'nc::special']]], - ['solve_43',['solve',['../classnc_1_1linalg_1_1_s_v_d.html#a5f8126b97109ff2929842d861522de19',1,'nc::linalg::SVD::solve()'],['../namespacenc_1_1linalg.html#afc9432e7c93e830c4ff8cff7f0a15771',1,'nc::linalg::solve()'],['../classnc_1_1roots_1_1_bisection.html#a1199a68b6f57fee8b24bfc59ffeff486',1,'nc::roots::Bisection::solve()'],['../classnc_1_1roots_1_1_brent.html#a3853981ca1113723006b6627d96d378b',1,'nc::roots::Brent::solve()'],['../classnc_1_1roots_1_1_dekker.html#a5da7506a8f371764d0fae321fe081111',1,'nc::roots::Dekker::solve()'],['../classnc_1_1roots_1_1_newton.html#aaed2535d1abdb0c6790aea60762ed789',1,'nc::roots::Newton::solve()'],['../classnc_1_1roots_1_1_secant.html#a3fefb4412402aa20eeabb85145463d70',1,'nc::roots::Secant::solve()']]], + ['solve_43',['solve',['../classnc_1_1roots_1_1_bisection.html#a1199a68b6f57fee8b24bfc59ffeff486',1,'nc::roots::Bisection::solve()'],['../namespacenc_1_1linalg.html#afc9432e7c93e830c4ff8cff7f0a15771',1,'nc::linalg::solve()'],['../classnc_1_1roots_1_1_brent.html#a3853981ca1113723006b6627d96d378b',1,'nc::roots::Brent::solve()'],['../classnc_1_1roots_1_1_dekker.html#a5da7506a8f371764d0fae321fe081111',1,'nc::roots::Dekker::solve()'],['../classnc_1_1roots_1_1_newton.html#aaed2535d1abdb0c6790aea60762ed789',1,'nc::roots::Newton::solve()'],['../classnc_1_1roots_1_1_secant.html#a3fefb4412402aa20eeabb85145463d70',1,'nc::roots::Secant::solve()']]], ['sort_44',['sort',['../namespacenc.html#a3c24c68959c609535bc8ae6a33f54d49',1,'nc::sort()'],['../namespacenc_1_1stl__algorithms.html#a519432fa55645fab8162c354e387b1a6',1,'nc::stl_algorithms::sort(RandomIt first, RandomIt last, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#a1d75d47f198fcc3693e87806d6ea8715',1,'nc::stl_algorithms::sort(RandomIt first, RandomIt last) noexcept'],['../classnc_1_1_nd_array.html#af20c6e6b28c08b7c005bf3bf96a8b162',1,'nc::NdArray::sort()']]], ['spherical_5fbessel_5fjn_45',['spherical_bessel_jn',['../namespacenc_1_1special.html#aa7f12646500dfd811792934164f8f403',1,'nc::special::spherical_bessel_jn(uint32 inV, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1special.html#a979e99d8a1626829183e38f69486e263',1,'nc::special::spherical_bessel_jn(uint32 inV, dtype inX)']]], ['spherical_5fbessel_5fyn_46',['spherical_bessel_yn',['../namespacenc_1_1special.html#a11378004d6f60a0ecf65470d071985b0',1,'nc::special::spherical_bessel_yn(uint32 inV, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1special.html#a1628a418aa8896a4f9711083ac5579d5',1,'nc::special::spherical_bessel_yn(uint32 inV, dtype inX)']]], @@ -54,20 +54,22 @@ var searchData= ['spherical_5fharmonic_5fr_51',['spherical_harmonic_r',['../namespacenc_1_1polynomial.html#a5ed971ca59899f372f28a53913796745',1,'nc::polynomial']]], ['split_52',['split',['../namespacenc.html#a7c557b0fd100b3f3e8dfe0b5d2a7bfa5',1,'nc']]], ['sqr_53',['sqr',['../namespacenc_1_1utils.html#ae792e10a24b7e5b8291a6c31a28a4512',1,'nc::utils']]], - ['sqrt_54',['sqrt',['../namespacenc.html#a941a5a1ffb61387495a6f23dc4036287',1,'nc::sqrt(dtype inValue) noexcept'],['../namespacenc.html#abb4086978f52185f25340b0ff57ca8f0',1,'nc::sqrt(const NdArray< dtype > &inArray)']]], + ['sqrt_54',['sqrt',['../namespacenc.html#abb4086978f52185f25340b0ff57ca8f0',1,'nc::sqrt(const NdArray< dtype > &inArray)'],['../namespacenc.html#a941a5a1ffb61387495a6f23dc4036287',1,'nc::sqrt(dtype inValue) noexcept']]], ['square_55',['square',['../namespacenc.html#a282e72a93afe2e6554e0f17f21dd7b9e',1,'nc::square(dtype inValue) noexcept'],['../namespacenc.html#a39a70c2ad8141e46fc0c56b8d90a0a00',1,'nc::square(const NdArray< dtype > &inArray)']]], ['stable_5fsort_56',['stable_sort',['../namespacenc_1_1stl__algorithms.html#a3b9f4bb9ba9a3ea8d8f97258eaa732d9',1,'nc::stl_algorithms::stable_sort(RandomIt first, RandomIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#a7b2c4b6a3ef5cc55ebdae2aa757d1874',1,'nc::stl_algorithms::stable_sort(RandomIt first, RandomIt last, Compare comp) noexcept']]], - ['stack_57',['stack',['../namespacenc.html#a2d30e8c82521930d506dd08f5cfaf79b',1,'nc::stack()'],['../namespacenc_1_1detail.html#a24fef48ccdf0d872dc24bd40189c252c',1,'nc::detail::stack()'],['../namespacenc.html#abbb3b38779a9d5cc3f473eef1f914057',1,'nc::stack()']]], + ['stack_57',['stack',['../namespacenc.html#a2d30e8c82521930d506dd08f5cfaf79b',1,'nc::stack(std::vector< NdArray< dtype > > inArrayList, Axis inAxis=Axis::NONE)'],['../namespacenc.html#abbb3b38779a9d5cc3f473eef1f914057',1,'nc::stack(std::initializer_list< NdArray< dtype > > inArrayList, Axis inAxis=Axis::NONE)'],['../namespacenc_1_1detail.html#a24fef48ccdf0d872dc24bd40189c252c',1,'nc::detail::stack()']]], ['standardnormal_58',['standardnormal',['../namespacenc_1_1random.html#a279c7f289afa743f29665cffb9bc6130',1,'nc::random::standardNormal(const Shape &inShape)'],['../namespacenc_1_1random.html#acc9d03c66c1fa8b35dea3fa0a0f075e7',1,'nc::random::standardNormal()'],['../namespacenc_1_1random_1_1detail.html#ad13106b872fe88187f21aeca26e078f0',1,'nc::random::detail::standardNormal(GeneratorType &generator, const Shape &inShape)'],['../namespacenc_1_1random_1_1detail.html#abdee8056d3ea531f0bf8a7a688e3f002',1,'nc::random::detail::standardNormal(GeneratorType &generator)'],['../classnc_1_1random_1_1_r_n_g.html#ad28cf8c6f5a889faa3eb6662201baf31',1,'nc::random::RNG::standardNormal()'],['../classnc_1_1random_1_1_r_n_g.html#a461f38b5aef6ae05b79e26cdaa3e0ca9',1,'nc::random::RNG::standardNormal(const Shape &inShape)']]], - ['stdev_59',['stdev',['../namespacenc.html#ab743c3f0710a1d9cc48364d749e8da23',1,'nc::stdev(const NdArray< std::complex< dtype > > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a53ac40df08d0e0ac23ac99719a46f11e',1,'nc::stdev(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], - ['str_60',['str',['../classnc_1_1image_processing_1_1_pixel.html#ae47f279d2f0ba0921027e787e3773ee8',1,'nc::imageProcessing::Pixel::str()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#ae57aeec394d31a60595d12a67b4eb35c',1,'nc::coordinates::reference_frames::RA::str()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a86d558ee10fd72ba329326721607a782',1,'nc::coordinates::reference_frames::Dec::str()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa3367f604ff7934fce178ce31dc98d9a',1,'nc::coordinates::reference_frames::Celestial::str()'],['../classnc_1_1_shape.html#aadb0e0d633d64e5eb5a4f9bef12b26c4',1,'nc::Shape::str()'],['../classnc_1_1_slice.html#af8bc3bb19b48fd09c769fd1fa9860ed5',1,'nc::Slice::str()'],['../classnc_1_1image_processing_1_1_centroid.html#aa39ae81638b8f7ed7b81d4476e2a6316',1,'nc::imageProcessing::Centroid::str()'],['../classnc_1_1image_processing_1_1_cluster.html#aaa1ee55d0c47196847b8bb1a76258bd3',1,'nc::imageProcessing::Cluster::str()'],['../classnc_1_1_nd_array.html#aa44f94cc8d02a56636223686f30d84f1',1,'nc::NdArray::str()'],['../classnc_1_1polynomial_1_1_poly1d.html#aa5c091077a037bab14a1c558ece21435',1,'nc::polynomial::Poly1d::str()'],['../classnc_1_1rotations_1_1_quaternion.html#a0ddeeba7435df3364f262215f24c93c1',1,'nc::rotations::Quaternion::str()']]], - ['strtotimepoint_61',['strToTimepoint',['../classnc_1_1_date_time.html#ac3414e4f92f84c20d072566652a2721e',1,'nc::DateTime']]], - ['studentt_62',['studentt',['../namespacenc_1_1random.html#a0323794f6a1d133f70adfa98409eb176',1,'nc::random::studentT(const Shape &inShape, dtype inDof)'],['../namespacenc_1_1random.html#a9e8074cb89e2362b5ae485834f550217',1,'nc::random::studentT(dtype inDof)'],['../namespacenc_1_1random_1_1detail.html#a684b49082bfd8557d879d56a22c3bc38',1,'nc::random::detail::studentT(GeneratorType &generator, const Shape &inShape, dtype inDof)'],['../namespacenc_1_1random_1_1detail.html#ac3b67cb54637b932ca78f86f76ca10e1',1,'nc::random::detail::studentT(GeneratorType &generator, dtype inDof)'],['../classnc_1_1random_1_1_r_n_g.html#a4706294a8b8ee0ec46dde802d2b37e1d',1,'nc::random::RNG::studentT(dtype inDof)'],['../classnc_1_1random_1_1_r_n_g.html#a968778762895842912026116b208cb76',1,'nc::random::RNG::studentT(const Shape &inShape, dtype inDof)']]], - ['subtract_63',['subtract',['../namespacenc.html#a1d5ece01fede35ffb35c6fac99917fbe',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#af3605001221b69f03d61e993f9ca71aa',1,'nc::subtract(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#afd694b0391256a6032687d6ff6ac95ca',1,'nc::subtract(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a308ab8fd267cf61ed2495f45348f52e0',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype > > &inArray2)'],['../namespacenc.html#a412ca2e04f5178de358c76b1e46698a2',1,'nc::subtract(const NdArray< std::complex< dtype > > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a17440059a0560c2091bbddbba29f36e0',1,'nc::subtract(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a533278a24e8080428321af5673f96929',1,'nc::subtract(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a0ee18a6155789e53dcf31c6a48bdc6be',1,'nc::subtract(const NdArray< std::complex< dtype > > &inArray, dtype value)'],['../namespacenc.html#a1152233f151be8ef1f5f4eab940ba3de',1,'nc::subtract(dtype value, const NdArray< std::complex< dtype > > &inArray)']]], - ['sum_64',['sum',['../classnc_1_1_nd_array.html#af92a510cd4fb5543e2694b2984c153bb',1,'nc::NdArray::sum()'],['../namespacenc.html#ab688952cfec9d98f50dee43378a9f27b',1,'nc::sum()']]], - ['svd_65',['svd',['../namespacenc_1_1linalg.html#acb38ad2613d50422afc539d005159055',1,'nc::linalg::svd()'],['../classnc_1_1linalg_1_1_s_v_d.html#ae0561bbc9633e436139258b0c70b98ba',1,'nc::linalg::SVD::SVD()']]], - ['swap_66',['swap',['../namespacenc.html#a39da0502565b913855379ea1439047e1',1,'nc']]], - ['swapaxes_67',['swapaxes',['../namespacenc.html#a2b2486e85699eb3710fa521082c80436',1,'nc::swapaxes()'],['../classnc_1_1_nd_array.html#a5f3177c5a086cd8e26b318f6e300eb73',1,'nc::NdArray::swapaxes()']]], - ['swapcols_68',['swapcols',['../namespacenc.html#a4f75f9175f584d2713ba68962b824dbe',1,'nc::swapCols()'],['../classnc_1_1_nd_array.html#a15f4ed211166972e56b463ae1a2bcd54',1,'nc::NdArray::swapCols(index_type colIdx1, index_type colIdx2) noexcept']]], - ['swaprows_69',['swaprows',['../classnc_1_1_nd_array.html#a35994576cdee7c305c6bd37742ce0f25',1,'nc::NdArray::swapRows()'],['../namespacenc.html#ad028746fa5632bec388025cb21d33e0c',1,'nc::swapRows()']]] + ['static_5fassert_5farithmetic_59',['STATIC_ASSERT_ARITHMETIC',['../classnc_1_1linalg_1_1_s_v_d.html#a38a3dacc268968d6910618f0ff79073e',1,'nc::linalg::SVD']]], + ['stdev_60',['stdev',['../namespacenc.html#ab743c3f0710a1d9cc48364d749e8da23',1,'nc::stdev(const NdArray< std::complex< dtype > > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a53ac40df08d0e0ac23ac99719a46f11e',1,'nc::stdev(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], + ['str_61',['str',['../classnc_1_1image_processing_1_1_cluster.html#aaa1ee55d0c47196847b8bb1a76258bd3',1,'nc::imageProcessing::Cluster::str()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#ae57aeec394d31a60595d12a67b4eb35c',1,'nc::coordinates::reference_frames::RA::str()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a86d558ee10fd72ba329326721607a782',1,'nc::coordinates::reference_frames::Dec::str()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa3367f604ff7934fce178ce31dc98d9a',1,'nc::coordinates::reference_frames::Celestial::str()'],['../classnc_1_1_shape.html#aadb0e0d633d64e5eb5a4f9bef12b26c4',1,'nc::Shape::str()'],['../classnc_1_1_slice.html#af8bc3bb19b48fd09c769fd1fa9860ed5',1,'nc::Slice::str()'],['../classnc_1_1image_processing_1_1_centroid.html#aa39ae81638b8f7ed7b81d4476e2a6316',1,'nc::imageProcessing::Centroid::str()'],['../classnc_1_1image_processing_1_1_pixel.html#ae47f279d2f0ba0921027e787e3773ee8',1,'nc::imageProcessing::Pixel::str()'],['../classnc_1_1_nd_array.html#aa44f94cc8d02a56636223686f30d84f1',1,'nc::NdArray::str()'],['../classnc_1_1polynomial_1_1_poly1d.html#aa5c091077a037bab14a1c558ece21435',1,'nc::polynomial::Poly1d::str()'],['../classnc_1_1rotations_1_1_quaternion.html#a0ddeeba7435df3364f262215f24c93c1',1,'nc::rotations::Quaternion::str()']]], + ['strtotimepoint_62',['strToTimepoint',['../classnc_1_1_date_time.html#ac3414e4f92f84c20d072566652a2721e',1,'nc::DateTime']]], + ['studentt_63',['studentt',['../namespacenc_1_1random.html#a0323794f6a1d133f70adfa98409eb176',1,'nc::random::studentT(const Shape &inShape, dtype inDof)'],['../namespacenc_1_1random.html#a9e8074cb89e2362b5ae485834f550217',1,'nc::random::studentT(dtype inDof)'],['../namespacenc_1_1random_1_1detail.html#a684b49082bfd8557d879d56a22c3bc38',1,'nc::random::detail::studentT(GeneratorType &generator, const Shape &inShape, dtype inDof)'],['../namespacenc_1_1random_1_1detail.html#ac3b67cb54637b932ca78f86f76ca10e1',1,'nc::random::detail::studentT(GeneratorType &generator, dtype inDof)'],['../classnc_1_1random_1_1_r_n_g.html#a968778762895842912026116b208cb76',1,'nc::random::RNG::studentT(const Shape &inShape, dtype inDof)'],['../classnc_1_1random_1_1_r_n_g.html#a4706294a8b8ee0ec46dde802d2b37e1d',1,'nc::random::RNG::studentT(dtype inDof)']]], + ['subtract_64',['subtract',['../namespacenc.html#a1152233f151be8ef1f5f4eab940ba3de',1,'nc::subtract(dtype value, const NdArray< std::complex< dtype > > &inArray)'],['../namespacenc.html#a0ee18a6155789e53dcf31c6a48bdc6be',1,'nc::subtract(const NdArray< std::complex< dtype > > &inArray, dtype value)'],['../namespacenc.html#a1d5ece01fede35ffb35c6fac99917fbe',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#af3605001221b69f03d61e993f9ca71aa',1,'nc::subtract(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#afd694b0391256a6032687d6ff6ac95ca',1,'nc::subtract(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a308ab8fd267cf61ed2495f45348f52e0',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype > > &inArray2)'],['../namespacenc.html#a412ca2e04f5178de358c76b1e46698a2',1,'nc::subtract(const NdArray< std::complex< dtype > > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a17440059a0560c2091bbddbba29f36e0',1,'nc::subtract(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a533278a24e8080428321af5673f96929',1,'nc::subtract(const std::complex< dtype > &value, const NdArray< dtype > &inArray)']]], + ['sum_65',['sum',['../namespacenc.html#ab688952cfec9d98f50dee43378a9f27b',1,'nc::sum()'],['../classnc_1_1_nd_array.html#af92a510cd4fb5543e2694b2984c153bb',1,'nc::NdArray::sum()']]], + ['svd_66',['svd',['../namespacenc_1_1linalg.html#a305c49baed6667d8d64b9cd13f2c5060',1,'nc::linalg::svd()'],['../classnc_1_1linalg_1_1_s_v_d.html#ab4ba7cba1b76cd0a05805c894b93e356',1,'nc::linalg::SVD::SVD()']]], + ['svdvals_67',['svdvals',['../namespacenc_1_1linalg.html#a9c3f05864405242a8917530242cdda9c',1,'nc::linalg']]], + ['swap_68',['swap',['../namespacenc.html#a39da0502565b913855379ea1439047e1',1,'nc']]], + ['swapaxes_69',['swapaxes',['../namespacenc.html#a2b2486e85699eb3710fa521082c80436',1,'nc::swapaxes()'],['../classnc_1_1_nd_array.html#a5f3177c5a086cd8e26b318f6e300eb73',1,'nc::NdArray::swapaxes()']]], + ['swapcols_70',['swapcols',['../namespacenc.html#a4f75f9175f584d2713ba68962b824dbe',1,'nc::swapCols()'],['../classnc_1_1_nd_array.html#a15f4ed211166972e56b463ae1a2bcd54',1,'nc::NdArray::swapCols(index_type colIdx1, index_type colIdx2) noexcept']]], + ['swaprows_71',['swaprows',['../classnc_1_1_nd_array.html#a35994576cdee7c305c6bd37742ce0f25',1,'nc::NdArray::swapRows()'],['../namespacenc.html#ad028746fa5632bec388025cb21d33e0c',1,'nc::swapRows()']]] ]; diff --git a/docs/doxygen/html/search/functions_14.js b/docs/doxygen/html/search/functions_14.js index 7299ba179..964a8d060 100644 --- a/docs/doxygen/html/search/functions_14.js +++ b/docs/doxygen/html/search/functions_14.js @@ -1,6 +1,6 @@ var searchData= [ - ['u_0',['u',['../classnc_1_1linalg_1_1_s_v_d.html#af28a679bf8a8ef8af95184a26a6fbb4e',1,'nc::linalg::SVD']]], + ['u_0',['u',['../classnc_1_1linalg_1_1_s_v_d.html#a158910084dd44940dca481dbf5f92382',1,'nc::linalg::SVD']]], ['uniform_1',['uniform',['../classnc_1_1random_1_1_r_n_g.html#a8882c8c42caef3308bba1cfddb456221',1,'nc::random::RNG::uniform(dtype inLow, dtype inHigh)'],['../classnc_1_1random_1_1_r_n_g.html#a6c8199f0f3aa6438fcb893aee0b5cdcc',1,'nc::random::RNG::uniform(const Shape &inShape, dtype inLow, dtype inHigh)'],['../namespacenc_1_1random.html#a36da9b7a166bcdaaf8177191b8e15944',1,'nc::random::uniform(const Shape &inShape, dtype inLow, dtype inHigh)'],['../namespacenc_1_1random.html#adbff3f6b80e512d4153b12bae9c6c732',1,'nc::random::uniform(dtype inLow, dtype inHigh)'],['../namespacenc_1_1random_1_1detail.html#a648263b5450fb64ba93952637984feb4',1,'nc::random::detail::uniform(GeneratorType &generator, const Shape &inShape, dtype inLow, dtype inHigh)'],['../namespacenc_1_1random_1_1detail.html#ab77de38f57e578f6ae45db74f0c9f4dd',1,'nc::random::detail::uniform(GeneratorType &generator, dtype inLow, dtype inHigh)']]], ['uniformfilter_2',['uniformFilter',['../namespacenc_1_1filter.html#a6bebba3c4767e33ec5710cb24b1a9952',1,'nc::filter']]], ['uniformfilter1d_3',['uniformFilter1d',['../namespacenc_1_1filter.html#afcf603e5055c7bc01aed09067357e004',1,'nc::filter']]], diff --git a/docs/doxygen/html/search/functions_15.js b/docs/doxygen/html/search/functions_15.js index df0353431..f9e3eddb2 100644 --- a/docs/doxygen/html/search/functions_15.js +++ b/docs/doxygen/html/search/functions_15.js @@ -1,6 +1,6 @@ var searchData= [ - ['v_0',['v',['../classnc_1_1linalg_1_1_s_v_d.html#ab0ff491e89a4242d15854683d0a45650',1,'nc::linalg::SVD']]], + ['v_0',['v',['../classnc_1_1linalg_1_1_s_v_d.html#adc73c87eefc76c303ef510b5c2534fa3',1,'nc::linalg::SVD']]], ['value2str_1',['value2str',['../namespacenc_1_1utils.html#a83530b13c9cc3b01b9bd8b8d3113290a',1,'nc::utils']]], ['vander_2',['vander',['../namespacenc.html#a75841a79c6ec1409e304bab6419ab9d1',1,'nc::vander(const NdArray< dtype > &x, Increasing increasing=Increasing::YES)'],['../namespacenc.html#a3f4ba3545242fa79936ca6f07f5a311b',1,'nc::vander(const NdArray< dtype > &x, uint32 n, Increasing increasing=Increasing::YES)']]], ['var_3',['var',['../namespacenc.html#a81a573905b290c2109d706467b896b58',1,'nc::var(const NdArray< std::complex< dtype > > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#af93c7b399ebf8d5d32e4b6077a40b808',1,'nc::var(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], diff --git a/docs/doxygen/html/search/functions_3.js b/docs/doxygen/html/search/functions_3.js index ab2587d49..d8de2cd1c 100644 --- a/docs/doxygen/html/search/functions_3.js +++ b/docs/doxygen/html/search/functions_3.js @@ -6,7 +6,7 @@ var searchData= ['datarelease_3',['dataRelease',['../classnc_1_1_nd_array.html#ade07629d4094244f1dfca863af67e7c0',1,'nc::NdArray']]], ['datetime_4',['datetime',['../classnc_1_1_date_time.html#a3cfac781d647fad2d93edb672c8e9c97',1,'nc::DateTime::DateTime()=default'],['../classnc_1_1_date_time.html#af4a10119b2c4107e2251693041d7577f',1,'nc::DateTime::DateTime(const TimePoint &tp)'],['../classnc_1_1_date_time.html#aafbddb5d1b88743256c0cd60c024afd0',1,'nc::DateTime::DateTime(const std::string &timestamp)'],['../classnc_1_1_date_time.html#a823a0e8df2552c1d2b7ee0147f7666da',1,'nc::DateTime::DateTime(int year, int month, int day, int hour, int minute, int second, double fractionalSecond=0.0) noexcept']]], ['day_5',['day',['../classnc_1_1_date_time.html#af1e6d75986a6f988ef3433f5d934daed',1,'nc::DateTime']]], - ['dec_6',['dec',['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a243f2d36caf61e456d080ca5907f6ba5',1,'nc::coordinates::reference_frames::Dec::Dec()=default'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#aeecd2a4641ad64b3a19220d0c7028a3d',1,'nc::coordinates::reference_frames::Dec::Dec(double inDegrees)'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a67ed76f73de9470756507b11d30ae42a',1,'nc::coordinates::reference_frames::Dec::Dec(Sign inSign, uint8 inDegrees, uint8 inMinutes, double inSeconds) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa927c3373686a8618f89789e65e36a48',1,'nc::coordinates::reference_frames::Celestial::dec()']]], + ['dec_6',['dec',['../classnc_1_1coordinates_1_1reference__frames_1_1_celestial.html#aa927c3373686a8618f89789e65e36a48',1,'nc::coordinates::reference_frames::Celestial::dec()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a243f2d36caf61e456d080ca5907f6ba5',1,'nc::coordinates::reference_frames::Dec::Dec()=default'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#aeecd2a4641ad64b3a19220d0c7028a3d',1,'nc::coordinates::reference_frames::Dec::Dec(double inDegrees)'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a67ed76f73de9470756507b11d30ae42a',1,'nc::coordinates::reference_frames::Dec::Dec(Sign inSign, uint8 inDegrees, uint8 inMinutes, double inSeconds) noexcept']]], ['decode_7',['decode',['../namespacenc_1_1edac.html#aa24d4f99fd0739df7480845e96668e0f',1,'nc::edac']]], ['deg2rad_8',['deg2rad',['../namespacenc.html#a828388cb973b4e28e0b7060694e2604a',1,'nc::deg2rad(const NdArray< dtype > &inArray)'],['../namespacenc.html#a2cdc1c791ab98eb708ba5662ffb82b39',1,'nc::deg2rad(dtype inValue) noexcept']]], ['degrees_9',['degrees',['../namespacenc.html#aab0d24a5ffaf73330854bbcfc47d2fee',1,'nc::degrees(const NdArray< dtype > &inArray)'],['../namespacenc.html#a75c2b6b4713a5695a4738da25cf9d262',1,'nc::degrees(dtype inValue) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_r_a.html#aa6404fdd57da73255ee0de5b8b3ea60b',1,'nc::coordinates::reference_frames::RA::degrees()'],['../classnc_1_1coordinates_1_1reference__frames_1_1_dec.html#a06826631dd86cf11c717c51c0db34682',1,'nc::coordinates::reference_frames::Dec::degrees()']]], diff --git a/docs/doxygen/html/search/functions_4.js b/docs/doxygen/html/search/functions_4.js index cc986a267..1a4995b68 100644 --- a/docs/doxygen/html/search/functions_4.js +++ b/docs/doxygen/html/search/functions_4.js @@ -9,41 +9,43 @@ var searchData= ['eceftoenu_6',['eceftoenu',['../namespacenc_1_1coordinates_1_1transforms.html#a1719d5ddd842918900524766697a04e6',1,'nc::coordinates::transforms::ECEFtoENU(const reference_frames::ECEF &target, const reference_frames::ECEF &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a744e8ff251872f0c7b49687420309c92',1,'nc::coordinates::transforms::ECEFtoENU(const reference_frames::ECEF &target, const reference_frames::LLA &referencePoint) noexcept']]], ['eceftolla_7',['ECEFtoLLA',['../namespacenc_1_1coordinates_1_1transforms.html#ae5b0b317df7fc82c1a6467aa14ac37d4',1,'nc::coordinates::transforms']]], ['eceftoned_8',['eceftoned',['../namespacenc_1_1coordinates_1_1transforms.html#aa7ce07784d9289636de4cf2566913c85',1,'nc::coordinates::transforms::ECEFtoNED(const reference_frames::ECEF &target, const reference_frames::ECEF &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#ab1c0d50edf3b062d9ff459a7688c864d',1,'nc::coordinates::transforms::ECEFtoNED(const reference_frames::ECEF &target, const reference_frames::LLA &referencePoint) noexcept']]], - ['ellint_5f1_9',['ellint_1',['../namespacenc_1_1special.html#a0198bebbecba53e96b36d270be457490',1,'nc::special::ellint_1(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayP)'],['../namespacenc_1_1special.html#aa7fd769db69bde9583f039306c011816',1,'nc::special::ellint_1(dtype1 inK, dtype2 inP)']]], - ['ellint_5f2_10',['ellint_2',['../namespacenc_1_1special.html#a920986b87a9c40529343491bebdadfe0',1,'nc::special::ellint_2(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayP)'],['../namespacenc_1_1special.html#ab9c4568493afa63db21d5b88f3c2a82d',1,'nc::special::ellint_2(dtype1 inK, dtype2 inP)']]], - ['ellint_5f3_11',['ellint_3',['../namespacenc_1_1special.html#ab04eafe87336f4206d63b804dc8653ca',1,'nc::special::ellint_3(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayV, const NdArray< dtype3 > &inArrayP)'],['../namespacenc_1_1special.html#aaf7e9aa3cce2502f67735c787588a2eb',1,'nc::special::ellint_3(dtype1 inK, dtype2 inV, dtype3 inP)']]], - ['empty_12',['empty',['../namespacenc.html#a97dd73bece2058ce18e59eb2df095042',1,'nc::empty(const Shape &inShape)'],['../namespacenc.html#a3012780ddd20c705d9cff13bac986eff',1,'nc::empty(uint32 inNumRows, uint32 inNumCols)']]], - ['empty_5flike_13',['empty_like',['../namespacenc.html#a875e297baf1d0f1ae229b4342bad8f04',1,'nc']]], - ['enable_14',['enable',['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afb999d453f7b893f479337922bf80c9b',1,'nc::logger::detail::BinaryDataLogger']]], - ['encode_15',['encode',['../namespacenc_1_1edac.html#af5c36a1f2c74d632192cf9fe29cc5f03',1,'nc::edac']]], - ['end_16',['end',['../classnc_1_1image_processing_1_1_cluster_maker.html#a7d5ceccddb2db3b143c772ec9d66460a',1,'nc::imageProcessing::ClusterMaker::end()'],['../classnc_1_1_nd_array.html#a153d3032d72c24d233407a351d0f8174',1,'nc::NdArray::end() noexcept'],['../classnc_1_1_nd_array.html#a229701da7e9b386f5a58e5f1dc00bb73',1,'nc::NdArray::end(size_type inRow)'],['../classnc_1_1_nd_array.html#a635448f7b5d598e3a978d2c2e62d7727',1,'nc::NdArray::end() const noexcept'],['../classnc_1_1_nd_array.html#a546c8b9de00188fab35a6c5075147cc1',1,'nc::NdArray::end(size_type inRow) const'],['../classnc_1_1image_processing_1_1_cluster.html#afc8b5d168cf1d611be9f5226ec7efd55',1,'nc::imageProcessing::Cluster::end()'],['../classnc_1_1_data_cube.html#acc46d9e618309bbc5cfd5af56dd9e977',1,'nc::DataCube::end() const noexcept'],['../classnc_1_1_data_cube.html#a9aeac78f9aec9b69b9673c1e56778b1b',1,'nc::DataCube::end() noexcept']]], - ['endianess_17',['endianess',['../namespacenc.html#a6d1bce5e0cf3f24f84a50b945eec7a26',1,'nc::endianess()'],['../classnc_1_1_nd_array.html#a349b83beffbfb0a631799f921f13f7ad',1,'nc::NdArray::endianess()']]], - ['enu_18',['enu',['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#acff77c0afc8bd138dca98859d43f82a4',1,'nc::coordinates::reference_frames::ENU::ENU(double east, double north, double up) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac3efcb3adec07253d12d8b95c9c36b1a',1,'nc::coordinates::reference_frames::ENU::ENU(const Cartesian &cartesian) noexcept']]], - ['enurollpitchyawtoecefeuler_19',['ENURollPitchYawToECEFEuler',['../namespacenc_1_1coordinates_1_1transforms.html#ae1054b00ea5f197ce81ee256a749a8ad',1,'nc::coordinates::transforms']]], - ['enutoaer_20',['ENUtoAER',['../namespacenc_1_1coordinates_1_1transforms.html#a257ae22ee98cca9d16df59ff8b17cb54',1,'nc::coordinates::transforms']]], - ['enutoecef_21',['enutoecef',['../namespacenc_1_1coordinates_1_1transforms.html#aad4854fa54a5452ea763d632bfe3ebf0',1,'nc::coordinates::transforms::ENUtoECEF(const reference_frames::ENU &target, const reference_frames::ECEF &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a856dc06d3e1ebd1482d59f299574b0b0',1,'nc::coordinates::transforms::ENUtoECEF(const reference_frames::ENU &target, const reference_frames::LLA &referencePoint) noexcept']]], - ['enutolla_22',['enutolla',['../namespacenc_1_1coordinates_1_1transforms.html#a3fc106e20ec851e48602ff7a002a04cc',1,'nc::coordinates::transforms::ENUtoLLA(const reference_frames::ENU &target, const reference_frames::ECEF &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a2a9677cf3a4e80da17cf254e5df063ca',1,'nc::coordinates::transforms::ENUtoLLA(const reference_frames::ENU &target, const reference_frames::LLA &referencePoint) noexcept']]], - ['enutoned_23',['ENUtoNED',['../namespacenc_1_1coordinates_1_1transforms.html#aa60ec3d43951a07db58ff93de763fdac',1,'nc::coordinates::transforms']]], - ['enuunitvecsinecef_24',['ENUUnitVecsInECEF',['../namespacenc_1_1coordinates_1_1transforms.html#ac406cc673797cf81dab387ef5d802931',1,'nc::coordinates::transforms']]], - ['eod_25',['eod',['../classnc_1_1image_processing_1_1_cluster.html#a461863af036452bdb1813dfff33c7c42',1,'nc::imageProcessing::Cluster::eod()'],['../classnc_1_1image_processing_1_1_centroid.html#a098ee235ea6fcf22df2a7a0d80d53e44',1,'nc::imageProcessing::Centroid::eod()']]], - ['epsilon_26',['epsilon',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac117779d9768d1ba6093ef25b0fc294c',1,'nc::DtypeInfo< std::complex< dtype > >::epsilon()'],['../classnc_1_1_dtype_info.html#a845cc6986a3912805ab68960bc2b2318',1,'nc::DtypeInfo::epsilon()']]], - ['equal_27',['equal',['../namespacenc_1_1stl__algorithms.html#a684d1011b375da4078afb4474a36b0e6',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2, BinaryPredicate p) noexcept'],['../namespacenc_1_1stl__algorithms.html#ab200b92040bf3da8ee4325f5a994e73d',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2) noexcept'],['../namespacenc.html#a6891660e45d9f047bfc3a4625f4a255d',1,'nc::equal()']]], - ['erf_28',['erf',['../namespacenc_1_1special.html#a8b2da132f8a6d86ea0bcce34819d1833',1,'nc::special::erf(dtype inValue)'],['../namespacenc_1_1special.html#a5b7ac05949538787c3fdec373cb05126',1,'nc::special::erf(const NdArray< dtype > &inArray)']]], - ['erf_5finv_29',['erf_inv',['../namespacenc_1_1special.html#a0f66785ec1e2643dd4c932ff7cae61a4',1,'nc::special::erf_inv(dtype inValue)'],['../namespacenc_1_1special.html#abab69146b99ff384c6de4a24da69a780',1,'nc::special::erf_inv(const NdArray< dtype > &inArray)']]], - ['erfc_30',['erfc',['../namespacenc_1_1special.html#a1673dca59c73c85eedf077fb62aab5d7',1,'nc::special::erfc(dtype inValue)'],['../namespacenc_1_1special.html#a8671b7ab0e06230889f4a0cf417a248f',1,'nc::special::erfc(const NdArray< dtype > &inArray)']]], - ['erfc_5finv_31',['erfc_inv',['../namespacenc_1_1special.html#a653404a544d777c6d7d636a207ee7bca',1,'nc::special::erfc_inv(dtype inValue)'],['../namespacenc_1_1special.html#a3c9551b639e79ce3024fef298f4ace8c',1,'nc::special::erfc_inv(const NdArray< dtype > &inArray)']]], - ['essentiallyequal_32',['essentiallyequal',['../namespacenc_1_1utils.html#a963b90e7c9a3b057a924298750ddf74c',1,'nc::utils::essentiallyEqual(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc_1_1utils.html#aedd8afd691cf9f5a8f8e12c9ca33743a',1,'nc::utils::essentiallyEqual(dtype inValue1, dtype inValue2, dtype inEpsilon) noexcept'],['../namespacenc_1_1utils.html#a139da62fc9c51ae191e7451bb4edb706',1,'nc::utils::essentiallyEqual(const std::complex< dtype > &inValue1, const std::complex< dtype > &inValue2) noexcept'],['../namespacenc_1_1utils.html#a7e935ef90aaa774b37e6ab4b5316e01f',1,'nc::utils::essentiallyEqual(const std::complex< dtype > &inValue1, const std::complex< dtype > &inValue2, const std::complex< dtype > &inEpsilon) noexcept']]], - ['euler_33',['euler',['../classnc_1_1coordinates_1_1_euler.html#a784c9fb6d05298ffbb4c8b3e9c36a6e8',1,'nc::coordinates::Euler::Euler(const Euler &other) noexcept=default'],['../classnc_1_1coordinates_1_1_euler.html#a5a356e03dcdb4cf04726deeb6fb2a30f',1,'nc::coordinates::Euler::Euler() noexcept=default'],['../classnc_1_1coordinates_1_1_euler.html#af6496ef339682a7373274b5d786c046a',1,'nc::coordinates::Euler::Euler(double inPsi, double inTheta, double inPhi) noexcept'],['../classnc_1_1coordinates_1_1_euler.html#ac9d5e3dfbfb276d3596c21ccd60f07ed',1,'nc::coordinates::Euler::Euler(Euler &&other) noexcept=default']]], - ['eulerangles_34',['eulerangles',['../classnc_1_1rotations_1_1_d_c_m.html#a06a1a09ec0bb27c45690afbc08d22f50',1,'nc::rotations::DCM::eulerAngles(const NdArray< double > &angles)'],['../classnc_1_1rotations_1_1_d_c_m.html#afede4ed689a9771968945857c7cd0c1d',1,'nc::rotations::DCM::eulerAngles(double roll, double pitch, double yaw)']]], - ['euleraxisangle_35',['euleraxisangle',['../classnc_1_1rotations_1_1_d_c_m.html#a06b61d863ede73a445a5fb6b5a0673a2',1,'nc::rotations::DCM::eulerAxisAngle(const Vec3 &inAxis, double inAngle)'],['../classnc_1_1rotations_1_1_d_c_m.html#ab72e3514a6022ebea6e63030eb0d2418',1,'nc::rotations::DCM::eulerAxisAngle(const NdArray< double > &inAxis, double inAngle)']]], - ['eval_36',['eval',['../classnc_1_1polynomial_1_1_poly1d.html#a881a194909e80712919e961452a61f8f',1,'nc::polynomial::Poly1d::eval(const NdArray< dtype > &xValues) const noexcept'],['../classnc_1_1polynomial_1_1_poly1d.html#a2fb68aababcddb6da10c9b1ffc29f727',1,'nc::polynomial::Poly1d::eval(dtype xValue) const noexcept']]], - ['exp_37',['exp',['../namespacenc.html#a4069791fefff15148813bbbbadf064b1',1,'nc::exp(const NdArray< dtype > &inArray)'],['../namespacenc.html#ad7e555d480465930a7ac44f4ab39eea7',1,'nc::exp(dtype inValue) noexcept']]], - ['exp2_38',['exp2',['../namespacenc.html#aafbab1d2bd67c753fb1656e037bd8b1d',1,'nc::exp2(dtype inValue) noexcept'],['../namespacenc.html#a0595c87603ad5c35ddc78eab15148db7',1,'nc::exp2(const NdArray< dtype > &inArray)']]], - ['expint_39',['expint',['../namespacenc_1_1special.html#a23097c9d953be37f1399154274ba2ff1',1,'nc::special::expint(dtype inX)'],['../namespacenc_1_1special.html#a98e6e3ad00faf7aef9f90e1c187f49b0',1,'nc::special::expint(const NdArray< dtype > &inArrayX)']]], - ['expm1_40',['expm1',['../namespacenc.html#a1f8b7ba3bb64b868fc41508d6912afab',1,'nc::expm1(dtype inValue) noexcept'],['../namespacenc.html#ac1e31d2bff523a5936799445f16d11af',1,'nc::expm1(const NdArray< dtype > &inArray)']]], - ['exponential_41',['exponential',['../classnc_1_1random_1_1_r_n_g.html#ae7df952d6e30b7b3e74c53c7e30ef388',1,'nc::random::RNG::exponential()'],['../namespacenc_1_1random.html#ac9e91a01188c8bdbb5c6a6ef9eba8ff0',1,'nc::random::exponential(const Shape &inShape, dtype inScaleValue=1)'],['../namespacenc_1_1random.html#a278212d1b177cb2bba47215d083bb10f',1,'nc::random::exponential(dtype inScaleValue=1)'],['../namespacenc_1_1random_1_1detail.html#a8a32f909feccd6758fdaf83e9165a9e1',1,'nc::random::detail::exponential(GeneratorType &generator, const Shape &inShape, dtype inScaleValue=1)'],['../namespacenc_1_1random_1_1detail.html#af48797ccfc3ba95d300bc8b2ee6985ab',1,'nc::random::detail::exponential(GeneratorType &generator, dtype inScaleValue=1)'],['../classnc_1_1random_1_1_r_n_g.html#a7a8cf1c4f63f4c5c2a378dda89ff2203',1,'nc::random::RNG::exponential()']]], - ['extract_42',['extract',['../namespacenc.html#ab8bb2c211c6492e27e11cb071df6ea2c',1,'nc']]], - ['extractdata_43',['extractData',['../namespacenc_1_1edac_1_1detail.html#a38252e9565b5419af3453ca10754f25e',1,'nc::edac::detail']]], - ['extremevalue_44',['extremevalue',['../classnc_1_1random_1_1_r_n_g.html#a7bc35c4f5072b85f250e179b3b0204f2',1,'nc::random::RNG::extremeValue()'],['../namespacenc_1_1random.html#ac98ea131ff7d46c66fb80701edaca7ae',1,'nc::random::extremeValue(const Shape &inShape, dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#a11144426dec05283d6c682e0e532af7e',1,'nc::random::extremeValue(dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random_1_1detail.html#a1bb8e952d9b4026dc2061dce2600d2b9',1,'nc::random::detail::extremeValue(GeneratorType &generator, const Shape &inShape, dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random_1_1detail.html#abfdd56b9db1a4153d36b9fe09c00e143',1,'nc::random::detail::extremeValue(GeneratorType &generator, dtype inA=1, dtype inB=1)'],['../classnc_1_1random_1_1_r_n_g.html#aea082fd631056fa79f07290db7f83632',1,'nc::random::RNG::extremeValue()']]], - ['eye_45',['eye',['../namespacenc.html#ab97edf38a4c2d559a5e8824c69b3562a',1,'nc::eye(uint32 inN, uint32 inM, int32 inK=0)'],['../namespacenc.html#af94ba88bfd5bddaa20e562f000898918',1,'nc::eye(uint32 inN, int32 inK=0)'],['../namespacenc.html#a3c4b6aeeda66831808f80029011f48a7',1,'nc::eye(const Shape &inShape, int32 inK=0)']]] + ['eig_9',['eig',['../namespacenc_1_1linalg.html#a1b037ada059b1292a794e6ffb1823a05',1,'nc::linalg']]], + ['eigvals_10',['eigvals',['../namespacenc_1_1linalg.html#a2853cd2015993be7a86f9ba823601ca6',1,'nc::linalg']]], + ['ellint_5f1_11',['ellint_1',['../namespacenc_1_1special.html#a0198bebbecba53e96b36d270be457490',1,'nc::special::ellint_1(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayP)'],['../namespacenc_1_1special.html#aa7fd769db69bde9583f039306c011816',1,'nc::special::ellint_1(dtype1 inK, dtype2 inP)']]], + ['ellint_5f2_12',['ellint_2',['../namespacenc_1_1special.html#a920986b87a9c40529343491bebdadfe0',1,'nc::special::ellint_2(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayP)'],['../namespacenc_1_1special.html#ab9c4568493afa63db21d5b88f3c2a82d',1,'nc::special::ellint_2(dtype1 inK, dtype2 inP)']]], + ['ellint_5f3_13',['ellint_3',['../namespacenc_1_1special.html#aaf7e9aa3cce2502f67735c787588a2eb',1,'nc::special::ellint_3(dtype1 inK, dtype2 inV, dtype3 inP)'],['../namespacenc_1_1special.html#ab04eafe87336f4206d63b804dc8653ca',1,'nc::special::ellint_3(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayV, const NdArray< dtype3 > &inArrayP)']]], + ['empty_14',['empty',['../namespacenc.html#a3012780ddd20c705d9cff13bac986eff',1,'nc::empty(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a97dd73bece2058ce18e59eb2df095042',1,'nc::empty(const Shape &inShape)']]], + ['empty_5flike_15',['empty_like',['../namespacenc.html#a875e297baf1d0f1ae229b4342bad8f04',1,'nc']]], + ['enable_16',['enable',['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#afb999d453f7b893f479337922bf80c9b',1,'nc::logger::detail::BinaryDataLogger']]], + ['encode_17',['encode',['../namespacenc_1_1edac.html#af5c36a1f2c74d632192cf9fe29cc5f03',1,'nc::edac']]], + ['end_18',['end',['../classnc_1_1image_processing_1_1_cluster_maker.html#a7d5ceccddb2db3b143c772ec9d66460a',1,'nc::imageProcessing::ClusterMaker::end()'],['../classnc_1_1_nd_array.html#a546c8b9de00188fab35a6c5075147cc1',1,'nc::NdArray::end(size_type inRow) const'],['../classnc_1_1_nd_array.html#a635448f7b5d598e3a978d2c2e62d7727',1,'nc::NdArray::end() const noexcept'],['../classnc_1_1_nd_array.html#a229701da7e9b386f5a58e5f1dc00bb73',1,'nc::NdArray::end(size_type inRow)'],['../classnc_1_1_data_cube.html#a9aeac78f9aec9b69b9673c1e56778b1b',1,'nc::DataCube::end()'],['../classnc_1_1_nd_array.html#a153d3032d72c24d233407a351d0f8174',1,'nc::NdArray::end()'],['../classnc_1_1image_processing_1_1_cluster.html#afc8b5d168cf1d611be9f5226ec7efd55',1,'nc::imageProcessing::Cluster::end()'],['../classnc_1_1_data_cube.html#acc46d9e618309bbc5cfd5af56dd9e977',1,'nc::DataCube::end()']]], + ['endianess_19',['endianess',['../namespacenc.html#a6d1bce5e0cf3f24f84a50b945eec7a26',1,'nc::endianess()'],['../classnc_1_1_nd_array.html#a349b83beffbfb0a631799f921f13f7ad',1,'nc::NdArray::endianess()']]], + ['enu_20',['enu',['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#acff77c0afc8bd138dca98859d43f82a4',1,'nc::coordinates::reference_frames::ENU::ENU(double east, double north, double up) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_e_n_u.html#ac3efcb3adec07253d12d8b95c9c36b1a',1,'nc::coordinates::reference_frames::ENU::ENU(const Cartesian &cartesian) noexcept']]], + ['enurollpitchyawtoecefeuler_21',['ENURollPitchYawToECEFEuler',['../namespacenc_1_1coordinates_1_1transforms.html#ae1054b00ea5f197ce81ee256a749a8ad',1,'nc::coordinates::transforms']]], + ['enutoaer_22',['ENUtoAER',['../namespacenc_1_1coordinates_1_1transforms.html#a257ae22ee98cca9d16df59ff8b17cb54',1,'nc::coordinates::transforms']]], + ['enutoecef_23',['enutoecef',['../namespacenc_1_1coordinates_1_1transforms.html#aad4854fa54a5452ea763d632bfe3ebf0',1,'nc::coordinates::transforms::ENUtoECEF(const reference_frames::ENU &target, const reference_frames::ECEF &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a856dc06d3e1ebd1482d59f299574b0b0',1,'nc::coordinates::transforms::ENUtoECEF(const reference_frames::ENU &target, const reference_frames::LLA &referencePoint) noexcept']]], + ['enutolla_24',['enutolla',['../namespacenc_1_1coordinates_1_1transforms.html#a3fc106e20ec851e48602ff7a002a04cc',1,'nc::coordinates::transforms::ENUtoLLA(const reference_frames::ENU &target, const reference_frames::ECEF &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a2a9677cf3a4e80da17cf254e5df063ca',1,'nc::coordinates::transforms::ENUtoLLA(const reference_frames::ENU &target, const reference_frames::LLA &referencePoint) noexcept']]], + ['enutoned_25',['ENUtoNED',['../namespacenc_1_1coordinates_1_1transforms.html#aa60ec3d43951a07db58ff93de763fdac',1,'nc::coordinates::transforms']]], + ['enuunitvecsinecef_26',['ENUUnitVecsInECEF',['../namespacenc_1_1coordinates_1_1transforms.html#ac406cc673797cf81dab387ef5d802931',1,'nc::coordinates::transforms']]], + ['eod_27',['eod',['../classnc_1_1image_processing_1_1_centroid.html#a098ee235ea6fcf22df2a7a0d80d53e44',1,'nc::imageProcessing::Centroid::eod()'],['../classnc_1_1image_processing_1_1_cluster.html#a461863af036452bdb1813dfff33c7c42',1,'nc::imageProcessing::Cluster::eod()']]], + ['epsilon_28',['epsilon',['../classnc_1_1_dtype_info.html#a845cc6986a3912805ab68960bc2b2318',1,'nc::DtypeInfo::epsilon()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac117779d9768d1ba6093ef25b0fc294c',1,'nc::DtypeInfo< std::complex< dtype > >::epsilon()']]], + ['equal_29',['equal',['../namespacenc_1_1stl__algorithms.html#a684d1011b375da4078afb4474a36b0e6',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2, BinaryPredicate p) noexcept'],['../namespacenc_1_1stl__algorithms.html#ab200b92040bf3da8ee4325f5a994e73d',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2) noexcept'],['../namespacenc.html#a6891660e45d9f047bfc3a4625f4a255d',1,'nc::equal()']]], + ['erf_30',['erf',['../namespacenc_1_1special.html#a8b2da132f8a6d86ea0bcce34819d1833',1,'nc::special::erf(dtype inValue)'],['../namespacenc_1_1special.html#a5b7ac05949538787c3fdec373cb05126',1,'nc::special::erf(const NdArray< dtype > &inArray)']]], + ['erf_5finv_31',['erf_inv',['../namespacenc_1_1special.html#a0f66785ec1e2643dd4c932ff7cae61a4',1,'nc::special::erf_inv(dtype inValue)'],['../namespacenc_1_1special.html#abab69146b99ff384c6de4a24da69a780',1,'nc::special::erf_inv(const NdArray< dtype > &inArray)']]], + ['erfc_32',['erfc',['../namespacenc_1_1special.html#a1673dca59c73c85eedf077fb62aab5d7',1,'nc::special::erfc(dtype inValue)'],['../namespacenc_1_1special.html#a8671b7ab0e06230889f4a0cf417a248f',1,'nc::special::erfc(const NdArray< dtype > &inArray)']]], + ['erfc_5finv_33',['erfc_inv',['../namespacenc_1_1special.html#a653404a544d777c6d7d636a207ee7bca',1,'nc::special::erfc_inv(dtype inValue)'],['../namespacenc_1_1special.html#a3c9551b639e79ce3024fef298f4ace8c',1,'nc::special::erfc_inv(const NdArray< dtype > &inArray)']]], + ['essentiallyequal_34',['essentiallyequal',['../namespacenc_1_1utils.html#a963b90e7c9a3b057a924298750ddf74c',1,'nc::utils::essentiallyEqual(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc_1_1utils.html#aedd8afd691cf9f5a8f8e12c9ca33743a',1,'nc::utils::essentiallyEqual(dtype inValue1, dtype inValue2, dtype inEpsilon) noexcept'],['../namespacenc_1_1utils.html#a139da62fc9c51ae191e7451bb4edb706',1,'nc::utils::essentiallyEqual(const std::complex< dtype > &inValue1, const std::complex< dtype > &inValue2) noexcept'],['../namespacenc_1_1utils.html#a7e935ef90aaa774b37e6ab4b5316e01f',1,'nc::utils::essentiallyEqual(const std::complex< dtype > &inValue1, const std::complex< dtype > &inValue2, const std::complex< dtype > &inEpsilon) noexcept']]], + ['euler_35',['euler',['../classnc_1_1coordinates_1_1_euler.html#a784c9fb6d05298ffbb4c8b3e9c36a6e8',1,'nc::coordinates::Euler::Euler(const Euler &other) noexcept=default'],['../classnc_1_1coordinates_1_1_euler.html#a5a356e03dcdb4cf04726deeb6fb2a30f',1,'nc::coordinates::Euler::Euler() noexcept=default'],['../classnc_1_1coordinates_1_1_euler.html#af6496ef339682a7373274b5d786c046a',1,'nc::coordinates::Euler::Euler(double inPsi, double inTheta, double inPhi) noexcept'],['../classnc_1_1coordinates_1_1_euler.html#ac9d5e3dfbfb276d3596c21ccd60f07ed',1,'nc::coordinates::Euler::Euler(Euler &&other) noexcept=default']]], + ['eulerangles_36',['eulerangles',['../classnc_1_1rotations_1_1_d_c_m.html#a06a1a09ec0bb27c45690afbc08d22f50',1,'nc::rotations::DCM::eulerAngles(const NdArray< double > &angles)'],['../classnc_1_1rotations_1_1_d_c_m.html#afede4ed689a9771968945857c7cd0c1d',1,'nc::rotations::DCM::eulerAngles(double roll, double pitch, double yaw)']]], + ['euleraxisangle_37',['euleraxisangle',['../classnc_1_1rotations_1_1_d_c_m.html#a06b61d863ede73a445a5fb6b5a0673a2',1,'nc::rotations::DCM::eulerAxisAngle(const Vec3 &inAxis, double inAngle)'],['../classnc_1_1rotations_1_1_d_c_m.html#ab72e3514a6022ebea6e63030eb0d2418',1,'nc::rotations::DCM::eulerAxisAngle(const NdArray< double > &inAxis, double inAngle)']]], + ['eval_38',['eval',['../classnc_1_1polynomial_1_1_poly1d.html#a881a194909e80712919e961452a61f8f',1,'nc::polynomial::Poly1d::eval(const NdArray< dtype > &xValues) const noexcept'],['../classnc_1_1polynomial_1_1_poly1d.html#a2fb68aababcddb6da10c9b1ffc29f727',1,'nc::polynomial::Poly1d::eval(dtype xValue) const noexcept']]], + ['exp_39',['exp',['../namespacenc.html#a4069791fefff15148813bbbbadf064b1',1,'nc::exp(const NdArray< dtype > &inArray)'],['../namespacenc.html#ad7e555d480465930a7ac44f4ab39eea7',1,'nc::exp(dtype inValue) noexcept']]], + ['exp2_40',['exp2',['../namespacenc.html#aafbab1d2bd67c753fb1656e037bd8b1d',1,'nc::exp2(dtype inValue) noexcept'],['../namespacenc.html#a0595c87603ad5c35ddc78eab15148db7',1,'nc::exp2(const NdArray< dtype > &inArray)']]], + ['expint_41',['expint',['../namespacenc_1_1special.html#a23097c9d953be37f1399154274ba2ff1',1,'nc::special::expint(dtype inX)'],['../namespacenc_1_1special.html#a98e6e3ad00faf7aef9f90e1c187f49b0',1,'nc::special::expint(const NdArray< dtype > &inArrayX)']]], + ['expm1_42',['expm1',['../namespacenc.html#a1f8b7ba3bb64b868fc41508d6912afab',1,'nc::expm1(dtype inValue) noexcept'],['../namespacenc.html#ac1e31d2bff523a5936799445f16d11af',1,'nc::expm1(const NdArray< dtype > &inArray)']]], + ['exponential_43',['exponential',['../classnc_1_1random_1_1_r_n_g.html#ae7df952d6e30b7b3e74c53c7e30ef388',1,'nc::random::RNG::exponential()'],['../namespacenc_1_1random.html#ac9e91a01188c8bdbb5c6a6ef9eba8ff0',1,'nc::random::exponential(const Shape &inShape, dtype inScaleValue=1)'],['../namespacenc_1_1random.html#a278212d1b177cb2bba47215d083bb10f',1,'nc::random::exponential(dtype inScaleValue=1)'],['../namespacenc_1_1random_1_1detail.html#a8a32f909feccd6758fdaf83e9165a9e1',1,'nc::random::detail::exponential(GeneratorType &generator, const Shape &inShape, dtype inScaleValue=1)'],['../namespacenc_1_1random_1_1detail.html#af48797ccfc3ba95d300bc8b2ee6985ab',1,'nc::random::detail::exponential(GeneratorType &generator, dtype inScaleValue=1)'],['../classnc_1_1random_1_1_r_n_g.html#a7a8cf1c4f63f4c5c2a378dda89ff2203',1,'nc::random::RNG::exponential()']]], + ['extract_44',['extract',['../namespacenc.html#ab8bb2c211c6492e27e11cb071df6ea2c',1,'nc']]], + ['extractdata_45',['extractData',['../namespacenc_1_1edac_1_1detail.html#a38252e9565b5419af3453ca10754f25e',1,'nc::edac::detail']]], + ['extremevalue_46',['extremevalue',['../classnc_1_1random_1_1_r_n_g.html#a7bc35c4f5072b85f250e179b3b0204f2',1,'nc::random::RNG::extremeValue()'],['../namespacenc_1_1random.html#ac98ea131ff7d46c66fb80701edaca7ae',1,'nc::random::extremeValue(const Shape &inShape, dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#a11144426dec05283d6c682e0e532af7e',1,'nc::random::extremeValue(dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random_1_1detail.html#a1bb8e952d9b4026dc2061dce2600d2b9',1,'nc::random::detail::extremeValue(GeneratorType &generator, const Shape &inShape, dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random_1_1detail.html#abfdd56b9db1a4153d36b9fe09c00e143',1,'nc::random::detail::extremeValue(GeneratorType &generator, dtype inA=1, dtype inB=1)'],['../classnc_1_1random_1_1_r_n_g.html#aea082fd631056fa79f07290db7f83632',1,'nc::random::RNG::extremeValue()']]], + ['eye_47',['eye',['../namespacenc.html#ab97edf38a4c2d559a5e8824c69b3562a',1,'nc::eye(uint32 inN, uint32 inM, int32 inK=0)'],['../namespacenc.html#af94ba88bfd5bddaa20e562f000898918',1,'nc::eye(uint32 inN, int32 inK=0)'],['../namespacenc.html#a3c4b6aeeda66831808f80029011f48a7',1,'nc::eye(const Shape &inShape, int32 inK=0)']]] ]; diff --git a/docs/doxygen/html/search/functions_b.js b/docs/doxygen/html/search/functions_b.js index f073bfc1a..882b3a07e 100644 --- a/docs/doxygen/html/search/functions_b.js +++ b/docs/doxygen/html/search/functions_b.js @@ -4,25 +4,25 @@ var searchData= ['laplace_1',['laplace',['../classnc_1_1random_1_1_r_n_g.html#ab5ba9d32c4d0ef34396b3535f97bc19e',1,'nc::random::RNG::laplace()'],['../namespacenc_1_1random.html#a036596445e7750eca42107e1326e3179',1,'nc::random::laplace(const Shape &inShape, dtype inLoc=0, dtype inScale=1)'],['../namespacenc_1_1random.html#a76e5b2a6feb9bf6a05c5dd9402f9c62f',1,'nc::random::laplace(dtype inLoc=0, dtype inScale=1)'],['../namespacenc_1_1random_1_1detail.html#aa164dc81c9c5d2979cdd15dca77b5f99',1,'nc::random::detail::laplace(GeneratorType &generator, const Shape &inShape, dtype inLoc=0, dtype inScale=1)'],['../namespacenc_1_1random_1_1detail.html#a8a89c0636f8f79583ea5b752b2af6276',1,'nc::random::detail::laplace(GeneratorType &generator, dtype inLoc=0, dtype inScale=1)'],['../namespacenc_1_1filter.html#a03fcb2476bd35393869fb23167566f10',1,'nc::filter::laplace()'],['../classnc_1_1random_1_1_r_n_g.html#ab4c52249d04f6d8ee215e4067b0ba3cb',1,'nc::random::RNG::laplace()']]], ['lcm_2',['lcm',['../namespacenc.html#aa69cf791720987deb546d71057a668a1',1,'nc::lcm(const NdArray< dtype > &inArray)'],['../namespacenc.html#a7ffd0c15b8419a5d84458d4009b38b88',1,'nc::lcm(dtype inValue1, dtype inValue2) noexcept']]], ['ldexp_3',['ldexp',['../namespacenc.html#af63d2ed4015f416db1734593d322941a',1,'nc::ldexp(const NdArray< dtype > &inArray1, const NdArray< uint8 > &inArray2)'],['../namespacenc.html#aca805ef0273314ddc6c70b2c913bf485',1,'nc::ldexp(dtype inValue1, uint8 inValue2) noexcept']]], - ['left_4',['left',['../classnc_1_1_vec3.html#a7e6730d945972ecda1815c1d41f5074c',1,'nc::Vec3::left()'],['../classnc_1_1_vec2.html#ade3f4342726264a1493f91ae80ab24ca',1,'nc::Vec2::left()']]], + ['left_4',['left',['../classnc_1_1_vec2.html#ade3f4342726264a1493f91ae80ab24ca',1,'nc::Vec2::left()'],['../classnc_1_1_vec3.html#a7e6730d945972ecda1815c1d41f5074c',1,'nc::Vec3::left()']]], ['left_5fshift_5',['left_shift',['../namespacenc.html#abeea32ab9bfa1e127ceb91c0538d6cb6',1,'nc']]], - ['legendre_5fp_6',['legendre_p',['../namespacenc_1_1polynomial.html#a6a68bde646dae6ffb484502d54e5c175',1,'nc::polynomial::legendre_p(uint32 m, uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#a9969335ebe0c26ff10af77007fcce5bc',1,'nc::polynomial::legendre_p(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a8ff11a959ecbfc4caf01f35cbc87420a',1,'nc::polynomial::legendre_p(uint32 m, uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a567bdffcff63421b77a9dfae9cbdfc8a',1,'nc::polynomial::legendre_p(uint32 n, dtype x)']]], + ['legendre_5fp_6',['legendre_p',['../namespacenc_1_1polynomial.html#a6a68bde646dae6ffb484502d54e5c175',1,'nc::polynomial::legendre_p(uint32 m, uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#a567bdffcff63421b77a9dfae9cbdfc8a',1,'nc::polynomial::legendre_p(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#a9969335ebe0c26ff10af77007fcce5bc',1,'nc::polynomial::legendre_p(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a8ff11a959ecbfc4caf01f35cbc87420a',1,'nc::polynomial::legendre_p(uint32 m, uint32 n, const NdArray< dtype > &inArrayX)']]], ['legendre_5fq_7',['legendre_q',['../namespacenc_1_1polynomial.html#a78897e159974d6732b77759be2f2da13',1,'nc::polynomial::legendre_q(int32 n, dtype x)'],['../namespacenc_1_1polynomial.html#a00bc3047baef4182addac153f2b2c1a9',1,'nc::polynomial::legendre_q(int32 n, const NdArray< dtype > &inArrayX)']]], ['legendrepolynomial_8',['LegendrePolynomial',['../classnc_1_1integrate_1_1_legendre_polynomial.html#a2e1fefae138e66215cd7586a85fc3642',1,'nc::integrate::LegendrePolynomial']]], ['lerp_9',['lerp',['../classnc_1_1_vec2.html#a91e6417e5b9903ed6bee3ad90c0c38f4',1,'nc::Vec2::lerp()'],['../classnc_1_1_vec3.html#ab4878c8a4ebcd94fd0baf93059b50ac6',1,'nc::Vec3::lerp()']]], ['less_10',['less',['../namespacenc.html#a214ff1cf329d515457a611f0be8e9bd8',1,'nc']]], ['less_5fequal_11',['less_equal',['../namespacenc.html#a052d0b4471adf86a70d91430ccb4873d',1,'nc']]], ['linspace_12',['linspace',['../namespacenc.html#a6d8333f2bb5e655f0317644d61fab51b',1,'nc']]], - ['lla_13',['lla',['../classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#abe5c2e910419324b41862110a7c9b890',1,'nc::coordinates::reference_frames::LLA::LLA()=default'],['../classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a35500711d2769b513e7ecef2d3e20c9c',1,'nc::coordinates::reference_frames::LLA::LLA(double inLatitude, double inLongitude, double inAltitude=0.) noexcept']]], + ['lla_13',['lla',['../classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#a35500711d2769b513e7ecef2d3e20c9c',1,'nc::coordinates::reference_frames::LLA::LLA(double inLatitude, double inLongitude, double inAltitude=0.) noexcept'],['../classnc_1_1coordinates_1_1reference__frames_1_1_l_l_a.html#abe5c2e910419324b41862110a7c9b890',1,'nc::coordinates::reference_frames::LLA::LLA()=default']]], ['llatoaer_14',['llatoaer',['../namespacenc_1_1coordinates_1_1transforms.html#a867f4c21fe56499e38b7217eba8caf85',1,'nc::coordinates::transforms::LLAtoAER(const reference_frames::LLA &target, const reference_frames::LLA &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a2417d189ebd29bd97d04ec85593cbc9a',1,'nc::coordinates::transforms::LLAtoAER(const reference_frames::LLA &target, const reference_frames::ECEF &referencePoint) noexcept']]], ['llatoecef_15',['LLAtoECEF',['../namespacenc_1_1coordinates_1_1transforms.html#a4534f88d7138f27edf20f951aac05970',1,'nc::coordinates::transforms']]], ['llatoenu_16',['llatoenu',['../namespacenc_1_1coordinates_1_1transforms.html#aac1bcca3fce0215d67f3a4438424d8c7',1,'nc::coordinates::transforms::LLAtoENU(const reference_frames::LLA &target, const reference_frames::LLA &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a404d07a49fdffc55d2410b8d3a332a25',1,'nc::coordinates::transforms::LLAtoENU(const reference_frames::LLA &target, const reference_frames::ECEF &referencePoint) noexcept']]], ['llatogeocentric_17',['LLAtoGeocentric',['../namespacenc_1_1coordinates_1_1transforms.html#ab018d57e2605ae4cfe9378b9f47ec70c',1,'nc::coordinates::transforms']]], - ['llatoned_18',['llatoned',['../namespacenc_1_1coordinates_1_1transforms.html#a33dd1e62142d1d57ceb2442bd95c68ed',1,'nc::coordinates::transforms::LLAtoNED(const reference_frames::LLA &target, const reference_frames::LLA &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a7acecbc1257ad0960f90b0ab7754e287',1,'nc::coordinates::transforms::LLAtoNED(const reference_frames::LLA &target, const reference_frames::ECEF &referencePoint) noexcept']]], + ['llatoned_18',['llatoned',['../namespacenc_1_1coordinates_1_1transforms.html#a7acecbc1257ad0960f90b0ab7754e287',1,'nc::coordinates::transforms::LLAtoNED(const reference_frames::LLA &target, const reference_frames::ECEF &referencePoint) noexcept'],['../namespacenc_1_1coordinates_1_1transforms.html#a33dd1e62142d1d57ceb2442bd95c68ed',1,'nc::coordinates::transforms::LLAtoNED(const reference_frames::LLA &target, const reference_frames::LLA &referencePoint) noexcept']]], ['load_19',['load',['../namespacenc.html#ad6129b92b4e017a4ca772a59b43960e8',1,'nc']]], - ['log_20',['log',['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae5dc8913ba9d11738f57dbf9a21189d1',1,'nc::logger::detail::BinaryDataLogger::log(const_pointer dataElements, std::size_t numElements)'],['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a3aca7ed321528ee82085970a7b15887c',1,'nc::logger::detail::BinaryDataLogger::log(const_reference dataElement)'],['../namespacenc.html#a3f08d373ae167ac90d3bb6b6c4da0fb9',1,'nc::log(dtype inValue) noexcept'],['../namespacenc.html#aba925957229bf54bfe854be197cd3d52',1,'nc::log(const NdArray< dtype > &inArray)']]], + ['log_20',['log',['../namespacenc.html#a3f08d373ae167ac90d3bb6b6c4da0fb9',1,'nc::log()'],['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#a3aca7ed321528ee82085970a7b15887c',1,'nc::logger::detail::BinaryDataLogger::log(const_reference dataElement)'],['../classnc_1_1logger_1_1detail_1_1_binary_data_logger.html#ae5dc8913ba9d11738f57dbf9a21189d1',1,'nc::logger::detail::BinaryDataLogger::log(const_pointer dataElements, std::size_t numElements)'],['../namespacenc.html#aba925957229bf54bfe854be197cd3d52',1,'nc::log(const NdArray< dtype > &inArray)']]], ['log10_21',['log10',['../namespacenc.html#a0d8a5ffeaed868463a6e55645c625c8f',1,'nc::log10(dtype inValue) noexcept'],['../namespacenc.html#a3cd82f65b6ee069a7d6443646dfecf67',1,'nc::log10(const NdArray< dtype > &inArray)']]], - ['log1p_22',['log1p',['../namespacenc.html#a1ae30700a2db1cd8e44fa59b84c2b547',1,'nc::log1p(const NdArray< dtype > &inArray)'],['../namespacenc.html#a5abcc8523a49a47fd2224d5588f128b4',1,'nc::log1p(dtype inValue) noexcept']]], + ['log1p_22',['log1p',['../namespacenc.html#a5abcc8523a49a47fd2224d5588f128b4',1,'nc::log1p(dtype inValue) noexcept'],['../namespacenc.html#a1ae30700a2db1cd8e44fa59b84c2b547',1,'nc::log1p(const NdArray< dtype > &inArray)']]], ['log2_23',['log2',['../namespacenc.html#a48cbc16dc706678b6f85e655e935cd41',1,'nc::log2(dtype inValue) noexcept'],['../namespacenc.html#a536e5046481a32bd6955a222f323393a',1,'nc::log2(const NdArray< dtype > &inArray)']]], ['log_5fgamma_24',['log_gamma',['../namespacenc_1_1special.html#a11ec3d4677a53eafd8b0144cd6e42ce3',1,'nc::special::log_gamma(dtype inValue)'],['../namespacenc_1_1special.html#addebe777849a11f027a793975a53b653',1,'nc::special::log_gamma(const NdArray< dtype > &inArray)']]], ['logaddexp_25',['logaddexp',['../namespacenc.html#a7de2328d3bd73c573be949fed7c9057a',1,'nc::logaddexp(dtype x1, dtype x2) noexcept'],['../namespacenc.html#ac60d3d4fe17610d6a44540167505c501',1,'nc::logaddexp(const NdArray< dtype > &x1, const NdArray< dtype > &x2)']]], @@ -32,8 +32,8 @@ var searchData= ['logical_5fnot_29',['logical_not',['../namespacenc.html#a63cf55809c7f46ece3106108a65f8e3a',1,'nc']]], ['logical_5for_30',['logical_or',['../namespacenc.html#a62d069e9c46eda68c15946a3fa74b1ab',1,'nc']]], ['logical_5fxor_31',['logical_xor',['../namespacenc.html#aae5c773c4e480fc760781013a8def13d',1,'nc']]], - ['lognormal_32',['lognormal',['../classnc_1_1random_1_1_r_n_g.html#a3a65dc0a17943c15f87769e1d5d45b8c',1,'nc::random::RNG::lognormal()'],['../namespacenc_1_1random.html#a03d5528a3a97b3731210ba2cc5d1c75d',1,'nc::random::lognormal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a4373dc28e42b40a6d65accb8c5f5248e',1,'nc::random::lognormal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random_1_1detail.html#aa4810e51158c9385d80b93230b92a043',1,'nc::random::detail::lognormal(GeneratorType &generator, const Shape &inShape, dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random_1_1detail.html#aefb6e46b202083c2a279a8ae009af02c',1,'nc::random::detail::lognormal(GeneratorType &generator, dtype inMean=0, dtype inSigma=1)'],['../classnc_1_1random_1_1_r_n_g.html#a31c17ed48b3d97e4888bbbd2d56c5243',1,'nc::random::RNG::lognormal()']]], + ['lognormal_32',['lognormal',['../classnc_1_1random_1_1_r_n_g.html#a31c17ed48b3d97e4888bbbd2d56c5243',1,'nc::random::RNG::lognormal()'],['../namespacenc_1_1random_1_1detail.html#aa4810e51158c9385d80b93230b92a043',1,'nc::random::detail::lognormal()'],['../namespacenc_1_1random.html#a03d5528a3a97b3731210ba2cc5d1c75d',1,'nc::random::lognormal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a4373dc28e42b40a6d65accb8c5f5248e',1,'nc::random::lognormal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random_1_1detail.html#aefb6e46b202083c2a279a8ae009af02c',1,'nc::random::detail::lognormal()'],['../classnc_1_1random_1_1_r_n_g.html#a3a65dc0a17943c15f87769e1d5d45b8c',1,'nc::random::RNG::lognormal()']]], ['logspace_33',['logspace',['../namespacenc.html#af30d297f088e3b9356cdba5cb76e70cc',1,'nc']]], - ['lstsq_34',['lstsq',['../namespacenc_1_1linalg.html#a8baf25f50874e4bd27d2644a2730fb03',1,'nc::linalg']]], + ['lstsq_34',['lstsq',['../classnc_1_1linalg_1_1_s_v_d.html#ac242186475a35804492d717f933024bd',1,'nc::linalg::SVD::lstsq()'],['../namespacenc_1_1linalg.html#af96af1e6e215b975a74f12949b5f0b46',1,'nc::linalg::lstsq(const NdArray< dtype > &inA, const NdArray< dtype > &inB)']]], ['lu_5fdecomposition_35',['lu_decomposition',['../namespacenc_1_1linalg.html#a60e7cebe243cc88b69d508b569456300',1,'nc::linalg']]] ]; diff --git a/docs/doxygen/html/search/functions_f.js b/docs/doxygen/html/search/functions_f.js index 699e07d82..389acb5a7 100644 --- a/docs/doxygen/html/search/functions_f.js +++ b/docs/doxygen/html/search/functions_f.js @@ -9,11 +9,11 @@ var searchData= ['percentilefilter_6',['percentileFilter',['../namespacenc_1_1filter.html#a959517807754ccd63988554eb7898922',1,'nc::filter']]], ['percentilefilter1d_7',['percentileFilter1d',['../namespacenc_1_1filter.html#a9c50b34b16623a2d5dd6eeff52140fc5',1,'nc::filter']]], ['permutation_8',['permutation',['../namespacenc_1_1random.html#aa2ec0842c315e125d50c6af81007a389',1,'nc::random::permutation(const NdArray< dtype > &inArray)'],['../namespacenc_1_1random.html#a89b35742889ecffb90cb6497cd1cb265',1,'nc::random::permutation(dtype inValue)'],['../namespacenc_1_1random_1_1detail.html#a289c78de5afe93abbd471fa493ef2216',1,'nc::random::detail::permutation(GeneratorType &generator, const NdArray< dtype > &inArray)'],['../namespacenc_1_1random_1_1detail.html#a07bf092c354cabb8b995f1f4beb81582',1,'nc::random::detail::permutation(GeneratorType &generator, dtype inValue)'],['../classnc_1_1random_1_1_r_n_g.html#a96bb27d60c7d5241ab503d032d3a1841',1,'nc::random::RNG::permutation(dtype inValue)'],['../classnc_1_1random_1_1_r_n_g.html#a53920102dbb082afdfd4890b73c2aec3',1,'nc::random::RNG::permutation(const NdArray< dtype > &inArray)']]], - ['pinv_9',['pinv',['../namespacenc_1_1linalg.html#a1ab0529b2e6d2bd4668051b8b7dcb85b',1,'nc::linalg']]], + ['pinv_9',['pinv',['../namespacenc_1_1linalg.html#a1ab0529b2e6d2bd4668051b8b7dcb85b',1,'nc::linalg::pinv()'],['../classnc_1_1linalg_1_1_s_v_d.html#a81c5d57cc757e95a3dc48cec03ca80fb',1,'nc::linalg::SVD::pinv()']]], ['pitch_10',['pitch',['../classnc_1_1rotations_1_1_d_c_m.html#a726e1d9c5e2a88dbd7e70b8fc9d55fbf',1,'nc::rotations::DCM::pitch()'],['../classnc_1_1rotations_1_1_quaternion.html#a601b444c8c8f820700844d7ab5f743ba',1,'nc::rotations::Quaternion::pitch() const noexcept']]], ['pitchrotation_11',['pitchRotation',['../classnc_1_1rotations_1_1_quaternion.html#aff32c4f1c065428e8ed31e552a1c8e53',1,'nc::rotations::Quaternion']]], ['pivotlu_5fdecomposition_12',['pivotLU_decomposition',['../namespacenc_1_1linalg.html#a7e29068f07fa422d6c9185a4d91bf6a2',1,'nc::linalg']]], - ['pixel_13',['pixel',['../classnc_1_1image_processing_1_1_pixel.html#a4d1db82b1617d892266270d2bec28f61',1,'nc::imageProcessing::Pixel::Pixel(uint32 inRow, uint32 inCol, dtype inIntensity) noexcept'],['../classnc_1_1image_processing_1_1_pixel.html#a0d7095db72d4478f37d6e371e77509be',1,'nc::imageProcessing::Pixel::Pixel()=default']]], + ['pixel_13',['pixel',['../classnc_1_1image_processing_1_1_pixel.html#a0d7095db72d4478f37d6e371e77509be',1,'nc::imageProcessing::Pixel::Pixel()=default'],['../classnc_1_1image_processing_1_1_pixel.html#a4d1db82b1617d892266270d2bec28f61',1,'nc::imageProcessing::Pixel::Pixel(uint32 inRow, uint32 inCol, dtype inIntensity) noexcept']]], ['place_14',['place',['../namespacenc.html#a171da00c79cfbc9500916b6ac4d3de70',1,'nc']]], ['pnr_15',['pnr',['../namespacenc_1_1special.html#ab52643e0c6a859c47871094023c834b5',1,'nc::special']]], ['poisson_16',['poisson',['../classnc_1_1random_1_1_r_n_g.html#aef31a7b85c359992d6f7e101f991c145',1,'nc::random::RNG::poisson(const Shape &inShape, double inMean=1)'],['../classnc_1_1random_1_1_r_n_g.html#aea354ddc8f6443ee46ab3e77f89a15a3',1,'nc::random::RNG::poisson(double inMean=1)'],['../namespacenc_1_1random_1_1detail.html#a7899dfcd192eda5c8318ebe2f8d5bb41',1,'nc::random::detail::poisson(GeneratorType &generator, double inMean=1)'],['../namespacenc_1_1random_1_1detail.html#a9e402d65304589f2792021f031836430',1,'nc::random::detail::poisson(GeneratorType &generator, const Shape &inShape, double inMean=1)'],['../namespacenc_1_1random.html#ae18029c16ca489ea9db6331c609b20e8',1,'nc::random::poisson(double inMean=1)'],['../namespacenc_1_1random.html#a0818ee6f61baf994f13a513f70fd0840',1,'nc::random::poisson(const Shape &inShape, double inMean=1)']]], diff --git a/docs/doxygen/html/search/variables_f.js b/docs/doxygen/html/search/variables_f.js index afddfee0f..5f4d3fac7 100644 --- a/docs/doxygen/html/search/variables_f.js +++ b/docs/doxygen/html/search/variables_f.js @@ -1,5 +1,6 @@ var searchData= [ ['theta_0',['theta',['../classnc_1_1coordinates_1_1_euler.html#acdcc1795fe468bb026d4da943b50b6a4',1,'nc::coordinates::Euler']]], - ['twopi_1',['twoPi',['../namespacenc_1_1constants.html#ae18e903e208f0017275a35ef9d3f06b5',1,'nc::constants']]] + ['tolerance_1',['TOLERANCE',['../classnc_1_1linalg_1_1_s_v_d.html#a6dd64d76d201318568ce13eb305810fd',1,'nc::linalg::SVD']]], + ['twopi_2',['twoPi',['../namespacenc_1_1constants.html#ae18e903e208f0017275a35ef9d3f06b5',1,'nc::constants']]] ]; diff --git a/docs/doxygen/html/searchsorted_8hpp.html b/docs/doxygen/html/searchsorted_8hpp.html index 0f27dfd90..25a2d79d0 100644 --- a/docs/doxygen/html/searchsorted_8hpp.html +++ b/docs/doxygen/html/searchsorted_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/searchsorted_8hpp_source.html b/docs/doxygen/html/searchsorted_8hpp_source.html index a41384f47..2a15b95e8 100644 --- a/docs/doxygen/html/searchsorted_8hpp_source.html +++ b/docs/doxygen/html/searchsorted_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/select_8hpp.html b/docs/doxygen/html/select_8hpp.html index 5d954721e..af9e4a83a 100644 --- a/docs/doxygen/html/select_8hpp.html +++ b/docs/doxygen/html/select_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/select_8hpp_source.html b/docs/doxygen/html/select_8hpp_source.html index 353581689..729e5ae10 100644 --- a/docs/doxygen/html/select_8hpp_source.html +++ b/docs/doxygen/html/select_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/setdiff1d_8hpp.html b/docs/doxygen/html/setdiff1d_8hpp.html index 704f0d74f..c1bea2e0f 100644 --- a/docs/doxygen/html/setdiff1d_8hpp.html +++ b/docs/doxygen/html/setdiff1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/setdiff1d_8hpp_source.html b/docs/doxygen/html/setdiff1d_8hpp_source.html index 62059e614..8afaf6277 100644 --- a/docs/doxygen/html/setdiff1d_8hpp_source.html +++ b/docs/doxygen/html/setdiff1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/shuffle_8hpp.html b/docs/doxygen/html/shuffle_8hpp.html index e0b39aa34..91bf76721 100644 --- a/docs/doxygen/html/shuffle_8hpp.html +++ b/docs/doxygen/html/shuffle_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/shuffle_8hpp_source.html b/docs/doxygen/html/shuffle_8hpp_source.html index 8d6774d02..00dbf5b4a 100644 --- a/docs/doxygen/html/shuffle_8hpp_source.html +++ b/docs/doxygen/html/shuffle_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sign_8hpp.html b/docs/doxygen/html/sign_8hpp.html index 4b822c871..e2d389aca 100644 --- a/docs/doxygen/html/sign_8hpp.html +++ b/docs/doxygen/html/sign_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sign_8hpp_source.html b/docs/doxygen/html/sign_8hpp_source.html index 688498c4c..6df2cc424 100644 --- a/docs/doxygen/html/sign_8hpp_source.html +++ b/docs/doxygen/html/sign_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/signbit_8hpp.html b/docs/doxygen/html/signbit_8hpp.html index 3c4c36502..616b17c2a 100644 --- a/docs/doxygen/html/signbit_8hpp.html +++ b/docs/doxygen/html/signbit_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/signbit_8hpp_source.html b/docs/doxygen/html/signbit_8hpp_source.html index 4b501a94d..d59f94b3e 100644 --- a/docs/doxygen/html/signbit_8hpp_source.html +++ b/docs/doxygen/html/signbit_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/simpson_8hpp.html b/docs/doxygen/html/simpson_8hpp.html index 31196644b..69fbde3a5 100644 --- a/docs/doxygen/html/simpson_8hpp.html +++ b/docs/doxygen/html/simpson_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/simpson_8hpp_source.html b/docs/doxygen/html/simpson_8hpp_source.html index 8d2441e9d..4eb68dca2 100644 --- a/docs/doxygen/html/simpson_8hpp_source.html +++ b/docs/doxygen/html/simpson_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sin_8hpp.html b/docs/doxygen/html/sin_8hpp.html index 27cb55bc5..17568977b 100644 --- a/docs/doxygen/html/sin_8hpp.html +++ b/docs/doxygen/html/sin_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sin_8hpp_source.html b/docs/doxygen/html/sin_8hpp_source.html index 7cfaab403..21a729982 100644 --- a/docs/doxygen/html/sin_8hpp_source.html +++ b/docs/doxygen/html/sin_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sinc_8hpp.html b/docs/doxygen/html/sinc_8hpp.html index b01fb7dbb..ad80eac04 100644 --- a/docs/doxygen/html/sinc_8hpp.html +++ b/docs/doxygen/html/sinc_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sinc_8hpp_source.html b/docs/doxygen/html/sinc_8hpp_source.html index 0cf8926c2..2f7289bfb 100644 --- a/docs/doxygen/html/sinc_8hpp_source.html +++ b/docs/doxygen/html/sinc_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sinh_8hpp.html b/docs/doxygen/html/sinh_8hpp.html index 39aa5e4a0..81d0f5741 100644 --- a/docs/doxygen/html/sinh_8hpp.html +++ b/docs/doxygen/html/sinh_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sinh_8hpp_source.html b/docs/doxygen/html/sinh_8hpp_source.html index c3e229751..b088cb4f5 100644 --- a/docs/doxygen/html/sinh_8hpp_source.html +++ b/docs/doxygen/html/sinh_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/size_8hpp.html b/docs/doxygen/html/size_8hpp.html index 4c40e9b0a..3970a7f69 100644 --- a/docs/doxygen/html/size_8hpp.html +++ b/docs/doxygen/html/size_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/size_8hpp_source.html b/docs/doxygen/html/size_8hpp_source.html index 0ec3874c3..e9ee18d45 100644 --- a/docs/doxygen/html/size_8hpp_source.html +++ b/docs/doxygen/html/size_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/softmax_8hpp.html b/docs/doxygen/html/softmax_8hpp.html index 3a5b9a517..669b4bb0c 100644 --- a/docs/doxygen/html/softmax_8hpp.html +++ b/docs/doxygen/html/softmax_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/softmax_8hpp_source.html b/docs/doxygen/html/softmax_8hpp_source.html index f5131a7c3..30106d4e9 100644 --- a/docs/doxygen/html/softmax_8hpp_source.html +++ b/docs/doxygen/html/softmax_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/solve_8hpp.html b/docs/doxygen/html/solve_8hpp.html index a02bf1149..27734229d 100644 --- a/docs/doxygen/html/solve_8hpp.html +++ b/docs/doxygen/html/solve_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/solve_8hpp_source.html b/docs/doxygen/html/solve_8hpp_source.html index cb357b0e4..a2c8c7812 100644 --- a/docs/doxygen/html/solve_8hpp_source.html +++ b/docs/doxygen/html/solve_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sort_8hpp.html b/docs/doxygen/html/sort_8hpp.html index 6744dea9f..dcf20d282 100644 --- a/docs/doxygen/html/sort_8hpp.html +++ b/docs/doxygen/html/sort_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sort_8hpp_source.html b/docs/doxygen/html/sort_8hpp_source.html index dac426ca7..05abbe1ea 100644 --- a/docs/doxygen/html/sort_8hpp_source.html +++ b/docs/doxygen/html/sort_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/spherical__bessel__jn_8hpp.html b/docs/doxygen/html/spherical__bessel__jn_8hpp.html index 9ddf97ad4..59cff6898 100644 --- a/docs/doxygen/html/spherical__bessel__jn_8hpp.html +++ b/docs/doxygen/html/spherical__bessel__jn_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/spherical__bessel__jn_8hpp_source.html b/docs/doxygen/html/spherical__bessel__jn_8hpp_source.html index 79212c10c..f376eb922 100644 --- a/docs/doxygen/html/spherical__bessel__jn_8hpp_source.html +++ b/docs/doxygen/html/spherical__bessel__jn_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/spherical__bessel__yn_8hpp.html b/docs/doxygen/html/spherical__bessel__yn_8hpp.html index 82bc62ef6..057b94029 100644 --- a/docs/doxygen/html/spherical__bessel__yn_8hpp.html +++ b/docs/doxygen/html/spherical__bessel__yn_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/spherical__bessel__yn_8hpp_source.html b/docs/doxygen/html/spherical__bessel__yn_8hpp_source.html index d72d855a4..634832050 100644 --- a/docs/doxygen/html/spherical__bessel__yn_8hpp_source.html +++ b/docs/doxygen/html/spherical__bessel__yn_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/spherical__hankel__1_8hpp.html b/docs/doxygen/html/spherical__hankel__1_8hpp.html index 01cbb4901..10b3722eb 100644 --- a/docs/doxygen/html/spherical__hankel__1_8hpp.html +++ b/docs/doxygen/html/spherical__hankel__1_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/spherical__hankel__1_8hpp_source.html b/docs/doxygen/html/spherical__hankel__1_8hpp_source.html index c532219d2..b01cb8e1d 100644 --- a/docs/doxygen/html/spherical__hankel__1_8hpp_source.html +++ b/docs/doxygen/html/spherical__hankel__1_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/spherical__hankel__2_8hpp.html b/docs/doxygen/html/spherical__hankel__2_8hpp.html index 110d3b05f..d6894fc33 100644 --- a/docs/doxygen/html/spherical__hankel__2_8hpp.html +++ b/docs/doxygen/html/spherical__hankel__2_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/spherical__hankel__2_8hpp_source.html b/docs/doxygen/html/spherical__hankel__2_8hpp_source.html index e83012eb4..043583148 100644 --- a/docs/doxygen/html/spherical__hankel__2_8hpp_source.html +++ b/docs/doxygen/html/spherical__hankel__2_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/spherical__harmonic_8hpp.html b/docs/doxygen/html/spherical__harmonic_8hpp.html index 5edf1b074..ae7311971 100644 --- a/docs/doxygen/html/spherical__harmonic_8hpp.html +++ b/docs/doxygen/html/spherical__harmonic_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/spherical__harmonic_8hpp_source.html b/docs/doxygen/html/spherical__harmonic_8hpp_source.html index aa2fe62fa..fc374e757 100644 --- a/docs/doxygen/html/spherical__harmonic_8hpp_source.html +++ b/docs/doxygen/html/spherical__harmonic_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/split_8hpp.html b/docs/doxygen/html/split_8hpp.html index 72e5f8845..ca14ef890 100644 --- a/docs/doxygen/html/split_8hpp.html +++ b/docs/doxygen/html/split_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/split_8hpp_source.html b/docs/doxygen/html/split_8hpp_source.html index e5b3cbe88..22d4a39b7 100644 --- a/docs/doxygen/html/split_8hpp_source.html +++ b/docs/doxygen/html/split_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sqr_8hpp.html b/docs/doxygen/html/sqr_8hpp.html index cf8d022dc..5d8f77869 100644 --- a/docs/doxygen/html/sqr_8hpp.html +++ b/docs/doxygen/html/sqr_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sqr_8hpp_source.html b/docs/doxygen/html/sqr_8hpp_source.html index 320b12822..ca5d92347 100644 --- a/docs/doxygen/html/sqr_8hpp_source.html +++ b/docs/doxygen/html/sqr_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sqrt_8hpp.html b/docs/doxygen/html/sqrt_8hpp.html index c8de73922..c72e9e74e 100644 --- a/docs/doxygen/html/sqrt_8hpp.html +++ b/docs/doxygen/html/sqrt_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sqrt_8hpp_source.html b/docs/doxygen/html/sqrt_8hpp_source.html index 82805f47b..1efc45fcf 100644 --- a/docs/doxygen/html/sqrt_8hpp_source.html +++ b/docs/doxygen/html/sqrt_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/square_8hpp.html b/docs/doxygen/html/square_8hpp.html index 7e68b9d67..837aec5ba 100644 --- a/docs/doxygen/html/square_8hpp.html +++ b/docs/doxygen/html/square_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/square_8hpp_source.html b/docs/doxygen/html/square_8hpp_source.html index f51d44cb1..fd76117f6 100644 --- a/docs/doxygen/html/square_8hpp_source.html +++ b/docs/doxygen/html/square_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/stack_8hpp.html b/docs/doxygen/html/stack_8hpp.html index 9786459e1..204df481d 100644 --- a/docs/doxygen/html/stack_8hpp.html +++ b/docs/doxygen/html/stack_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/stack_8hpp_source.html b/docs/doxygen/html/stack_8hpp_source.html index 2bb3cfac5..2b370b180 100644 --- a/docs/doxygen/html/stack_8hpp_source.html +++ b/docs/doxygen/html/stack_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/standard_normal_8hpp.html b/docs/doxygen/html/standard_normal_8hpp.html index 4beb54e6f..ec21aee4d 100644 --- a/docs/doxygen/html/standard_normal_8hpp.html +++ b/docs/doxygen/html/standard_normal_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/standard_normal_8hpp_source.html b/docs/doxygen/html/standard_normal_8hpp_source.html index 3f24fa9c2..67622a2b0 100644 --- a/docs/doxygen/html/standard_normal_8hpp_source.html +++ b/docs/doxygen/html/standard_normal_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/stdev_8hpp.html b/docs/doxygen/html/stdev_8hpp.html index fb0b32f87..11891de5f 100644 --- a/docs/doxygen/html/stdev_8hpp.html +++ b/docs/doxygen/html/stdev_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/stdev_8hpp_source.html b/docs/doxygen/html/stdev_8hpp_source.html index cfa2443af..3d07ee95c 100644 --- a/docs/doxygen/html/stdev_8hpp_source.html +++ b/docs/doxygen/html/stdev_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1_complex_hash.html b/docs/doxygen/html/structnc_1_1_complex_hash.html index 57de5e885..479d96043 100644 --- a/docs/doxygen/html/structnc_1_1_complex_hash.html +++ b/docs/doxygen/html/structnc_1_1_complex_hash.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1all__arithmetic.html b/docs/doxygen/html/structnc_1_1all__arithmetic.html index 2d36d7cee..d1a71f023 100644 --- a/docs/doxygen/html/structnc_1_1all__arithmetic.html +++ b/docs/doxygen/html/structnc_1_1all__arithmetic.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html b/docs/doxygen/html/structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html index 06006b511..2eeb1ae30 100644 --- a/docs/doxygen/html/structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html +++ b/docs/doxygen/html/structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1all__arithmetic_3_01_t_01_4.html b/docs/doxygen/html/structnc_1_1all__arithmetic_3_01_t_01_4.html index 07a124ac1..c468221ad 100644 --- a/docs/doxygen/html/structnc_1_1all__arithmetic_3_01_t_01_4.html +++ b/docs/doxygen/html/structnc_1_1all__arithmetic_3_01_t_01_4.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1all__same.html b/docs/doxygen/html/structnc_1_1all__same.html index 89160b180..65da09b94 100644 --- a/docs/doxygen/html/structnc_1_1all__same.html +++ b/docs/doxygen/html/structnc_1_1all__same.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html b/docs/doxygen/html/structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html index 29cb71c68..b0e7d7377 100644 --- a/docs/doxygen/html/structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html +++ b/docs/doxygen/html/structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html b/docs/doxygen/html/structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html index b7d3dcdb8..c2fe4e456 100644 --- a/docs/doxygen/html/structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html +++ b/docs/doxygen/html/structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1greater_than.html b/docs/doxygen/html/structnc_1_1greater_than.html index 0415822e8..22d127b68 100644 --- a/docs/doxygen/html/structnc_1_1greater_than.html +++ b/docs/doxygen/html/structnc_1_1greater_than.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1is__complex.html b/docs/doxygen/html/structnc_1_1is__complex.html index b4e58c6b8..d1c1199a4 100644 --- a/docs/doxygen/html/structnc_1_1is__complex.html +++ b/docs/doxygen/html/structnc_1_1is__complex.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html b/docs/doxygen/html/structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html index 01d42777f..d5423b720 100644 --- a/docs/doxygen/html/structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html +++ b/docs/doxygen/html/structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1is__ndarray__int.html b/docs/doxygen/html/structnc_1_1is__ndarray__int.html index edff4b3b8..465c72e2f 100644 --- a/docs/doxygen/html/structnc_1_1is__ndarray__int.html +++ b/docs/doxygen/html/structnc_1_1is__ndarray__int.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html b/docs/doxygen/html/structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html index b6b8b45f9..3649e2e53 100644 --- a/docs/doxygen/html/structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html +++ b/docs/doxygen/html/structnc_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1is__valid__dtype.html b/docs/doxygen/html/structnc_1_1is__valid__dtype.html index 34dd08080..d4d817564 100644 --- a/docs/doxygen/html/structnc_1_1is__valid__dtype.html +++ b/docs/doxygen/html/structnc_1_1is__valid__dtype.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__int.html b/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__int.html index 7bdc76a2a..593f6259e 100644 --- a/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__int.html +++ b/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__int.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html b/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html index 8e63f584a..0676ca517 100644 --- a/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html +++ b/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__signed__int.html b/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__signed__int.html index 5a649ff98..4d4f8262f 100644 --- a/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__signed__int.html +++ b/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__signed__int.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html b/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html index 6eeabd135..98e68db14 100644 --- a/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html +++ b/docs/doxygen/html/structnc_1_1type__traits_1_1is__ndarray__signed__int_3_01_nd_array_3_01dtype_00_01_allocator_01_4_01_4.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/structnc_1_1utils_1_1timeit__detail_1_1_result.html b/docs/doxygen/html/structnc_1_1utils_1_1timeit__detail_1_1_result.html index 2a917b6fe..306e7b688 100644 --- a/docs/doxygen/html/structnc_1_1utils_1_1timeit__detail_1_1_result.html +++ b/docs/doxygen/html/structnc_1_1utils_1_1timeit__detail_1_1_result.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/student_t_8hpp.html b/docs/doxygen/html/student_t_8hpp.html index eee3db4ec..9b96e3e96 100644 --- a/docs/doxygen/html/student_t_8hpp.html +++ b/docs/doxygen/html/student_t_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/student_t_8hpp_source.html b/docs/doxygen/html/student_t_8hpp_source.html index 6a3863580..32c9c046d 100644 --- a/docs/doxygen/html/student_t_8hpp_source.html +++ b/docs/doxygen/html/student_t_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/subtract_8hpp.html b/docs/doxygen/html/subtract_8hpp.html index b01dd9b97..91f192b60 100644 --- a/docs/doxygen/html/subtract_8hpp.html +++ b/docs/doxygen/html/subtract_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/subtract_8hpp_source.html b/docs/doxygen/html/subtract_8hpp_source.html index f8759277b..2adccbb2d 100644 --- a/docs/doxygen/html/subtract_8hpp_source.html +++ b/docs/doxygen/html/subtract_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sum_8hpp.html b/docs/doxygen/html/sum_8hpp.html index b9bea33b2..fb3b4e6ff 100644 --- a/docs/doxygen/html/sum_8hpp.html +++ b/docs/doxygen/html/sum_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/sum_8hpp_source.html b/docs/doxygen/html/sum_8hpp_source.html index 48b9ffad9..c256b85d1 100644 --- a/docs/doxygen/html/sum_8hpp_source.html +++ b/docs/doxygen/html/sum_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/_s_v_d_class_8hpp.html b/docs/doxygen/html/svd_2svd_8hpp.html similarity index 89% rename from docs/doxygen/html/_s_v_d_class_8hpp.html rename to docs/doxygen/html/svd_2svd_8hpp.html index cf8470cf3..2cc8c6390 100644 --- a/docs/doxygen/html/_s_v_d_class_8hpp.html +++ b/docs/doxygen/html/svd_2svd_8hpp.html @@ -7,7 +7,7 @@ - NumCpp: SVDClass.hpp File Reference + NumCpp: SVD.hpp File Reference @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -88,7 +88,7 @@
                              @@ -117,7 +117,7 @@ -
                              SVDClass.hpp File Reference
                              +
                              SVD.hpp File Reference
                              #include <cmath>
                              @@ -125,14 +125,18 @@ #include <string>
                              #include "NumCpp/Core/Internal/Error.hpp"
                              #include "NumCpp/Core/Types.hpp"
                              +#include "NumCpp/Functions/dot.hpp"
                              +#include "NumCpp/Functions/norm.hpp"
                              +#include "NumCpp/Functions/zeros.hpp"
                              +#include "NumCpp/Linalg/eig.hpp"
                              #include "NumCpp/NdArray.hpp"
                              -#include "NumCpp/Utils/essentiallyEqual.hpp"
                              -

                              Go to the source code of this file.

                              +

                              Go to the source code of this file.

                              - + +

                              Data Structures

                              class  nc::linalg::SVD
                              class  nc::linalg::SVD< dtype >
                               Performs the singular value decomposition of a general matrix. More...
                               
                              @@ -123,7 +123,7 @@

                              Go to the source code of this file.

                              @@ -137,9 +137,9 @@

                              @@ -154,7 +158,7 @@ diff --git a/docs/doxygen/html/svd_2svd_8hpp.js b/docs/doxygen/html/svd_2svd_8hpp.js new file mode 100644 index 000000000..8c8846efd --- /dev/null +++ b/docs/doxygen/html/svd_2svd_8hpp.js @@ -0,0 +1,4 @@ +var svd_2svd_8hpp = +[ + [ "nc::linalg::SVD< dtype >", "classnc_1_1linalg_1_1_s_v_d.html", "classnc_1_1linalg_1_1_s_v_d" ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/svd_2svd_8hpp_source.html b/docs/doxygen/html/svd_2svd_8hpp_source.html new file mode 100644 index 000000000..d0d69e36e --- /dev/null +++ b/docs/doxygen/html/svd_2svd_8hpp_source.html @@ -0,0 +1,343 @@ + + + + + + + + + NumCpp: SVD.hpp Source File + + + + + + + + + + + + + + + + + + + + + + + + +
                              + +
                              + + + + + + + +
                              +
                              NumCpp +  2.16.0 +
                              +
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              +
                              +
                              + + + + + + + +
                              +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              + + +
                              +
                              +
                              +
                              +
                              +
                              Loading...
                              +
                              Searching...
                              +
                              No Matches
                              +
                              +
                              +
                              +
                              + +
                              +
                              svd/svd.hpp
                              +
                              +
                              +Go to the documentation of this file.
                              1
                              +
                              29#pragma once
                              +
                              30
                              +
                              31#include <cmath>
                              +
                              32#include <limits>
                              +
                              33#include <string>
                              +
                              34
                              + +
                              36#include "NumCpp/Core/Types.hpp"
                              + + + +
                              40#include "NumCpp/Linalg/eig.hpp"
                              +
                              41#include "NumCpp/NdArray.hpp"
                              +
                              42
                              +
                              43namespace nc::linalg
                              +
                              44{
                              +
                              45 // =============================================================================
                              +
                              46 // Class Description:
                              +
                              48 template<typename dtype>
                              +
                              +
                              49 class SVD
                              +
                              50 {
                              +
                              51 public:
                              + +
                              53
                              +
                              54 static constexpr auto TOLERANCE = 1e-12;
                              +
                              55
                              +
                              56 // =============================================================================
                              +
                              57 // Description:
                              +
                              +
                              62 explicit SVD(const NdArray<dtype>& inMatrix) :
                              +
                              63 m_{ inMatrix.shape().rows },
                              +
                              64 n_{ inMatrix.shape().cols },
                              +
                              65 s_(1, m_)
                              +
                              66 {
                              +
                              67 compute(inMatrix.template astype<double>());
                              +
                              68 }
                              +
                              +
                              69
                              +
                              70 // =============================================================================
                              +
                              71 // Description:
                              +
                              + +
                              77 {
                              +
                              78 return u_;
                              +
                              79 }
                              +
                              +
                              80
                              +
                              81 // =============================================================================
                              +
                              82 // Description:
                              +
                              + +
                              88 {
                              +
                              89 return v_;
                              +
                              90 }
                              +
                              +
                              91
                              +
                              92 // =============================================================================
                              +
                              93 // Description:
                              +
                              + +
                              99 {
                              +
                              100 return s_;
                              +
                              101 }
                              +
                              +
                              102
                              +
                              103 // =============================================================================
                              +
                              104 // Description:
                              +
                              + +
                              110 {
                              +
                              111 // lazy evaluation
                              +
                              112 if (pinv_.isempty())
                              +
                              113 {
                              +
                              114 auto sInverse = nc::zeros<double>(n_, m_); // transpose
                              +
                              115 for (auto i = 0u; i < std::min(m_, n_); ++i)
                              +
                              116 {
                              +
                              117 if (s_[i] > TOLERANCE)
                              +
                              118 {
                              +
                              119 sInverse(i, i) = 1. / s_[i];
                              +
                              120 }
                              +
                              121 }
                              +
                              122
                              +
                              123 pinv_ = dot(v_, dot(sInverse, u_.transpose()));
                              +
                              124 }
                              +
                              125
                              +
                              126 return pinv_;
                              +
                              127 }
                              +
                              +
                              128
                              +
                              129 // =============================================================================
                              +
                              130 // Description:
                              +
                              + +
                              138 {
                              +
                              139 if (inInput.size() != m_)
                              +
                              140 {
                              +
                              141 THROW_INVALID_ARGUMENT_ERROR("Invalid matrix dimensions");
                              +
                              142 }
                              +
                              143
                              +
                              144 if (inInput.numCols() == 1)
                              +
                              145 {
                              +
                              146 return dot(pinv(), inInput);
                              +
                              147 }
                              +
                              148 else
                              +
                              149 {
                              +
                              150 const auto input = inInput.copy().reshape(inInput.size(), 1);
                              +
                              151 return dot(pinv(), input);
                              +
                              152 }
                              +
                              153 }
                              +
                              +
                              154
                              +
                              155 private:
                              +
                              156 // =============================================================================
                              +
                              157 // Description:
                              +
                              162 void compute(const NdArray<double>& A)
                              +
                              163 {
                              +
                              164 const auto At = A.transpose();
                              +
                              165 const auto AtA = dot(At, A);
                              +
                              166 const auto AAt = dot(A, At);
                              +
                              167
                              +
                              168 const auto& [sigmaSquaredU, U] = eig(AAt);
                              +
                              169 const auto& [sigmaSquaredV, V] = eig(AtA);
                              +
                              170
                              +
                              171 auto rank = 0u;
                              +
                              172 for (auto i = 0u; i < std::min(m_, n_); ++i)
                              +
                              173 {
                              +
                              174 if (sigmaSquaredV[i] > TOLERANCE)
                              +
                              175 {
                              +
                              176 s_[i] = std::sqrt(sigmaSquaredV[i]);
                              +
                              177 rank++;
                              +
                              178 }
                              +
                              179 }
                              +
                              180
                              +
                              181 // std::cout << U.front() << ' ' << U.back() << '\n';
                              +
                              182 // std::cout << V.front() << ' ' << V.back() << '\n';
                              +
                              183 // std::cout << "hello world\n";
                              +
                              184
                              +
                              185 u_ = std::move(U);
                              +
                              186 v_ = std::move(V);
                              +
                              187
                              +
                              188 auto Av = NdArray<double>(m_, 1);
                              +
                              189 for (auto i = 0u; i < rank; ++i)
                              +
                              190 {
                              +
                              191 for (auto j = 0u; j < m_; ++j)
                              +
                              192 {
                              +
                              193 auto sum = 0.;
                              +
                              194 for (auto k = 0u; k < n_; ++k)
                              +
                              195 {
                              +
                              196 sum += A(j, k) * v_(k, i);
                              +
                              197 }
                              +
                              198 Av[j] = sum;
                              +
                              199 }
                              +
                              200
                              +
                              201 const auto normalization = norm(Av).item();
                              +
                              202
                              + +
                              204 {
                              +
                              205 for (auto j = 0u; j < m_; ++j)
                              +
                              206 {
                              +
                              207 u_(j, i) = Av[j] / normalization;
                              +
                              208 }
                              +
                              209 }
                              +
                              210 }
                              +
                              211 }
                              +
                              212
                              +
                              213 private:
                              +
                              214 // ===============================Attributes====================================
                              +
                              215 const uint32 m_{};
                              +
                              216 const uint32 n_{};
                              +
                              217 NdArray<double> u_{};
                              +
                              218 NdArray<double> v_{};
                              +
                              219 NdArray<double> s_{};
                              +
                              220 NdArray<double> pinv_{};
                              +
                              221 };
                              +
                              +
                              222} // namespace nc::linalg
                              + +
                              #define THROW_INVALID_ARGUMENT_ERROR(msg)
                              Definition Error.hpp:37
                              + + +
                              Holds 1D and 2D arrays, the main work horse of the NumCpp library.
                              Definition NdArrayCore.hpp:139
                              +
                              self_type transpose() const
                              Definition NdArrayCore.hpp:4959
                              +
                              bool isempty() const noexcept
                              Definition NdArrayCore.hpp:3008
                              +
                              value_type item() const
                              Definition NdArrayCore.hpp:3098
                              +
                              Performs the singular value decomposition of a general matrix.
                              Definition svd/svd.hpp:50
                              +
                              const NdArray< double > & u() const noexcept
                              Definition svd/svd.hpp:76
                              +
                              const NdArray< double > & s() const noexcept
                              Definition svd/svd.hpp:98
                              +
                              STATIC_ASSERT_ARITHMETIC(dtype)
                              +
                              static constexpr auto TOLERANCE
                              Definition svd/svd.hpp:54
                              +
                              NdArray< double > pinv()
                              Definition svd/svd.hpp:109
                              +
                              SVD(const NdArray< dtype > &inMatrix)
                              Definition svd/svd.hpp:62
                              +
                              NdArray< double > lstsq(const NdArray< double > &inInput)
                              Definition svd/svd.hpp:137
                              +
                              const NdArray< double > & v() const noexcept
                              Definition svd/svd.hpp:87
                              + + +
                              constexpr auto j
                              Definition Core/Constants.hpp:42
                              +
                              Definition cholesky.hpp:41
                              +
                              std::pair< NdArray< double >, NdArray< double > > eig(const NdArray< dtype > &inA, double inTolerance=1e-12)
                              Definition eig.hpp:53
                              +
                              NdArray< double > norm(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
                              Definition norm.hpp:51
                              +
                              NdArray< dtype > dot(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)
                              Definition dot.hpp:47
                              +
                              NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
                              Definition arange.hpp:59
                              +
                              NdArray< dtype > sum(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
                              Definition sum.hpp:46
                              +
                              Shape shape(const NdArray< dtype > &inArray) noexcept
                              Definition Functions/shape.hpp:42
                              +
                              std::uint32_t uint32
                              Definition Types.hpp:40
                              + + +
                              +
                              + + + + diff --git a/docs/doxygen/html/svd_8hpp.html b/docs/doxygen/html/svd_8hpp.html index d6562a269..1261746d5 100644 --- a/docs/doxygen/html/svd_8hpp.html +++ b/docs/doxygen/html/svd_8hpp.html @@ -50,7 +50,7 @@

                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              - - - + + +

                              Functions

                              template<typename dtype >
                              void nc::linalg::svd (const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVt)
                               
                              template<typename dtype >
                              void nc::linalg::svd (const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVT)
                               

                              Detailed Description

                              Author
                              David Pilger dpilg.nosp@m.er26.nosp@m.@gmai.nosp@m.l.co.nosp@m.m GitHub Repository
                              diff --git a/docs/doxygen/html/svd_8hpp.js b/docs/doxygen/html/svd_8hpp.js index 786e1e062..92b4b7eaa 100644 --- a/docs/doxygen/html/svd_8hpp.js +++ b/docs/doxygen/html/svd_8hpp.js @@ -1,4 +1,4 @@ var svd_8hpp = [ - [ "svd", "svd_8hpp.html#acb38ad2613d50422afc539d005159055", null ] + [ "svd", "svd_8hpp.html#a305c49baed6667d8d64b9cd13f2c5060", null ] ]; \ No newline at end of file diff --git a/docs/doxygen/html/svd_8hpp_source.html b/docs/doxygen/html/svd_8hpp_source.html index 5667da7c7..457860640 100644 --- a/docs/doxygen/html/svd_8hpp_source.html +++ b/docs/doxygen/html/svd_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -129,7 +129,7 @@
                              31
                              - +
                              35#include "NumCpp/NdArray.hpp"
                              36
                              37namespace nc::linalg
                              @@ -138,33 +138,30 @@
                              40 // Method Description:
                              50 template<typename dtype>
                              - +
                              52 {
                              54
                              - -
                              56 outU = svdSolver.u();
                              -
                              57
                              - -
                              59 outVt = std::move(vt);
                              -
                              60
                              - -
                              62 outS = std::move(s);
                              -
                              63 }
                              +
                              55 const auto svd = SVD{ inArray };
                              +
                              56
                              +
                              57 outU = svd.u();
                              +
                              58 outS = std::move(svd.s()[Slice(std::min(inArray.numRows(), inArray.numCols()))]);
                              +
                              59 outVT = std::move(svd.v().transpose());
                              +
                              60 }
                              -
                              64} // namespace nc::linalg
                              +
                              61} // namespace nc::linalg
                              -
                              #define STATIC_ASSERT_ARITHMETIC(dtype)
                              Definition StaticAsserts.hpp:39
                              Holds 1D and 2D arrays, the main work horse of the NumCpp library.
                              Definition NdArrayCore.hpp:139
                              -
                              self_type transpose() const
                              Definition NdArrayCore.hpp:4959
                              -
                              Definition SVDClass.hpp:47
                              +
                              A Class for slicing into NdArrays.
                              Definition Slice.hpp:45
                              +
                              Performs the singular value decomposition of a general matrix.
                              Definition svd/svd.hpp:50
                              +
                              const NdArray< double > & u() const noexcept
                              Definition svd/svd.hpp:76
                              Definition cholesky.hpp:41
                              -
                              void svd(const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVt)
                              Definition svd.hpp:51
                              +
                              void svd(const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVT)
                              Definition svd.hpp:51
                              NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
                              Definition arange.hpp:59
                              -
                              NdArray< dtype > diagflat(const NdArray< dtype > &inArray, int32 k=0)
                              Definition diagflat.hpp:51
                              +
                              diff --git a/docs/doxygen/html/svdvals_8hpp.html b/docs/doxygen/html/svdvals_8hpp.html new file mode 100644 index 000000000..340d4e05c --- /dev/null +++ b/docs/doxygen/html/svdvals_8hpp.html @@ -0,0 +1,160 @@ + + + + + + + + + NumCpp: svdvals.hpp File Reference + + + + + + + + + + + + + + + + + + + + + + + + +
                              + +
                              + + + + + + + +
                              +
                              NumCpp +  2.16.0 +
                              +
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              +
                              +
                              + + + + + + +
                              +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              + + +
                              +
                              +
                              +
                              +
                              +
                              Loading...
                              +
                              Searching...
                              +
                              No Matches
                              +
                              +
                              +
                              +
                              + +
                              + +
                              svdvals.hpp File Reference
                              +
                              +
                              +
                              #include <utility>
                              +#include "NumCpp/Core/Internal/StaticAsserts.hpp"
                              +#include "NumCpp/Linalg/svd.hpp"
                              +#include "NumCpp/NdArray.hpp"
                              +
                              +

                              Go to the source code of this file.

                              + + + + + + +

                              +Namespaces

                              namespace  nc
                               
                              namespace  nc::linalg
                               
                              + + + + +

                              +Functions

                              template<typename dtype >
                              NdArray< doublenc::linalg::svdvals (const NdArray< dtype > &inArray)
                               
                              +

                              Detailed Description

                              +
                              Author
                              David Pilger dpilg.nosp@m.er26.nosp@m.@gmai.nosp@m.l.co.nosp@m.m GitHub Repository
                              +

                              License Copyright 2018-2026 David Pilger

                              +

                              Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions :

                              +

                              The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

                              +

                              THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

                              +

                              Description matrix svd

                              +
                              +
                              + + + + diff --git a/docs/doxygen/html/svdvals_8hpp.js b/docs/doxygen/html/svdvals_8hpp.js new file mode 100644 index 000000000..8a352790c --- /dev/null +++ b/docs/doxygen/html/svdvals_8hpp.js @@ -0,0 +1,4 @@ +var svdvals_8hpp = +[ + [ "svdvals", "svdvals_8hpp.html#a9c3f05864405242a8917530242cdda9c", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/svdvals_8hpp_source.html b/docs/doxygen/html/svdvals_8hpp_source.html new file mode 100644 index 000000000..d7f6cef6e --- /dev/null +++ b/docs/doxygen/html/svdvals_8hpp_source.html @@ -0,0 +1,173 @@ + + + + + + + + + NumCpp: svdvals.hpp Source File + + + + + + + + + + + + + + + + + + + + + + + + +
                              + +
                              + + + + + + + +
                              +
                              NumCpp +  2.16.0 +
                              +
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              +
                              +
                              + + + + + + + +
                              +
                              + +
                              +
                              +
                              + +
                              + +
                              +
                              + + +
                              +
                              +
                              +
                              +
                              +
                              Loading...
                              +
                              Searching...
                              +
                              No Matches
                              +
                              +
                              +
                              +
                              + +
                              +
                              svdvals.hpp
                              +
                              +
                              +Go to the documentation of this file.
                              1
                              +
                              28#pragma once
                              +
                              29
                              +
                              30#include <utility>
                              +
                              31
                              + +
                              33#include "NumCpp/Linalg/svd.hpp"
                              +
                              34#include "NumCpp/NdArray.hpp"
                              +
                              35
                              +
                              36namespace nc::linalg
                              +
                              37{
                              +
                              38 //============================================================================
                              +
                              39 // Method Description:
                              +
                              48 template<typename dtype>
                              +
                              + +
                              50 {
                              + +
                              52
                              +
                              53 auto u = NdArray<double>{};
                              +
                              54 auto s = NdArray<double>{};
                              +
                              55 auto vT = NdArray<double>{};
                              +
                              56
                              +
                              57 svd(inArray, u, s, vT);
                              +
                              58
                              +
                              59 return s;
                              +
                              60 }
                              +
                              +
                              61} // namespace nc::linalg
                              + + +
                              #define STATIC_ASSERT_ARITHMETIC(dtype)
                              Definition StaticAsserts.hpp:39
                              +
                              Holds 1D and 2D arrays, the main work horse of the NumCpp library.
                              Definition NdArrayCore.hpp:139
                              +
                              Definition cholesky.hpp:41
                              +
                              void svd(const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVT)
                              Definition svd.hpp:51
                              +
                              NdArray< double > svdvals(const NdArray< dtype > &inArray)
                              Definition svdvals.hpp:49
                              +
                              NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
                              Definition arange.hpp:59
                              + +
                              +
                              + + + + diff --git a/docs/doxygen/html/swap_8hpp.html b/docs/doxygen/html/swap_8hpp.html index 317bfc171..a767c1e4c 100644 --- a/docs/doxygen/html/swap_8hpp.html +++ b/docs/doxygen/html/swap_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/swap_8hpp_source.html b/docs/doxygen/html/swap_8hpp_source.html index d6baceb22..ec6edc4c6 100644 --- a/docs/doxygen/html/swap_8hpp_source.html +++ b/docs/doxygen/html/swap_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/swap_cols_8hpp.html b/docs/doxygen/html/swap_cols_8hpp.html index 5af569e6c..c00d75707 100644 --- a/docs/doxygen/html/swap_cols_8hpp.html +++ b/docs/doxygen/html/swap_cols_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/swap_cols_8hpp_source.html b/docs/doxygen/html/swap_cols_8hpp_source.html index 0f1ed79e7..522d53e59 100644 --- a/docs/doxygen/html/swap_cols_8hpp_source.html +++ b/docs/doxygen/html/swap_cols_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/swap_rows_8hpp.html b/docs/doxygen/html/swap_rows_8hpp.html index 89996b895..41fdac111 100644 --- a/docs/doxygen/html/swap_rows_8hpp.html +++ b/docs/doxygen/html/swap_rows_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/swap_rows_8hpp_source.html b/docs/doxygen/html/swap_rows_8hpp_source.html index 7b90be1af..a8ba84495 100644 --- a/docs/doxygen/html/swap_rows_8hpp_source.html +++ b/docs/doxygen/html/swap_rows_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/swapaxes_8hpp.html b/docs/doxygen/html/swapaxes_8hpp.html index d740fd311..5aad2240d 100644 --- a/docs/doxygen/html/swapaxes_8hpp.html +++ b/docs/doxygen/html/swapaxes_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/swapaxes_8hpp_source.html b/docs/doxygen/html/swapaxes_8hpp_source.html index 2cef317a2..2275174b1 100644 --- a/docs/doxygen/html/swapaxes_8hpp_source.html +++ b/docs/doxygen/html/swapaxes_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/take_8hpp.html b/docs/doxygen/html/take_8hpp.html index dda188b90..62827b709 100644 --- a/docs/doxygen/html/take_8hpp.html +++ b/docs/doxygen/html/take_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/take_8hpp_source.html b/docs/doxygen/html/take_8hpp_source.html index 25668e24f..4ea56a597 100644 --- a/docs/doxygen/html/take_8hpp_source.html +++ b/docs/doxygen/html/take_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/tan_8hpp.html b/docs/doxygen/html/tan_8hpp.html index 2366530d6..caa45be0c 100644 --- a/docs/doxygen/html/tan_8hpp.html +++ b/docs/doxygen/html/tan_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/tan_8hpp_source.html b/docs/doxygen/html/tan_8hpp_source.html index cb4f9f3c6..e8914bb5f 100644 --- a/docs/doxygen/html/tan_8hpp_source.html +++ b/docs/doxygen/html/tan_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/tanh_8hpp.html b/docs/doxygen/html/tanh_8hpp.html index e6fe8f586..8d53bad46 100644 --- a/docs/doxygen/html/tanh_8hpp.html +++ b/docs/doxygen/html/tanh_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/tanh_8hpp_source.html b/docs/doxygen/html/tanh_8hpp_source.html index 8d1c130fa..bfb14339b 100644 --- a/docs/doxygen/html/tanh_8hpp_source.html +++ b/docs/doxygen/html/tanh_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/tile_8hpp.html b/docs/doxygen/html/tile_8hpp.html index 31ba1fad2..4321a231d 100644 --- a/docs/doxygen/html/tile_8hpp.html +++ b/docs/doxygen/html/tile_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/tile_8hpp_source.html b/docs/doxygen/html/tile_8hpp_source.html index eca6461cd..9543c0a11 100644 --- a/docs/doxygen/html/tile_8hpp_source.html +++ b/docs/doxygen/html/tile_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/timeit_8hpp.html b/docs/doxygen/html/timeit_8hpp.html index dd91e6ebc..ea8134c9a 100644 --- a/docs/doxygen/html/timeit_8hpp.html +++ b/docs/doxygen/html/timeit_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/timeit_8hpp_source.html b/docs/doxygen/html/timeit_8hpp_source.html index ce7aa0d1d..e73657f2d 100644 --- a/docs/doxygen/html/timeit_8hpp_source.html +++ b/docs/doxygen/html/timeit_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/to_stl_vector_8hpp.html b/docs/doxygen/html/to_stl_vector_8hpp.html index ee0bf6c17..d1f45482f 100644 --- a/docs/doxygen/html/to_stl_vector_8hpp.html +++ b/docs/doxygen/html/to_stl_vector_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/to_stl_vector_8hpp_source.html b/docs/doxygen/html/to_stl_vector_8hpp_source.html index 58b9f42c4..d7ce2b5ad 100644 --- a/docs/doxygen/html/to_stl_vector_8hpp_source.html +++ b/docs/doxygen/html/to_stl_vector_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/tofile_8hpp.html b/docs/doxygen/html/tofile_8hpp.html index 5f42e9d11..7d5159ae2 100644 --- a/docs/doxygen/html/tofile_8hpp.html +++ b/docs/doxygen/html/tofile_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/tofile_8hpp_source.html b/docs/doxygen/html/tofile_8hpp_source.html index 7d59702ef..9fc67c5ac 100644 --- a/docs/doxygen/html/tofile_8hpp_source.html +++ b/docs/doxygen/html/tofile_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trace_8hpp.html b/docs/doxygen/html/trace_8hpp.html index f0760212d..4aa1b080c 100644 --- a/docs/doxygen/html/trace_8hpp.html +++ b/docs/doxygen/html/trace_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trace_8hpp_source.html b/docs/doxygen/html/trace_8hpp_source.html index 3d1f90078..34ad8d71a 100644 --- a/docs/doxygen/html/trace_8hpp_source.html +++ b/docs/doxygen/html/trace_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/transpose_8hpp.html b/docs/doxygen/html/transpose_8hpp.html index 7252c7dd0..d0e8464ee 100644 --- a/docs/doxygen/html/transpose_8hpp.html +++ b/docs/doxygen/html/transpose_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/transpose_8hpp_source.html b/docs/doxygen/html/transpose_8hpp_source.html index fc73dad10..8da84c856 100644 --- a/docs/doxygen/html/transpose_8hpp_source.html +++ b/docs/doxygen/html/transpose_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trapazoidal_8hpp.html b/docs/doxygen/html/trapazoidal_8hpp.html index 43658d24e..5db677371 100644 --- a/docs/doxygen/html/trapazoidal_8hpp.html +++ b/docs/doxygen/html/trapazoidal_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trapazoidal_8hpp_source.html b/docs/doxygen/html/trapazoidal_8hpp_source.html index 9ba2fa4b1..714e84732 100644 --- a/docs/doxygen/html/trapazoidal_8hpp_source.html +++ b/docs/doxygen/html/trapazoidal_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trapz_8hpp.html b/docs/doxygen/html/trapz_8hpp.html index 37492b569..7502e43c8 100644 --- a/docs/doxygen/html/trapz_8hpp.html +++ b/docs/doxygen/html/trapz_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trapz_8hpp_source.html b/docs/doxygen/html/trapz_8hpp_source.html index 61efcd660..2d5ce0968 100644 --- a/docs/doxygen/html/trapz_8hpp_source.html +++ b/docs/doxygen/html/trapz_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/tri_8hpp.html b/docs/doxygen/html/tri_8hpp.html index e633f040b..d4a4d5aa3 100644 --- a/docs/doxygen/html/tri_8hpp.html +++ b/docs/doxygen/html/tri_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/tri_8hpp_source.html b/docs/doxygen/html/tri_8hpp_source.html index 679ee29ad..766764820 100644 --- a/docs/doxygen/html/tri_8hpp_source.html +++ b/docs/doxygen/html/tri_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/triangle_8hpp.html b/docs/doxygen/html/triangle_8hpp.html index 3c882bd4d..ec787c8c0 100644 --- a/docs/doxygen/html/triangle_8hpp.html +++ b/docs/doxygen/html/triangle_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/triangle_8hpp_source.html b/docs/doxygen/html/triangle_8hpp_source.html index 4343b07dc..17e4d1dcf 100644 --- a/docs/doxygen/html/triangle_8hpp_source.html +++ b/docs/doxygen/html/triangle_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trigamma_8hpp.html b/docs/doxygen/html/trigamma_8hpp.html index ec64dd62e..c81b467ef 100644 --- a/docs/doxygen/html/trigamma_8hpp.html +++ b/docs/doxygen/html/trigamma_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trigamma_8hpp_source.html b/docs/doxygen/html/trigamma_8hpp_source.html index 81d01ab3f..f5d43071a 100644 --- a/docs/doxygen/html/trigamma_8hpp_source.html +++ b/docs/doxygen/html/trigamma_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trim__zeros_8hpp.html b/docs/doxygen/html/trim__zeros_8hpp.html index 73271ff38..4b9ca2653 100644 --- a/docs/doxygen/html/trim__zeros_8hpp.html +++ b/docs/doxygen/html/trim__zeros_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trim__zeros_8hpp_source.html b/docs/doxygen/html/trim__zeros_8hpp_source.html index bafccf7ed..a8064dcc4 100644 --- a/docs/doxygen/html/trim__zeros_8hpp_source.html +++ b/docs/doxygen/html/trim__zeros_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trim_boundary1d_8hpp.html b/docs/doxygen/html/trim_boundary1d_8hpp.html index e1c6b9f70..b4376abe0 100644 --- a/docs/doxygen/html/trim_boundary1d_8hpp.html +++ b/docs/doxygen/html/trim_boundary1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trim_boundary1d_8hpp_source.html b/docs/doxygen/html/trim_boundary1d_8hpp_source.html index 7c971debd..8122f84b4 100644 --- a/docs/doxygen/html/trim_boundary1d_8hpp_source.html +++ b/docs/doxygen/html/trim_boundary1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trim_boundary2d_8hpp.html b/docs/doxygen/html/trim_boundary2d_8hpp.html index 61e666dce..8f68d44b5 100644 --- a/docs/doxygen/html/trim_boundary2d_8hpp.html +++ b/docs/doxygen/html/trim_boundary2d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trim_boundary2d_8hpp_source.html b/docs/doxygen/html/trim_boundary2d_8hpp_source.html index 83edc287f..0f4de7daf 100644 --- a/docs/doxygen/html/trim_boundary2d_8hpp_source.html +++ b/docs/doxygen/html/trim_boundary2d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trunc_8hpp.html b/docs/doxygen/html/trunc_8hpp.html index 0e292d59e..636cf8948 100644 --- a/docs/doxygen/html/trunc_8hpp.html +++ b/docs/doxygen/html/trunc_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/trunc_8hpp_source.html b/docs/doxygen/html/trunc_8hpp_source.html index 068b4601b..274334b91 100644 --- a/docs/doxygen/html/trunc_8hpp_source.html +++ b/docs/doxygen/html/trunc_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/uniform_8hpp.html b/docs/doxygen/html/uniform_8hpp.html index 6d36c06bb..5e952dee4 100644 --- a/docs/doxygen/html/uniform_8hpp.html +++ b/docs/doxygen/html/uniform_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/uniform_8hpp_source.html b/docs/doxygen/html/uniform_8hpp_source.html index 85de56f54..930f98dff 100644 --- a/docs/doxygen/html/uniform_8hpp_source.html +++ b/docs/doxygen/html/uniform_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/uniform_filter1d_8hpp.html b/docs/doxygen/html/uniform_filter1d_8hpp.html index 756f83b27..35dc73f42 100644 --- a/docs/doxygen/html/uniform_filter1d_8hpp.html +++ b/docs/doxygen/html/uniform_filter1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/uniform_filter1d_8hpp_source.html b/docs/doxygen/html/uniform_filter1d_8hpp_source.html index 01e1a5cba..3a3ad5454 100644 --- a/docs/doxygen/html/uniform_filter1d_8hpp_source.html +++ b/docs/doxygen/html/uniform_filter1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/uniform_filter_8hpp.html b/docs/doxygen/html/uniform_filter_8hpp.html index e67db52db..e870887a5 100644 --- a/docs/doxygen/html/uniform_filter_8hpp.html +++ b/docs/doxygen/html/uniform_filter_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/uniform_filter_8hpp_source.html b/docs/doxygen/html/uniform_filter_8hpp_source.html index 10c4a5503..57c124bee 100644 --- a/docs/doxygen/html/uniform_filter_8hpp_source.html +++ b/docs/doxygen/html/uniform_filter_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/uniform_on_sphere_8hpp.html b/docs/doxygen/html/uniform_on_sphere_8hpp.html index 91b22ece9..d720f586e 100644 --- a/docs/doxygen/html/uniform_on_sphere_8hpp.html +++ b/docs/doxygen/html/uniform_on_sphere_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/uniform_on_sphere_8hpp_source.html b/docs/doxygen/html/uniform_on_sphere_8hpp_source.html index 4ebafe57e..f7ee8578f 100644 --- a/docs/doxygen/html/uniform_on_sphere_8hpp_source.html +++ b/docs/doxygen/html/uniform_on_sphere_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/union1d_8hpp.html b/docs/doxygen/html/union1d_8hpp.html index 9e2d55e24..0d96ba949 100644 --- a/docs/doxygen/html/union1d_8hpp.html +++ b/docs/doxygen/html/union1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/union1d_8hpp_source.html b/docs/doxygen/html/union1d_8hpp_source.html index 5e2e0dca0..feb421f6c 100644 --- a/docs/doxygen/html/union1d_8hpp_source.html +++ b/docs/doxygen/html/union1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/unique_8hpp.html b/docs/doxygen/html/unique_8hpp.html index b625fbd14..21c77cfce 100644 --- a/docs/doxygen/html/unique_8hpp.html +++ b/docs/doxygen/html/unique_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/unique_8hpp_source.html b/docs/doxygen/html/unique_8hpp_source.html index 9cf2d80a3..5a4c68b9f 100644 --- a/docs/doxygen/html/unique_8hpp_source.html +++ b/docs/doxygen/html/unique_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/unpackbits_8hpp.html b/docs/doxygen/html/unpackbits_8hpp.html index 81663e62f..386186a98 100644 --- a/docs/doxygen/html/unpackbits_8hpp.html +++ b/docs/doxygen/html/unpackbits_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/unpackbits_8hpp_source.html b/docs/doxygen/html/unpackbits_8hpp_source.html index 78f39c95b..10ad7c411 100644 --- a/docs/doxygen/html/unpackbits_8hpp_source.html +++ b/docs/doxygen/html/unpackbits_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/unwrap_8hpp.html b/docs/doxygen/html/unwrap_8hpp.html index 8440cfa5c..5dd8fac1e 100644 --- a/docs/doxygen/html/unwrap_8hpp.html +++ b/docs/doxygen/html/unwrap_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/unwrap_8hpp_source.html b/docs/doxygen/html/unwrap_8hpp_source.html index e8226a2c3..2313797a7 100644 --- a/docs/doxygen/html/unwrap_8hpp_source.html +++ b/docs/doxygen/html/unwrap_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/value2str_8hpp.html b/docs/doxygen/html/value2str_8hpp.html index f155d02d0..a44f2cff6 100644 --- a/docs/doxygen/html/value2str_8hpp.html +++ b/docs/doxygen/html/value2str_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/value2str_8hpp_source.html b/docs/doxygen/html/value2str_8hpp_source.html index 98bf7db11..7e9d22342 100644 --- a/docs/doxygen/html/value2str_8hpp_source.html +++ b/docs/doxygen/html/value2str_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/vander_8hpp.html b/docs/doxygen/html/vander_8hpp.html index 2acfa9340..3632638d2 100644 --- a/docs/doxygen/html/vander_8hpp.html +++ b/docs/doxygen/html/vander_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/vander_8hpp_source.html b/docs/doxygen/html/vander_8hpp_source.html index 7cc09e431..22aba99a9 100644 --- a/docs/doxygen/html/vander_8hpp_source.html +++ b/docs/doxygen/html/vander_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/var_8hpp.html b/docs/doxygen/html/var_8hpp.html index 3742ff042..63b86b50f 100644 --- a/docs/doxygen/html/var_8hpp.html +++ b/docs/doxygen/html/var_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/var_8hpp_source.html b/docs/doxygen/html/var_8hpp_source.html index 51e86c67c..d51f5a959 100644 --- a/docs/doxygen/html/var_8hpp_source.html +++ b/docs/doxygen/html/var_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/vsplit_8hpp.html b/docs/doxygen/html/vsplit_8hpp.html index 53078b18f..32a282c1d 100644 --- a/docs/doxygen/html/vsplit_8hpp.html +++ b/docs/doxygen/html/vsplit_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/vsplit_8hpp_source.html b/docs/doxygen/html/vsplit_8hpp_source.html index 36037fe7e..4851e15f1 100644 --- a/docs/doxygen/html/vsplit_8hpp_source.html +++ b/docs/doxygen/html/vsplit_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/vstack_8hpp.html b/docs/doxygen/html/vstack_8hpp.html index 124453147..872c65f37 100644 --- a/docs/doxygen/html/vstack_8hpp.html +++ b/docs/doxygen/html/vstack_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/vstack_8hpp_source.html b/docs/doxygen/html/vstack_8hpp_source.html index f3cadc7bb..34462c2a9 100644 --- a/docs/doxygen/html/vstack_8hpp_source.html +++ b/docs/doxygen/html/vstack_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/wahbas_problem_8hpp.html b/docs/doxygen/html/wahbas_problem_8hpp.html index 77489d96f..ee2dc3451 100644 --- a/docs/doxygen/html/wahbas_problem_8hpp.html +++ b/docs/doxygen/html/wahbas_problem_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/wahbas_problem_8hpp_source.html b/docs/doxygen/html/wahbas_problem_8hpp_source.html index cd371ee05..aeba8dd93 100644 --- a/docs/doxygen/html/wahbas_problem_8hpp_source.html +++ b/docs/doxygen/html/wahbas_problem_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              @@ -180,7 +180,7 @@
                              100
                              -
                              101 linalg::svd(b, u, s, vt);
                              +
                              101 linalg::svd(b, u, s, vt);
                              102
                              103 auto m = eye<double>(3, 3);
                              104 m(0, 0) = 1.;
                              @@ -211,8 +211,8 @@ +
                              void svd(const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVT)
                              Definition svd.hpp:51
                              auto det(const NdArray< dtype > &inArray)
                              Definition det.hpp:131
                              -
                              void svd(const NdArray< dtype > &inArray, NdArray< double > &outU, NdArray< double > &outS, NdArray< double > &outVt)
                              Definition svd.hpp:51
                              Definition DCM.hpp:39
                              NdArray< double > wahbasProblem(const NdArray< dtype > &wk, const NdArray< dtype > &vk, const NdArray< dtype > &ak)
                              Definition wahbasProblem.hpp:62
                              NdArray< dtype > dot(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)
                              Definition dot.hpp:47
                              diff --git a/docs/doxygen/html/weibull_8hpp.html b/docs/doxygen/html/weibull_8hpp.html index 78a86e424..103102fd1 100644 --- a/docs/doxygen/html/weibull_8hpp.html +++ b/docs/doxygen/html/weibull_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/weibull_8hpp_source.html b/docs/doxygen/html/weibull_8hpp_source.html index c0fac988c..086584b9c 100644 --- a/docs/doxygen/html/weibull_8hpp_source.html +++ b/docs/doxygen/html/weibull_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/where_8hpp.html b/docs/doxygen/html/where_8hpp.html index 87800ecab..63b21188f 100644 --- a/docs/doxygen/html/where_8hpp.html +++ b/docs/doxygen/html/where_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/where_8hpp_source.html b/docs/doxygen/html/where_8hpp_source.html index 57feaca11..e0c2999dc 100644 --- a/docs/doxygen/html/where_8hpp_source.html +++ b/docs/doxygen/html/where_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/window_exceedances_8hpp.html b/docs/doxygen/html/window_exceedances_8hpp.html index 841192c08..264017ef0 100644 --- a/docs/doxygen/html/window_exceedances_8hpp.html +++ b/docs/doxygen/html/window_exceedances_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/window_exceedances_8hpp_source.html b/docs/doxygen/html/window_exceedances_8hpp_source.html index 9db3f4614..024f45a39 100644 --- a/docs/doxygen/html/window_exceedances_8hpp_source.html +++ b/docs/doxygen/html/window_exceedances_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/wrap1d_8hpp.html b/docs/doxygen/html/wrap1d_8hpp.html index c828e741f..bf4a2e5ab 100644 --- a/docs/doxygen/html/wrap1d_8hpp.html +++ b/docs/doxygen/html/wrap1d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/wrap1d_8hpp_source.html b/docs/doxygen/html/wrap1d_8hpp_source.html index b4c5b640a..38003afd9 100644 --- a/docs/doxygen/html/wrap1d_8hpp_source.html +++ b/docs/doxygen/html/wrap1d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/wrap2_pi_8hpp.html b/docs/doxygen/html/wrap2_pi_8hpp.html index 335d09279..c959a81f3 100644 --- a/docs/doxygen/html/wrap2_pi_8hpp.html +++ b/docs/doxygen/html/wrap2_pi_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/wrap2_pi_8hpp_source.html b/docs/doxygen/html/wrap2_pi_8hpp_source.html index 0fdf537ae..5b518bfa9 100644 --- a/docs/doxygen/html/wrap2_pi_8hpp_source.html +++ b/docs/doxygen/html/wrap2_pi_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/wrap2d_8hpp.html b/docs/doxygen/html/wrap2d_8hpp.html index 4d46e23f9..293ee1477 100644 --- a/docs/doxygen/html/wrap2d_8hpp.html +++ b/docs/doxygen/html/wrap2d_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/wrap2d_8hpp_source.html b/docs/doxygen/html/wrap2d_8hpp_source.html index 5935f1189..b27866f62 100644 --- a/docs/doxygen/html/wrap2d_8hpp_source.html +++ b/docs/doxygen/html/wrap2d_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/wrap_8hpp.html b/docs/doxygen/html/wrap_8hpp.html index 8eec2afaa..7e2347af0 100644 --- a/docs/doxygen/html/wrap_8hpp.html +++ b/docs/doxygen/html/wrap_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/wrap_8hpp_source.html b/docs/doxygen/html/wrap_8hpp_source.html index 05a91a25b..b6c507244 100644 --- a/docs/doxygen/html/wrap_8hpp_source.html +++ b/docs/doxygen/html/wrap_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/zeros_8hpp.html b/docs/doxygen/html/zeros_8hpp.html index c7ef984d6..ae58433fb 100644 --- a/docs/doxygen/html/zeros_8hpp.html +++ b/docs/doxygen/html/zeros_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/zeros_8hpp_source.html b/docs/doxygen/html/zeros_8hpp_source.html index 495c1e752..d6c65570f 100644 --- a/docs/doxygen/html/zeros_8hpp_source.html +++ b/docs/doxygen/html/zeros_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/zeros__like_8hpp.html b/docs/doxygen/html/zeros__like_8hpp.html index 9fb9198ce..0a7cb12ea 100644 --- a/docs/doxygen/html/zeros__like_8hpp.html +++ b/docs/doxygen/html/zeros__like_8hpp.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/doxygen/html/zeros__like_8hpp_source.html b/docs/doxygen/html/zeros__like_8hpp_source.html index 7924b0d43..d8b8233ba 100644 --- a/docs/doxygen/html/zeros__like_8hpp_source.html +++ b/docs/doxygen/html/zeros__like_8hpp_source.html @@ -50,7 +50,7 @@ Logo
                              NumCpp -  2.15.0 +  2.16.0
                              A Templatized Header Only C++ Implementation of the Python NumPy Library
                              diff --git a/docs/markdown/ReleaseNotes.md b/docs/markdown/ReleaseNotes.md index 4ed21d9ef..cefb5a201 100644 --- a/docs/markdown/ReleaseNotes.md +++ b/docs/markdown/ReleaseNotes.md @@ -8,7 +8,7 @@ * unlike NumPy, the NumCpp implementation is only suitable for real symmetric matrices * added `eigvals()` for **Issue #143** * unlike NumPy, the NumCpp implementation is only suitable for real symmetric matrices -* added `svdvals` +* added `svdvals` ## Version 2.15.0