diff --git a/appveyor.yml b/appveyor.yml index 3fdd7bec9..ddfa7c90d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -16,6 +16,6 @@ build_script: cmake --build . --config Release --target install test_script: - cmd: >- - C:\Python39-x64\python -m pip install -U pytest numpy scipy astropy matplotlib mpmath vectormath && + C:\Python310-x64\python -m pip install -U pytest numpy scipy astropy matplotlib mpmath vectormath && cd C:\projects\numcpp\test\pytest && - C:\Python39-x64\python -m pytest + C:\Python310-x64\python -m pytest diff --git a/develop/ToDo.md b/develop/ToDo.md new file mode 100644 index 000000000..c7fe9acc7 --- /dev/null +++ b/develop/ToDo.md @@ -0,0 +1,3 @@ +## Changes + + * should the indices operator() and [] sort and take unique of the indices? This is not inline with NumPy diff --git a/docs/doxygen/html/_bisection_8hpp.html b/docs/doxygen/html/_bisection_8hpp.html index b562273fa..520e94fa3 100644 --- a/docs/doxygen/html/_bisection_8hpp.html +++ b/docs/doxygen/html/_bisection_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: Bisection.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
bartlett.hpp File Reference
+
+
+
#include <cmath>
+#include "NumCpp/NdArray.hpp"
+#include "NumCpp/Functions/linspace.hpp"
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + +

+Functions

NdArray< double > nc::bartlett (int32 m)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/bartlett_8hpp.js b/docs/doxygen/html/bartlett_8hpp.js new file mode 100644 index 000000000..d47f99054 --- /dev/null +++ b/docs/doxygen/html/bartlett_8hpp.js @@ -0,0 +1,4 @@ +var bartlett_8hpp = +[ + [ "bartlett", "bartlett_8hpp.html#a594225660881a1cd0caabba4946c07d4", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/bartlett_8hpp_source.html b/docs/doxygen/html/bartlett_8hpp_source.html new file mode 100644 index 000000000..0c5687f36 --- /dev/null +++ b/docs/doxygen/html/bartlett_8hpp_source.html @@ -0,0 +1,142 @@ + + + + + + + +NumCpp: bartlett.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
bartlett.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include <cmath>
+
31 
+
32 #include "NumCpp/NdArray.hpp"
+ +
34 
+
35 namespace nc
+
36 {
+
37  //============================================================================
+
38  // Method Description:
+ +
49  {
+
50  if (m < 1)
+
51  {
+
52  return {};
+
53  }
+
54 
+
55  const auto mDouble = static_cast<double>(m);
+
56  const auto mMinus1Over2 = (mDouble - 1.0) / 2.0;
+
57  const auto mMinus1Over2Inv = 1.0 / mMinus1Over2;
+
58 
+
59  NdArray<double> result(1, m);
+
60  int32 i = 0;
+
61  for (auto n : linspace(0.0, mDouble - 1.0, m, true))
+
62  {
+
63  result[i++] = mMinus1Over2Inv * (mMinus1Over2 - std::abs(n - mMinus1Over2));
+
64  }
+
65 
+
66  return result;
+
67  }
+
68 } // namespace nc
+ + + +
Definition: Coordinate.hpp:45
+
NdArray< double > bartlett(int32 m)
Definition: bartlett.hpp:48
+
NdArray< dtype > linspace(dtype inStart, dtype inStop, uint32 inNum=50, bool endPoint=true)
Definition: linspace.hpp:61
+
auto abs(dtype inValue) noexcept
Definition: abs.hpp:49
+
std::int32_t int32
Definition: Types.hpp:36
+
+
+ + + + diff --git a/docs/doxygen/html/bernoilli_8hpp.html b/docs/doxygen/html/bernoilli_8hpp.html index 5938450df..3948ac5dd 100644 --- a/docs/doxygen/html/bernoilli_8hpp.html +++ b/docs/doxygen/html/bernoilli_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: bernoilli.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
blackman.hpp File Reference
+
+
+
#include <cmath>
+#include "NumCpp/NdArray.hpp"
+#include "NumCpp/Core/Constants.hpp"
+#include "NumCpp/Functions/linspace.hpp"
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + +

+Functions

NdArray< double > nc::blackman (int32 m)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/blackman_8hpp.js b/docs/doxygen/html/blackman_8hpp.js new file mode 100644 index 000000000..797c27f61 --- /dev/null +++ b/docs/doxygen/html/blackman_8hpp.js @@ -0,0 +1,4 @@ +var blackman_8hpp = +[ + [ "blackman", "blackman_8hpp.html#aab31b376c91a94e877f236177dbab4d0", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/blackman_8hpp_source.html b/docs/doxygen/html/blackman_8hpp_source.html new file mode 100644 index 000000000..a2fd5cecd --- /dev/null +++ b/docs/doxygen/html/blackman_8hpp_source.html @@ -0,0 +1,145 @@ + + + + + + + +NumCpp: blackman.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
blackman.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include <cmath>
+
31 
+
32 #include "NumCpp/NdArray.hpp"
+ + +
35 
+
36 namespace nc
+
37 {
+
38  //============================================================================
+
39  // Method Description:
+ +
50  {
+
51  if (m < 1)
+
52  {
+
53  return {};
+
54  }
+
55 
+
56  const auto mDouble = static_cast<double>(m);
+
57 
+
58  NdArray<double> result(1, m);
+
59  int32 i = 0;
+
60  for (auto n : linspace(0.0, mDouble, m, true))
+
61  {
+
62  const auto nOverM = n / mDouble;
+
63  result[i++] = 0.42 - 0.5 * std::cos(2.0 * constants::pi * nOverM)
+
64  + 0.08 * std::cos(4.0 * constants::pi * nOverM);
+
65  }
+
66 
+
67  return result;
+
68  }
+
69 } // namespace nc
+ + + + +
constexpr double pi
Pi.
Definition: Constants.hpp:43
+
Definition: Coordinate.hpp:45
+
NdArray< dtype > linspace(dtype inStart, dtype inStop, uint32 inNum=50, bool endPoint=true)
Definition: linspace.hpp:61
+
auto cos(dtype inValue) noexcept
Definition: cos.hpp:49
+
std::int32_t int32
Definition: Types.hpp:36
+
NdArray< double > blackman(int32 m)
Definition: blackman.hpp:49
+
+
+ + + + diff --git a/docs/doxygen/html/byteswap_8hpp.html b/docs/doxygen/html/byteswap_8hpp.html index 87f94b8b0..0d41056c9 100644 --- a/docs/doxygen/html/byteswap_8hpp.html +++ b/docs/doxygen/html/byteswap_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: byteswap.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
corrcoef.hpp File Reference
+
+
+ +

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + +

+Functions

template<typename dtype >
NdArray< double > nc::corrcoef (const NdArray< dtype > &x)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/corrcoef_8hpp.js b/docs/doxygen/html/corrcoef_8hpp.js new file mode 100644 index 000000000..ef95b8667 --- /dev/null +++ b/docs/doxygen/html/corrcoef_8hpp.js @@ -0,0 +1,4 @@ +var corrcoef_8hpp = +[ + [ "corrcoef", "corrcoef_8hpp.html#a2232014b014afca61e5ebe93c5ba2c0c", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/corrcoef_8hpp_source.html b/docs/doxygen/html/corrcoef_8hpp_source.html new file mode 100644 index 000000000..75b2f090c --- /dev/null +++ b/docs/doxygen/html/corrcoef_8hpp_source.html @@ -0,0 +1,145 @@ + + + + + + + +NumCpp: corrcoef.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
corrcoef.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+ +
32 #include "NumCpp/Functions/cov.hpp"
+ + +
35 
+
36 namespace nc
+
37 {
+
38  //============================================================================
+
39  // Method Description:
+
49  template<typename dtype>
+ +
51  {
+ +
53 
+
54  const auto covariance = cov(x);
+
55  auto normalizedCovariance = empty_like(covariance);
+
56  for (decltype(covariance.numRows()) i = 0; i < covariance.numRows(); ++i)
+
57  {
+
58  for (decltype(covariance.numCols()) j = 0; j < covariance.numCols(); ++j)
+
59  {
+
60  normalizedCovariance(i, j) = covariance(i, j) / sqrt(covariance(i, i) * covariance(j, j));
+
61  }
+
62  }
+
63 
+
64  return normalizedCovariance;
+
65  }
+
66 } // namespace nc
+ + +
#define STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype)
Definition: StaticAsserts.hpp:50
+ + + +
constexpr auto j
Definition: Constants.hpp:45
+
Definition: Coordinate.hpp:45
+
NdArray< double > corrcoef(const NdArray< dtype > &x)
Definition: corrcoef.hpp:50
+
NdArray< double > cov(const NdArray< dtype > &x, bool bias=false)
Definition: cov.hpp:52
+
auto sqrt(dtype inValue) noexcept
Definition: sqrt.hpp:48
+
NdArray< dtype > empty_like(const NdArray< dtype > &inArray)
Definition: empty_like.hpp:44
+ +
+
+ + + + diff --git a/docs/doxygen/html/cos_8hpp.html b/docs/doxygen/html/cos_8hpp.html index c37d7f2aa..284eea533 100644 --- a/docs/doxygen/html/cos_8hpp.html +++ b/docs/doxygen/html/cos_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: cos.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
cov.hpp File Reference
+
+
+
#include "NumCpp/NdArray.hpp"
+#include "NumCpp/Core/Internal/StaticAsserts.hpp"
+#include "NumCpp/Functions/mean.hpp"
+#include <type_traits>
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + +

+Functions

template<typename dtype >
NdArray< double > nc::cov (const NdArray< dtype > &x, bool bias=false)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/cov_8hpp.js b/docs/doxygen/html/cov_8hpp.js new file mode 100644 index 000000000..2dfe72ff2 --- /dev/null +++ b/docs/doxygen/html/cov_8hpp.js @@ -0,0 +1,4 @@ +var cov_8hpp = +[ + [ "cov", "cov_8hpp.html#a61dbb6e2f778525a305dc235a9a43c76", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/cov_8hpp_source.html b/docs/doxygen/html/cov_8hpp_source.html new file mode 100644 index 000000000..b0f447128 --- /dev/null +++ b/docs/doxygen/html/cov_8hpp_source.html @@ -0,0 +1,170 @@ + + + + + + + +NumCpp: cov.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
cov.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+ + +
33 
+
34 #include <type_traits>
+
35 
+
36 namespace nc
+
37 {
+
38  //============================================================================
+
39  // Method Description:
+
51  template<typename dtype>
+
52  NdArray<double> cov(const NdArray<dtype>& x, bool bias = false)
+
53  {
+ +
55 
+
56  const auto varMeans = mean(x, Axis::COL);
+
57  const auto numVars = x.numRows();
+
58  const auto numObs = x.numCols();
+
59  const auto normilizationFactor = bias ? static_cast<double>(numObs) : static_cast<double>(numObs - 1);
+
60  using IndexType = std::remove_const<decltype(numVars)>::type;
+
61 
+
62  // upper triangle
+
63  auto covariance = NdArray<double>(numVars);
+
64  for (IndexType i = 0; i < numVars; ++i)
+
65  {
+
66  const auto var1Mean = varMeans[i];
+
67 
+
68  for (IndexType j = i; j < numVars; ++j)
+
69  {
+
70  const auto var2Mean = varMeans[j];
+
71 
+
72  double sum = 0.0;
+
73  for (IndexType iObs = 0; iObs < numObs; ++iObs)
+
74  {
+
75  sum += (x(i, iObs) - var1Mean) * (x(j, iObs) - var2Mean);
+
76  }
+
77 
+
78  covariance(i, j) = sum / normilizationFactor;
+
79  }
+
80  }
+
81 
+
82  // fill in the rest of the symmetric matrix
+
83  for (IndexType j = 0; j < numVars; ++j)
+
84  {
+
85  for (IndexType i = j + 1; i < numVars; ++i)
+
86  {
+
87  covariance(i, j) = covariance(j, i);
+
88  }
+
89  }
+
90 
+
91  return covariance;
+
92  }
+
93 } // namespace nc
+ + +
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition: StaticAsserts.hpp:37
+ +
uint32 numCols() const noexcept
Definition: NdArrayCore.hpp:3418
+
uint32 numRows() const noexcept
Definition: NdArrayCore.hpp:3430
+ +
constexpr auto j
Definition: Constants.hpp:45
+
Definition: Coordinate.hpp:45
+ +
NdArray< double > cov(const NdArray< dtype > &x, bool bias=false)
Definition: cov.hpp:52
+
NdArray< dtype > sum(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition: sum.hpp:46
+
NdArray< double > mean(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition: mean.hpp:52
+
+
+ + + + diff --git a/docs/doxygen/html/cov__inv_8hpp.html b/docs/doxygen/html/cov__inv_8hpp.html new file mode 100644 index 000000000..08880a17a --- /dev/null +++ b/docs/doxygen/html/cov__inv_8hpp.html @@ -0,0 +1,130 @@ + + + + + + + +NumCpp: cov_inv.hpp File Reference + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
cov_inv.hpp File Reference
+
+
+ +

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + +

+Functions

template<typename dtype >
NdArray< double > nc::cov_inv (const NdArray< dtype > &x, bool bias=false)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/cov__inv_8hpp.js b/docs/doxygen/html/cov__inv_8hpp.js new file mode 100644 index 000000000..fdb3e8e22 --- /dev/null +++ b/docs/doxygen/html/cov__inv_8hpp.js @@ -0,0 +1,4 @@ +var cov__inv_8hpp = +[ + [ "cov_inv", "cov__inv_8hpp.html#a2a45ff9db0b44932844a5d9cb13b2d38", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/cov__inv_8hpp_source.html b/docs/doxygen/html/cov__inv_8hpp_source.html new file mode 100644 index 000000000..eaebcab03 --- /dev/null +++ b/docs/doxygen/html/cov__inv_8hpp_source.html @@ -0,0 +1,131 @@ + + + + + + + +NumCpp: cov_inv.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
cov_inv.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+ +
32 #include "NumCpp/Functions/cov.hpp"
+
33 #include "NumCpp/Linalg/inv.hpp"
+
34 
+
35 namespace nc
+
36 {
+
37  //============================================================================
+
38  // Method Description:
+
48  template<typename dtype>
+
49  NdArray<double> cov_inv(const NdArray<dtype>& x, bool bias = false)
+
50  {
+ +
52 
+
53  return linalg::inv(cov(x, bias));
+
54  }
+
55 } // namespace nc
+ + +
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition: StaticAsserts.hpp:37
+ + + +
NdArray< double > inv(const NdArray< dtype > &inArray)
Definition: inv.hpp:52
+
Definition: Coordinate.hpp:45
+
NdArray< double > cov_inv(const NdArray< dtype > &x, bool bias=false)
Definition: cov_inv.hpp:49
+
NdArray< double > cov(const NdArray< dtype > &x, bool bias=false)
Definition: cov.hpp:52
+
+
+ + + + diff --git a/docs/doxygen/html/cross_8hpp.html b/docs/doxygen/html/cross_8hpp.html index 0cf67ba31..7415fd252 100644 --- a/docs/doxygen/html/cross_8hpp.html +++ b/docs/doxygen/html/cross_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: cross.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
extract.hpp File Reference
+
+
+
#include "NumCpp/NdArray.hpp"
+#include "NumCpp/Core/Internal/Error.hpp"
+#include <vector>
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + +

+Functions

template<typename dtype >
NdArray< dtype > nc::extract (const NdArray< bool > &condition, const NdArray< dtype > &arr)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/extract_8hpp.js b/docs/doxygen/html/extract_8hpp.js new file mode 100644 index 000000000..2bf77bca5 --- /dev/null +++ b/docs/doxygen/html/extract_8hpp.js @@ -0,0 +1,4 @@ +var extract_8hpp = +[ + [ "extract", "extract_8hpp.html#af75594a13a627d4b014cf04749324571", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/extract_8hpp_source.html b/docs/doxygen/html/extract_8hpp_source.html new file mode 100644 index 000000000..0bef0dba5 --- /dev/null +++ b/docs/doxygen/html/extract_8hpp_source.html @@ -0,0 +1,140 @@ + + + + + + + +NumCpp: extract.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
extract.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+ +
32 
+
33 #include <vector>
+
34 
+
35 namespace nc
+
36 {
+
37  //============================================================================
+
38  // Method Description:
+
47  template<typename dtype>
+
48  NdArray<dtype> extract(const NdArray<bool>& condition, const NdArray<dtype>& arr)
+
49  {
+
50  if (condition.size() != arr.size())
+
51  {
+
52  THROW_INVALID_ARGUMENT_ERROR("Input arguments 'condition' and 'arr' must have the same size.");
+
53  }
+
54 
+
55  std::vector<dtype> values;
+
56  for (decltype(arr.size()) i = 0; i < arr.size(); ++i)
+
57  {
+
58  if (condition[i])
+
59  {
+
60  values.push_back(arr[i]);
+
61  }
+
62  }
+
63 
+
64  return NdArray<dtype>(values.begin(), values.end());
+
65  }
+
66 } // namespace nc
+ +
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition: Error.hpp:36
+ +
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:72
+
size_type size() const noexcept
Definition: NdArrayCore.hpp:4296
+
Definition: Coordinate.hpp:45
+
NdArray< dtype > extract(const NdArray< bool > &condition, const NdArray< dtype > &arr)
Definition: extract.hpp:48
+
+
+ + + + diff --git a/docs/doxygen/html/extreme_value_8hpp.html b/docs/doxygen/html/extreme_value_8hpp.html index 276810bb0..be84ea8b1 100644 --- a/docs/doxygen/html/extreme_value_8hpp.html +++ b/docs/doxygen/html/extreme_value_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: extremeValue.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
geomspace.hpp File Reference
+
+
+ +

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + +

+Functions

template<typename dtype >
NdArray< double > nc::geomspace (dtype start, dtype stop, uint32 num=50, bool endPoint=true)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/geomspace_8hpp.js b/docs/doxygen/html/geomspace_8hpp.js new file mode 100644 index 000000000..3f2f532b2 --- /dev/null +++ b/docs/doxygen/html/geomspace_8hpp.js @@ -0,0 +1,4 @@ +var geomspace_8hpp = +[ + [ "geomspace", "geomspace_8hpp.html#aa5cdd68a27ae041c382eabfb07dfa9bc", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/geomspace_8hpp_source.html b/docs/doxygen/html/geomspace_8hpp_source.html new file mode 100644 index 000000000..bc29dd189 --- /dev/null +++ b/docs/doxygen/html/geomspace_8hpp_source.html @@ -0,0 +1,158 @@ + + + + + + + +NumCpp: geomspace.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
geomspace.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+ + + + + + +
37 
+
38 namespace nc
+
39 {
+
40  //============================================================================
+
41  // Method Description:
+
57  template<typename dtype>
+
58  NdArray<double> geomspace(dtype start, dtype stop, uint32 num = 50, bool endPoint = true)
+
59  {
+ +
61 
+
62  if (utils::essentiallyEqual(start, dtype{0}))
+
63  {
+
64  THROW_INVALID_ARGUMENT_ERROR("Geometric sequence cannot include zero");
+
65  }
+
66 
+
67  if (num == 1)
+
68  {
+
69  return { static_cast<double>(start) };
+
70  }
+
71  else if (num == 2 && endPoint)
+
72  {
+
73  return {static_cast<double>(start), static_cast<double>(stop)};
+
74  }
+
75 
+
76  const auto base = nth_root(stop / start, num - 1);
+
77  const auto logStart = logb(start, base);
+
78  const auto logStop = logb(stop, base);
+
79  return logspace(logStart, logStop, num, endPoint, base);
+
80  }
+
81 } // namespace nc
+ +
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition: Error.hpp:36
+ + +
#define STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype)
Definition: StaticAsserts.hpp:50
+ + + + +
bool essentiallyEqual(dtype inValue1, dtype inValue2) noexcept
Definition: essentiallyEqual.hpp:52
+
Definition: Coordinate.hpp:45
+
NdArray< double > logspace(dtype start, dtype stop, uint32 num=50, bool endPoint=true, double base=10.0)
Definition: logspace.hpp:57
+
auto logb(dtype inValue, dtype inBase) noexcept
Definition: logb.hpp:49
+
NdArray< double > geomspace(dtype start, dtype stop, uint32 num=50, bool endPoint=true)
Definition: geomspace.hpp:58
+
double nth_root(dtype1 inValue, dtype2 inRoot) noexcept
Definition: nth_root.hpp:46
+
std::uint32_t uint32
Definition: Types.hpp:40
+ +
+
+ + + + diff --git a/docs/doxygen/html/globals.html b/docs/doxygen/html/globals.html index fbdee004e..4321c5aa3 100644 --- a/docs/doxygen/html/globals.html +++ b/docs/doxygen/html/globals.html @@ -3,7 +3,7 @@ - + NumCpp: Globals @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
hamming.hpp File Reference
+
+
+
#include <cmath>
+#include "NumCpp/NdArray.hpp"
+#include "NumCpp/Core/Constants.hpp"
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + +

+Functions

NdArray< double > nc::hamming (int32 m)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/hamming_8hpp.js b/docs/doxygen/html/hamming_8hpp.js new file mode 100644 index 000000000..56aab8744 --- /dev/null +++ b/docs/doxygen/html/hamming_8hpp.js @@ -0,0 +1,4 @@ +var hamming_8hpp = +[ + [ "hamming", "hamming_8hpp.html#ad7fcd267d31bec0085f82959e3b5f9d3", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/hamming_8hpp_source.html b/docs/doxygen/html/hamming_8hpp_source.html new file mode 100644 index 000000000..6e80f453a --- /dev/null +++ b/docs/doxygen/html/hamming_8hpp_source.html @@ -0,0 +1,142 @@ + + + + + + + +NumCpp: hamming.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
hamming.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include <cmath>
+
31 
+
32 #include "NumCpp/NdArray.hpp"
+ +
34 
+
35 namespace nc
+
36 {
+
37  //============================================================================
+
38  // Method Description:
+ +
49  {
+
50  if (m < 1)
+
51  {
+
52  return {};
+
53  }
+
54 
+
55  const auto mDouble = static_cast<double>(m);
+
56  const auto twoPiDivMMinus1 = (2.0 * constants::pi) / (mDouble - 1.0);
+
57 
+
58  NdArray<double> result(1, m);
+
59  int32 i = 0;
+
60  for (auto n : linspace(0.0, mDouble - 1.0, m, true))
+
61  {
+
62  result[i++] = 0.54 - 0.46 * std::cos(twoPiDivMMinus1 * n);
+
63  }
+
64 
+
65  return result;
+
66  }
+
67 } // namespace nc
+ + + +
constexpr double pi
Pi.
Definition: Constants.hpp:43
+
Definition: Coordinate.hpp:45
+
NdArray< dtype > linspace(dtype inStart, dtype inStop, uint32 inNum=50, bool endPoint=true)
Definition: linspace.hpp:61
+
auto cos(dtype inValue) noexcept
Definition: cos.hpp:49
+
std::int32_t int32
Definition: Types.hpp:36
+
NdArray< double > hamming(int32 m)
Definition: hamming.hpp:48
+
+
+ + + + diff --git a/docs/doxygen/html/hamming_encode_8hpp.html b/docs/doxygen/html/hamming_encode_8hpp.html new file mode 100644 index 000000000..0d0707e60 --- /dev/null +++ b/docs/doxygen/html/hamming_encode_8hpp.html @@ -0,0 +1,171 @@ + + + + + + + +NumCpp: hammingEncode.hpp File Reference + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
hammingEncode.hpp File Reference
+
+
+
#include <bitset>
+#include <cmath>
+#include <cstdlib>
+#include <stdexcept>
+#include <type_traits>
+#include <vector>
+#include "boost/dynamic_bitset.hpp"
+#include "NumCpp/Core/Internal/TypeTraits.hpp"
+
+

Go to the source code of this file.

+ + + + + + + + +

+Namespaces

 nc
 
 nc::edac
 
 nc::edac::detail
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

bool nc::edac::detail::calculateParity (const boost::dynamic_bitset<> &data) noexcept
 
template<std::size_t DataBits>
constexpr bool nc::edac::detail::calculateParity (const std::bitset< DataBits > &data) noexcept
 
template<std::size_t DataBits, typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
bool nc::edac::detail::calculateParity (const std::bitset< DataBits > &data, IntType parityBit)
 
template<std::size_t DataBits, std::size_t EncodedBits, std::enable_if_t< greaterThan_v< EncodedBits, DataBits >, int > = 0>
std::size_t nc::edac::detail::checkBitsConsistent ()
 
template<typename IntType1 , typename IntType2 , std::enable_if_t< std::is_integral_v< IntType1 >, int > = 0, std::enable_if_t< std::is_integral_v< IntType2 >, int > = 0>
std::vector< std::size_t > nc::edac::detail::dataBitsCovered (IntType1 numDataBits, IntType2 parityBit)
 
template<std::size_t DataBits, std::size_t EncodedBits, std::enable_if_t< greaterThan_v< EncodedBits, DataBits >, int > = 0>
int nc::edac::decode (std::bitset< EncodedBits > encodedBits, std::bitset< DataBits > &decodedBits)
 
template<std::size_t DataBits>
boost::dynamic_bitset nc::edac::encode (const std::bitset< DataBits > &dataBits)
 
template<std::size_t DataBits, std::size_t EncodedBits, std::enable_if_t< greaterThan_v< EncodedBits, DataBits >, int > = 0>
std::bitset< DataBits > nc::edac::detail::extractData (const std::bitset< EncodedBits > &encodedBits) noexcept
 
template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
constexpr bool nc::edac::detail::isPowerOfTwo (IntType n) noexcept
 Tests if value is a power of two. More...
 
template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
std::size_t nc::edac::detail::nextPowerOfTwo (IntType n)
 
template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
std::size_t nc::edac::detail::numSecdedParityBitsNeeded (IntType numDataBits)
 
template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
std::vector< std::size_t > nc::edac::detail::powersOfTwo (IntType n)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Hamming EDAC encoding https://en.wikipedia.org/wiki/Hamming_code

+
+
+ + + + diff --git a/docs/doxygen/html/hamming_encode_8hpp.js b/docs/doxygen/html/hamming_encode_8hpp.js new file mode 100644 index 000000000..e05ed6c3b --- /dev/null +++ b/docs/doxygen/html/hamming_encode_8hpp.js @@ -0,0 +1,15 @@ +var hamming_encode_8hpp = +[ + [ "calculateParity", "hamming_encode_8hpp.html#abde37c852253de171988da5e4b775273", null ], + [ "calculateParity", "hamming_encode_8hpp.html#ad3215e8486eb3a544a483e5234c856d7", null ], + [ "calculateParity", "hamming_encode_8hpp.html#aea349d7b4d28ca91b85bcb3a2823c145", null ], + [ "checkBitsConsistent", "hamming_encode_8hpp.html#af386b23445a4942453c69cff80ee0e20", null ], + [ "dataBitsCovered", "hamming_encode_8hpp.html#aa8a14d5fd872ed0292631e57f5afe618", null ], + [ "decode", "hamming_encode_8hpp.html#aa24d4f99fd0739df7480845e96668e0f", null ], + [ "encode", "hamming_encode_8hpp.html#af5c36a1f2c74d632192cf9fe29cc5f03", null ], + [ "extractData", "hamming_encode_8hpp.html#a1c606c3f9302bb406021a50006898ebf", null ], + [ "isPowerOfTwo", "hamming_encode_8hpp.html#a7f066ec8b196c2943ae99382eb63e2fb", null ], + [ "nextPowerOfTwo", "hamming_encode_8hpp.html#a279241a794bffbea6920299cf8e5c4a1", null ], + [ "numSecdedParityBitsNeeded", "hamming_encode_8hpp.html#a6ee59971c08bfdc3e11a0245f17d5f9a", null ], + [ "powersOfTwo", "hamming_encode_8hpp.html#ad4328ffa9ba9949a9c4b494592496055", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/hamming_encode_8hpp_source.html b/docs/doxygen/html/hamming_encode_8hpp_source.html new file mode 100644 index 000000000..6a8949fdf --- /dev/null +++ b/docs/doxygen/html/hamming_encode_8hpp_source.html @@ -0,0 +1,429 @@ + + + + + + + +NumCpp: hammingEncode.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
hammingEncode.hpp
+
+
+Go to the documentation of this file.
1 
+
29 #pragma once
+
30 
+
31 #ifndef NUMCPP_NO_USE_BOOST
+
32 
+
33 #include <bitset>
+
34 #include <cmath>
+
35 #include <cstdlib>
+
36 #include <stdexcept>
+
37 #include <type_traits>
+
38 #include <vector>
+
39 
+
40 #include "boost/dynamic_bitset.hpp"
+
41 
+ +
43 
+
44 namespace nc
+
45 {
+
46  namespace edac::detail
+
47  {
+
48  //============================================================================
+
49  // Method Description:
+
55  template<
+
56  typename IntType,
+
57  std::enable_if_t<std::is_integral_v<IntType>, int> = 0
+
58  >
+
59  constexpr bool isPowerOfTwo(IntType n) noexcept
+
60  {
+
61  // Returns true if the given non-negative integer n is a power of two.
+
62  return n != 0 && (n & (n - 1)) == 0;
+
63  }
+
64 
+
65  //============================================================================
+
66  // Method Description:
+
77  template<
+
78  typename IntType,
+
79  std::enable_if_t<std::is_integral_v<IntType>, int> = 0
+
80  >
+
81  std::size_t nextPowerOfTwo(IntType n)
+
82  {
+
83  if (n < 0)
+
84  {
+
85  throw std::invalid_argument("Input value must be greater than or equal to zero.");
+
86  }
+
87 
+
88  if (isPowerOfTwo(n))
+
89  {
+
90  return static_cast<std::size_t>(n) << 1;
+
91  }
+
92 
+
93  return static_cast<std::size_t>(std::pow(2, std::ceil(std::log2(n))));
+
94  }
+
95 
+
96  //============================================================================
+
97  // Method Description:
+
104  template<
+
105  typename IntType,
+
106  std::enable_if_t<std::is_integral_v<IntType>, int> = 0
+
107  >
+
108  std::vector<std::size_t> powersOfTwo(IntType n)
+
109  {
+
110  auto i = std::size_t{ 0 };
+
111  auto power = std::size_t{ 1 };
+
112  auto powers = std::vector<std::size_t>();
+
113  powers.reserve(n);
+
114 
+
115  while (i < static_cast<std::size_t>(n))
+
116  {
+
117  powers.push_back(power);
+
118  power <<= 1;
+
119  ++i;
+
120  }
+
121 
+
122  return powers;
+
123  }
+
124 
+
125  //============================================================================
+
126  // Method Description:
+
134  template<
+
135  typename IntType,
+
136  std::enable_if_t<std::is_integral_v<IntType>, int> = 0
+
137  >
+
138  std::size_t numSecdedParityBitsNeeded(IntType numDataBits)
+
139  {
+
140  const auto n = nextPowerOfTwo(numDataBits);
+
141  const auto lowerBin = static_cast<std::size_t>(std::floor(std::log2(n)));
+
142  const auto upperBin = lowerBin + 1;
+
143  const auto dataBitBoundary = n - lowerBin - 1;
+
144  const auto numParityBits = numDataBits <= dataBitBoundary ? lowerBin + 1 : upperBin + 1;
+
145 
+
146  if (!isPowerOfTwo(numParityBits + numDataBits))
+
147  {
+
148  throw std::runtime_error("input number of data bits is not a valid Hamming SECDED code configuration.");
+
149  }
+
150 
+
151  return numParityBits;
+
152  }
+
153 
+
154  //============================================================================
+
155  // Method Description:
+
166  template<
+
167  typename IntType1,
+
168  typename IntType2,
+
169  std::enable_if_t<std::is_integral_v<IntType1>, int> = 0,
+
170  std::enable_if_t<std::is_integral_v<IntType2>, int> = 0
+
171  >
+
172  std::vector<std::size_t> dataBitsCovered(IntType1 numDataBits, IntType2 parityBit)
+
173  {
+
174  if (!isPowerOfTwo(parityBit))
+
175  {
+
176  throw std::invalid_argument("All hamming parity bits are indexed by powers of two.");
+
177  }
+
178 
+
179  std::size_t dataIndex = 1; // bit we're currently at in the DATA bitstring
+
180  std::size_t totalIndex = 3; // bit we're currently at in the OVERALL bitstring
+
181  auto parityBit_ = static_cast<std::size_t>(parityBit);
+
182 
+
183  auto indices = std::vector<std::size_t>();
+
184  indices.reserve(numDataBits); // worst case
+
185 
+
186  while (dataIndex <= static_cast<std::size_t>(numDataBits))
+
187  {
+
188  const auto currentBitIsData = !isPowerOfTwo(totalIndex);
+
189  if (currentBitIsData && (totalIndex % (parityBit_ << 1)) >= parityBit_)
+
190  {
+
191  indices.push_back(dataIndex - 1); // adjust output to be zero indexed
+
192  }
+
193 
+
194  dataIndex += currentBitIsData ? 1 : 0;
+
195  ++totalIndex;
+
196  }
+
197 
+
198  return indices;
+
199  }
+
200 
+
201  //============================================================================
+
202  // Method Description:
+
208  template<std::size_t DataBits>
+
209  constexpr bool calculateParity(const std::bitset<DataBits>& data) noexcept
+
210  {
+
211  bool parity = false;
+
212  for (std::size_t i = 0; i < DataBits - 1; ++i)
+
213  {
+
214  parity ^= data[i];
+
215  }
+
216 
+
217  return parity;
+
218  }
+
219 
+
220  //============================================================================
+
221  // Method Description:
+
227  inline bool calculateParity(const boost::dynamic_bitset<>& data) noexcept
+
228  {
+
229  bool parity = false;
+
230  for (std::size_t i = 0; i < data.size() - 1; ++i)
+
231  {
+
232  parity ^= data[i];
+
233  }
+
234 
+
235  return parity;
+
236  }
+
237 
+
238  //============================================================================
+
239  // Method Description:
+
249  template<
+
250  std::size_t DataBits,
+
251  typename IntType,
+
252  std::enable_if_t<std::is_integral_v<IntType>, int> = 0
+
253  >
+
254  bool calculateParity(const std::bitset<DataBits>& data, IntType parityBit)
+
255  {
+
256  bool parity = false;
+
257  for (const auto i : dataBitsCovered(DataBits, parityBit))
+
258  {
+
259  parity ^= data[i];
+
260  }
+
261 
+
262  return parity;
+
263  }
+
264 
+
265  //============================================================================
+
266  // Method Description:
+
273  template<
+
274  std::size_t DataBits,
+
275  std::size_t EncodedBits,
+
276  std::enable_if_t<greaterThan_v<EncodedBits, DataBits>, int> = 0
+
277  >
+
278  std::size_t checkBitsConsistent()
+
279  {
+
280  const auto numParityBits = detail::numSecdedParityBitsNeeded(DataBits);
+
281  if (numParityBits + DataBits != EncodedBits)
+
282  {
+
283  throw std::runtime_error("DataBits and EncodedBits are not consistent");
+
284  }
+
285 
+
286  return numParityBits;
+
287  }
+
288 
+
289  //============================================================================
+
290  // Method Description:
+
297  template<
+
298  std::size_t DataBits,
+
299  std::size_t EncodedBits,
+
300  std::enable_if_t<greaterThan_v<EncodedBits, DataBits>, int> = 0
+
301  >
+
302  std::bitset<DataBits> extractData(const std::bitset<EncodedBits>& encodedBits) noexcept
+
303  {
+
304  auto dataBits = std::bitset<DataBits>();
+
305 
+
306  std::size_t dataIndex = 0;
+
307  for (std::size_t encodedIndex = 0; encodedIndex < EncodedBits; ++encodedIndex)
+
308  {
+
309  if (!isPowerOfTwo(encodedIndex + 1))
+
310  {
+
311  dataBits[dataIndex++] = encodedBits[encodedIndex];
+
312  if (dataIndex == DataBits)
+
313  {
+
314  break;
+
315  }
+
316  }
+
317  }
+
318 
+
319  return dataBits;
+
320  }
+
321  } // namespace edac::detail
+
322 
+
323  namespace edac
+
324  {
+
325  //============================================================================
+
326  // Method Description:
+
333  template<std::size_t DataBits>
+
334  boost::dynamic_bitset<> encode(const std::bitset<DataBits>& dataBits)
+
335  {
+
336  const auto numParityBits = detail::numSecdedParityBitsNeeded(DataBits);
+
337  const auto numEncodedBits = numParityBits + DataBits;
+
338 
+
339  auto encodedBits = boost::dynamic_bitset<>(numEncodedBits);
+
340 
+
341  // set the parity bits
+
342  for (const auto parityBit : detail::powersOfTwo(numParityBits - 1)) // -1 because overall parity will be calculated seperately later
+
343  {
+
344  encodedBits[parityBit - 1] = detail::calculateParity(dataBits, parityBit);
+
345  }
+
346 
+
347  // set the data bits, switch to 1 based to make things easier for isPowerOfTwo
+
348  std::size_t dataBitIndex = 0;
+
349  for (std::size_t bitIndex = 1; bitIndex <= numEncodedBits - 1; ++bitIndex) // -1 to account for the overall parity bit
+
350  {
+
351  if (!detail::isPowerOfTwo(bitIndex))
+
352  {
+
353  encodedBits[bitIndex - 1] = dataBits[dataBitIndex++];
+
354  }
+
355  }
+
356 
+
357  // compute and set overall parity for the entire encoded data (not including the overall parity bit itself)
+
358  encodedBits[numEncodedBits - 1] = detail::calculateParity(encodedBits); // overall parity at the end
+
359 
+
360  // all done!
+
361  return encodedBits;
+
362  }
+
363 
+
364  //============================================================================
+
365  // Method Description:
+
375  template<
+
376  std::size_t DataBits,
+
377  std::size_t EncodedBits,
+
378  std::enable_if_t<greaterThan_v<EncodedBits, DataBits>, int> = 0
+
379  >
+
380  int decode(std::bitset<EncodedBits> encodedBits, std::bitset<DataBits>& decodedBits)
+
381  {
+
382  const auto numParityBits = detail::checkBitsConsistent<DataBits, EncodedBits>();
+
383 
+
384  // the data bits, which may be corrupted
+
385  decodedBits = detail::extractData<DataBits>(encodedBits);
+
386 
+
387  // check the overall parity bit
+
388  const auto overallExpected = detail::calculateParity(encodedBits);
+
389  const auto overallActual = encodedBits[EncodedBits - 1];
+
390  const auto overallCorrect = overallExpected == overallActual;
+
391 
+
392  // check individual parities - each parity bit's index (besides overall parity) is a power of two
+
393  std::size_t indexOfError = 0;
+
394  for (const auto parityBit : detail::powersOfTwo(numParityBits - 1))
+
395  {
+
396  const auto expected = detail::calculateParity(decodedBits, parityBit);
+
397  const auto actual = encodedBits[parityBit - 1]; // -1 because parityBit is 1 based
+
398  if (expected != actual)
+
399  {
+
400  indexOfError += parityBit;
+
401  }
+
402  }
+
403 
+
404  // attempt to repair a single flipped bit or throw exception if more than one
+
405  if (overallCorrect && indexOfError != 0)
+
406  {
+
407  // two errors found
+
408  return 2;
+
409  }
+
410  else if (!overallCorrect && indexOfError != 0)
+
411  {
+
412  // one error found, flip the bit in error and we're good
+
413  encodedBits.flip(indexOfError - 1);
+
414  decodedBits = detail::extractData<DataBits>(encodedBits);
+
415  return 1;
+
416  }
+
417 
+
418  return 0;
+
419  }
+
420  } // namespace edac
+
421 } // namespace nc
+
422 #endif // #ifndef NUMCPP_NO_USE_BOOST
+ +
std::bitset< DataBits > extractData(const std::bitset< EncodedBits > &encodedBits) noexcept
Definition: hammingEncode.hpp:302
+
std::size_t nextPowerOfTwo(IntType n)
Definition: hammingEncode.hpp:81
+
std::size_t numSecdedParityBitsNeeded(IntType numDataBits)
Definition: hammingEncode.hpp:138
+
constexpr bool isPowerOfTwo(IntType n) noexcept
Tests if value is a power of two.
Definition: hammingEncode.hpp:59
+
std::vector< std::size_t > dataBitsCovered(IntType1 numDataBits, IntType2 parityBit)
Definition: hammingEncode.hpp:172
+
constexpr bool calculateParity(const std::bitset< DataBits > &data) noexcept
Definition: hammingEncode.hpp:209
+
std::vector< std::size_t > powersOfTwo(IntType n)
Definition: hammingEncode.hpp:108
+
std::size_t checkBitsConsistent()
Definition: hammingEncode.hpp:278
+
int decode(std::bitset< EncodedBits > encodedBits, std::bitset< DataBits > &decodedBits)
Definition: hammingEncode.hpp:380
+
boost::dynamic_bitset encode(const std::bitset< DataBits > &dataBits)
Definition: hammingEncode.hpp:334
+
Definition: Coordinate.hpp:45
+
constexpr dtype power(dtype inValue, uint8 inExponent) noexcept
Definition: Functions/power.hpp:52
+
dtype ceil(dtype inValue) noexcept
Definition: ceil.hpp:48
+
auto log2(dtype inValue) noexcept
Definition: log2.hpp:49
+
dtype floor(dtype inValue) noexcept
Definition: floor.hpp:48
+
+
+ + + + diff --git a/docs/doxygen/html/hanning_8hpp.html b/docs/doxygen/html/hanning_8hpp.html new file mode 100644 index 000000000..5dcd6df1a --- /dev/null +++ b/docs/doxygen/html/hanning_8hpp.html @@ -0,0 +1,128 @@ + + + + + + + +NumCpp: hanning.hpp File Reference + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
hanning.hpp File Reference
+
+
+
#include <cmath>
+#include "NumCpp/NdArray.hpp"
+#include "NumCpp/Core/Constants.hpp"
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + +

+Functions

NdArray< double > nc::hanning (int32 m)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/hanning_8hpp.js b/docs/doxygen/html/hanning_8hpp.js new file mode 100644 index 000000000..68a2fcdfd --- /dev/null +++ b/docs/doxygen/html/hanning_8hpp.js @@ -0,0 +1,4 @@ +var hanning_8hpp = +[ + [ "hanning", "hanning_8hpp.html#ab50f9ea31f882bd8121c1adf820798b3", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/hanning_8hpp_source.html b/docs/doxygen/html/hanning_8hpp_source.html new file mode 100644 index 000000000..8e44bb6d4 --- /dev/null +++ b/docs/doxygen/html/hanning_8hpp_source.html @@ -0,0 +1,142 @@ + + + + + + + +NumCpp: hanning.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
hanning.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include <cmath>
+
31 
+
32 #include "NumCpp/NdArray.hpp"
+ +
34 
+
35 namespace nc
+
36 {
+
37  //============================================================================
+
38  // Method Description:
+ +
49  {
+
50  if (m < 1)
+
51  {
+
52  return {};
+
53  }
+
54 
+
55  const auto mDouble = static_cast<double>(m);
+
56  const auto twoPiDivMMinus1 = (2.0 * constants::pi) / (mDouble - 1.0);
+
57 
+
58  NdArray<double> result(1, m);
+
59  int32 i = 0;
+
60  for (auto n : linspace(0.0, mDouble - 1.0, m, true))
+
61  {
+
62  result[i++] = 0.5 - 0.5 * std::cos(twoPiDivMMinus1 * n);
+
63  }
+
64 
+
65  return result;
+
66  }
+
67 } // namespace nc
+ + + +
constexpr double pi
Pi.
Definition: Constants.hpp:43
+
Definition: Coordinate.hpp:45
+
NdArray< dtype > linspace(dtype inStart, dtype inStop, uint32 inNum=50, bool endPoint=true)
Definition: linspace.hpp:61
+
auto cos(dtype inValue) noexcept
Definition: cos.hpp:49
+
std::int32_t int32
Definition: Types.hpp:36
+
NdArray< double > hanning(int32 m)
Definition: hanning.hpp:48
+
+
+ + + + diff --git a/docs/doxygen/html/hat_8hpp.html b/docs/doxygen/html/hat_8hpp.html index b8aff1a90..e79f82ba2 100644 --- a/docs/doxygen/html/hat_8hpp.html +++ b/docs/doxygen/html/hat_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: hat.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
inner.hpp File Reference
+
+
+
#include "NumCpp/NdArray.hpp"
+#include "NumCpp/Core/Internal/Error.hpp"
+#include "NumCpp/Core/Internal/StaticAsserts.hpp"
+#include <algorithm>
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + +

+Functions

template<typename dtype >
dtype nc::inner (const NdArray< dtype > &a, const NdArray< dtype > &b)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/inner_8hpp.js b/docs/doxygen/html/inner_8hpp.js new file mode 100644 index 000000000..60c6a31e7 --- /dev/null +++ b/docs/doxygen/html/inner_8hpp.js @@ -0,0 +1,4 @@ +var inner_8hpp = +[ + [ "inner", "inner_8hpp.html#aa44cb1f69e57caf4a79ff92960ddaebd", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/inner_8hpp_source.html b/docs/doxygen/html/inner_8hpp_source.html new file mode 100644 index 000000000..72eae181d --- /dev/null +++ b/docs/doxygen/html/inner_8hpp_source.html @@ -0,0 +1,137 @@ + + + + + + + +NumCpp: inner.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
inner.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+ + +
33 
+
34 #include <algorithm>
+
35 namespace nc
+
36 {
+
37  //============================================================================
+
38  // Method Description:
+
47  template<typename dtype>
+
48  dtype inner(const NdArray<dtype>& a, const NdArray<dtype>& b)
+
49  {
+ +
51 
+
52  if (a.size() != b.size())
+
53  {
+
54  THROW_INVALID_ARGUMENT_ERROR("Inputs 'a' and 'b' must have the same size");
+
55  }
+
56 
+
57  return std::inner_product(a.cbegin(), a.cend(), b.cbegin(), dtype{ 0 });
+
58  }
+
59 } // namespace nc
+ +
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition: Error.hpp:36
+ + +
#define STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype)
Definition: StaticAsserts.hpp:50
+
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:72
+
size_type size() const noexcept
Definition: NdArrayCore.hpp:4296
+
const_iterator cbegin() const noexcept
Definition: NdArrayCore.hpp:1216
+
const_iterator cend() const noexcept
Definition: NdArrayCore.hpp:1524
+
Definition: Coordinate.hpp:45
+
dtype inner(const NdArray< dtype > &a, const NdArray< dtype > &b)
Definition: inner.hpp:48
+
+
+ + + + diff --git a/docs/doxygen/html/intersect1d_8hpp.html b/docs/doxygen/html/intersect1d_8hpp.html index 372c4beb8..e8589e3ce 100644 --- a/docs/doxygen/html/intersect1d_8hpp.html +++ b/docs/doxygen/html/intersect1d_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: intersect1d.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
isneginf.hpp File Reference
+
+
+ +

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + + + + +

+Functions

template<typename dtype >
NdArray< bool > nc::isneginf (const NdArray< dtype > &inArray)
 
template<typename dtype >
bool nc::isneginf (dtype inValue) noexcept
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/isneginf_8hpp.js b/docs/doxygen/html/isneginf_8hpp.js new file mode 100644 index 000000000..b1f502d97 --- /dev/null +++ b/docs/doxygen/html/isneginf_8hpp.js @@ -0,0 +1,5 @@ +var isneginf_8hpp = +[ + [ "isneginf", "isneginf_8hpp.html#af02b9a27f4177ad1ccb9ecea6ab79f46", null ], + [ "isneginf", "isneginf_8hpp.html#abb8e6e08f1b4374017ef8e4cd1841ba6", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/isneginf_8hpp_source.html b/docs/doxygen/html/isneginf_8hpp_source.html new file mode 100644 index 000000000..c3452debd --- /dev/null +++ b/docs/doxygen/html/isneginf_8hpp_source.html @@ -0,0 +1,148 @@ + + + + + + + +NumCpp: isneginf.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
isneginf.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+ + +
33 
+
34 namespace nc
+
35 {
+
36  //============================================================================
+
37  // Method Description:
+
46  template<typename dtype>
+
47  bool isneginf(dtype inValue) noexcept
+
48  {
+
49  STATIC_ASSERT_FLOAT(dtype);
+
50 
+
51  return inValue < 0 && std::isinf(inValue);
+
52  }
+
53 
+
54  //============================================================================
+
55  // Method Description:
+
64  template<typename dtype>
+ +
66  {
+
67  NdArray<bool> returnArray(inArray.shape());
+
68  stl_algorithms::transform(inArray.cbegin(), inArray.cend(), returnArray.begin(),
+
69  [](dtype inValue) noexcept -> bool
+
70  {
+
71  return isneginf(inValue);
+
72  });
+
73 
+
74  return returnArray;
+
75  }
+
76 } // namespace nc
+ + +
#define STATIC_ASSERT_FLOAT(dtype)
Definition: StaticAsserts.hpp:43
+ +
const_iterator cbegin() const noexcept
Definition: NdArrayCore.hpp:1216
+
Shape shape() const noexcept
Definition: NdArrayCore.hpp:4283
+
const_iterator cend() const noexcept
Definition: NdArrayCore.hpp:1524
+
iterator begin() noexcept
Definition: NdArrayCore.hpp:1166
+ +
OutputIt transform(InputIt first, InputIt last, OutputIt destination, UnaryOperation unaryFunction)
Definition: StlAlgorithms.hpp:702
+
Definition: Coordinate.hpp:45
+
bool isneginf(dtype inValue) noexcept
Definition: isneginf.hpp:47
+
bool isinf(dtype inValue) noexcept
Definition: isinf.hpp:49
+
+
+ + + + diff --git a/docs/doxygen/html/isposinf_8hpp.html b/docs/doxygen/html/isposinf_8hpp.html new file mode 100644 index 000000000..92b4d5100 --- /dev/null +++ b/docs/doxygen/html/isposinf_8hpp.html @@ -0,0 +1,132 @@ + + + + + + + +NumCpp: isposinf.hpp File Reference + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
isposinf.hpp File Reference
+
+
+ +

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + + + + +

+Functions

template<typename dtype >
NdArray< bool > nc::isposinf (const NdArray< dtype > &inArray)
 
template<typename dtype >
bool nc::isposinf (dtype inValue) noexcept
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/isposinf_8hpp.js b/docs/doxygen/html/isposinf_8hpp.js new file mode 100644 index 000000000..5729644a5 --- /dev/null +++ b/docs/doxygen/html/isposinf_8hpp.js @@ -0,0 +1,5 @@ +var isposinf_8hpp = +[ + [ "isposinf", "isposinf_8hpp.html#a00f30f48ef39bc0fa8149cb09b286e07", null ], + [ "isposinf", "isposinf_8hpp.html#a7229b43ce1e19fb560d461b6beda24af", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/isposinf_8hpp_source.html b/docs/doxygen/html/isposinf_8hpp_source.html new file mode 100644 index 000000000..93cba930d --- /dev/null +++ b/docs/doxygen/html/isposinf_8hpp_source.html @@ -0,0 +1,148 @@ + + + + + + + +NumCpp: isposinf.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
isposinf.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+ + +
33 
+
34 namespace nc
+
35 {
+
36  //============================================================================
+
37  // Method Description:
+
46  template<typename dtype>
+
47  bool isposinf(dtype inValue) noexcept
+
48  {
+
49  STATIC_ASSERT_FLOAT(dtype);
+
50 
+
51  return inValue > 0 && std::isinf(inValue);
+
52  }
+
53 
+
54  //============================================================================
+
55  // Method Description:
+
64  template<typename dtype>
+ +
66  {
+
67  NdArray<bool> returnArray(inArray.shape());
+
68  stl_algorithms::transform(inArray.cbegin(), inArray.cend(), returnArray.begin(),
+
69  [](dtype inValue) noexcept -> bool
+
70  {
+
71  return isposinf(inValue);
+
72  });
+
73 
+
74  return returnArray;
+
75  }
+
76 } // namespace nc
+ + +
#define STATIC_ASSERT_FLOAT(dtype)
Definition: StaticAsserts.hpp:43
+ +
const_iterator cbegin() const noexcept
Definition: NdArrayCore.hpp:1216
+
Shape shape() const noexcept
Definition: NdArrayCore.hpp:4283
+
const_iterator cend() const noexcept
Definition: NdArrayCore.hpp:1524
+
iterator begin() noexcept
Definition: NdArrayCore.hpp:1166
+ +
OutputIt transform(InputIt first, InputIt last, OutputIt destination, UnaryOperation unaryFunction)
Definition: StlAlgorithms.hpp:702
+
Definition: Coordinate.hpp:45
+
bool isposinf(dtype inValue) noexcept
Definition: isposinf.hpp:47
+
bool isinf(dtype inValue) noexcept
Definition: isinf.hpp:49
+
+
+ + + + diff --git a/docs/doxygen/html/kaiser_8hpp.html b/docs/doxygen/html/kaiser_8hpp.html new file mode 100644 index 000000000..ab92d1ae3 --- /dev/null +++ b/docs/doxygen/html/kaiser_8hpp.html @@ -0,0 +1,129 @@ + + + + + + + +NumCpp: kaiser.hpp File Reference + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
kaiser.hpp File Reference
+
+
+
#include <cmath>
+#include "NumCpp/NdArray.hpp"
+#include "NumCpp/Special/bessel_in.hpp"
+#include "NumCpp/Utils/sqr.hpp"
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + +

+Functions

NdArray< double > nc::kaiser (int32 m, double beta)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/kaiser_8hpp.js b/docs/doxygen/html/kaiser_8hpp.js new file mode 100644 index 000000000..5adfefea9 --- /dev/null +++ b/docs/doxygen/html/kaiser_8hpp.js @@ -0,0 +1,4 @@ +var kaiser_8hpp = +[ + [ "kaiser", "kaiser_8hpp.html#a40ad53a4a4ad1be06ca85bbf9f9e9d25", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/kaiser_8hpp_source.html b/docs/doxygen/html/kaiser_8hpp_source.html new file mode 100644 index 000000000..c6e128485 --- /dev/null +++ b/docs/doxygen/html/kaiser_8hpp_source.html @@ -0,0 +1,150 @@ + + + + + + + +NumCpp: kaiser.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
kaiser.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include <cmath>
+
31 
+
32 #include "NumCpp/NdArray.hpp"
+ +
34 #include "NumCpp/Utils/sqr.hpp"
+
35 
+
36 namespace nc
+
37 {
+
38  //============================================================================
+
39  // Method Description:
+
48  inline NdArray<double> kaiser(int32 m, double beta)
+
49  {
+
50  if (m < 1)
+
51  {
+
52  return {};
+
53  }
+
54 
+
55  const auto mDouble = static_cast<double>(m);
+
56  const auto mMinus1 = mDouble - 1.0;
+
57  const auto mMinus1Over2 = mMinus1 / 2.0;
+
58  const auto mMinus1Squared = utils::sqr(mMinus1);
+
59  const auto i0Beta = special::bessel_in(0, beta);
+
60 
+
61  NdArray<double> result(1, m);
+
62  int32 i = 0;
+
63  for (auto n : linspace(-mMinus1Over2, mMinus1Over2, m, true))
+
64  {
+
65  auto value = beta * std::sqrt(1.0 - (4.0 * utils::sqr(n)) / mMinus1Squared);
+
66  result[i++] = special::bessel_in(0, value) / i0Beta;
+
67  }
+
68 
+
69  return result;
+
70  }
+
71 } // namespace nc
+ + + +
dtype beta(dtype inAlpha, dtype inBeta)
Definition: Random/beta.hpp:59
+
auto bessel_in(dtype1 inV, dtype2 inX)
Definition: bessel_in.hpp:59
+
constexpr dtype sqr(dtype inValue) noexcept
Definition: sqr.hpp:44
+
Definition: Coordinate.hpp:45
+
NdArray< double > kaiser(int32 m, double beta)
Definition: kaiser.hpp:48
+
NdArray< dtype > linspace(dtype inStart, dtype inStop, uint32 inNum=50, bool endPoint=true)
Definition: linspace.hpp:61
+
std::int32_t int32
Definition: Types.hpp:36
+
auto sqrt(dtype inValue) noexcept
Definition: sqrt.hpp:48
+ +
+
+ + + + diff --git a/docs/doxygen/html/laguerre_8hpp.html b/docs/doxygen/html/laguerre_8hpp.html index 955a5333f..904856465 100644 --- a/docs/doxygen/html/laguerre_8hpp.html +++ b/docs/doxygen/html/laguerre_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: laguerre.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
logb.hpp File Reference
+
+
+
#include "NumCpp/Core/Internal/StaticAsserts.hpp"
+#include "NumCpp/Core/Internal/StlAlgorithms.hpp"
+#include "NumCpp/NdArray.hpp"
+#include <cmath>
+#include <complex>
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + + + + +

+Functions

template<typename dtype >
auto nc::logb (const NdArray< dtype > &inArray, dtype inBase)
 
template<typename dtype >
auto nc::logb (dtype inValue, dtype inBase) noexcept
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/logb_8hpp.js b/docs/doxygen/html/logb_8hpp.js new file mode 100644 index 000000000..a530923e6 --- /dev/null +++ b/docs/doxygen/html/logb_8hpp.js @@ -0,0 +1,5 @@ +var logb_8hpp = +[ + [ "logb", "logb_8hpp.html#a512c632dd9629cbc02ad96398f82ab2a", null ], + [ "logb", "logb_8hpp.html#a4925bc774ee8c671be4e15ba4305d230", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/logb_8hpp_source.html b/docs/doxygen/html/logb_8hpp_source.html new file mode 100644 index 000000000..96d0d623b --- /dev/null +++ b/docs/doxygen/html/logb_8hpp_source.html @@ -0,0 +1,151 @@ + + + + + + + +NumCpp: logb.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
logb.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+ + +
32 #include "NumCpp/NdArray.hpp"
+
33 
+
34 #include <cmath>
+
35 #include <complex>
+
36 
+
37 namespace nc
+
38 {
+
39  //============================================================================
+
40  // Method Description:
+
48  template<typename dtype>
+
49  auto logb(dtype inValue, dtype inBase) noexcept
+
50  {
+ +
52 
+
53  return std::log(inValue) / std::log(inBase);
+
54  }
+
55 
+
56  //============================================================================
+
57  // Method Description:
+
65  template<typename dtype>
+
66  auto logb(const NdArray<dtype>& inArray, dtype inBase)
+
67  {
+
68  NdArray<decltype(logb(dtype{0}, dtype{0}))> returnArray(inArray.shape());
+
69  stl_algorithms::transform(inArray.cbegin(), inArray.cend(), returnArray.begin(),
+
70  [inBase](dtype inValue) noexcept -> auto
+
71  {
+
72  return logb(inValue, inBase);
+
73  });
+
74 
+
75  return returnArray;
+
76  }
+
77 } // namespace nc
+ + +
#define STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype)
Definition: StaticAsserts.hpp:50
+ +
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:72
+
const_iterator cbegin() const noexcept
Definition: NdArrayCore.hpp:1216
+
Shape shape() const noexcept
Definition: NdArrayCore.hpp:4283
+
const_iterator cend() const noexcept
Definition: NdArrayCore.hpp:1524
+
iterator begin() noexcept
Definition: NdArrayCore.hpp:1166
+
OutputIt transform(InputIt first, InputIt last, OutputIt destination, UnaryOperation unaryFunction)
Definition: StlAlgorithms.hpp:702
+
Definition: Coordinate.hpp:45
+
auto log(dtype inValue) noexcept
Definition: log.hpp:50
+
auto logb(dtype inValue, dtype inBase) noexcept
Definition: logb.hpp:49
+
+
+ + + + diff --git a/docs/doxygen/html/logical__and_8hpp.html b/docs/doxygen/html/logical__and_8hpp.html index caafe981e..e7449dff7 100644 --- a/docs/doxygen/html/logical__and_8hpp.html +++ b/docs/doxygen/html/logical__and_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: logical_and.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
logspace.hpp File Reference
+
+
+ +

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + +

+Functions

template<typename dtype >
NdArray< double > nc::logspace (dtype start, dtype stop, uint32 num=50, bool endPoint=true, double base=10.0)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/logspace_8hpp.js b/docs/doxygen/html/logspace_8hpp.js new file mode 100644 index 000000000..df2d0d1b0 --- /dev/null +++ b/docs/doxygen/html/logspace_8hpp.js @@ -0,0 +1,4 @@ +var logspace_8hpp = +[ + [ "logspace", "logspace_8hpp.html#a4342eee2bea5ed3c8ece78b9119efc31", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/logspace_8hpp_source.html b/docs/doxygen/html/logspace_8hpp_source.html new file mode 100644 index 000000000..713922dda --- /dev/null +++ b/docs/doxygen/html/logspace_8hpp_source.html @@ -0,0 +1,141 @@ + + + + + + + +NumCpp: logspace.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
logspace.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+ + + +
34 #include "NumCpp/Utils/powerf.hpp"
+
35 
+
36 namespace nc
+
37 {
+
38  //============================================================================
+
39  // Method Description:
+
56  template<typename dtype>
+
57  NdArray<double> logspace(dtype start, dtype stop, uint32 num = 50, bool endPoint = true, double base = 10.0)
+
58  {
+ +
60 
+
61  auto spacedValues = linspace(static_cast<double>(start), static_cast<double>(stop), num, endPoint);
+
62  stl_algorithms::for_each(spacedValues.begin(), spacedValues.end(),
+
63  [base](auto& value) -> void
+
64  {
+
65  value = utils::powerf(base, value);
+
66  });
+
67 
+
68  return spacedValues;
+
69  }
+
70 } // namespace nc
+ + +
#define STATIC_ASSERT_ARITHMETIC_OR_COMPLEX(dtype)
Definition: StaticAsserts.hpp:50
+ + + + +
void for_each(InputIt first, InputIt last, UnaryFunction f)
Definition: StlAlgorithms.hpp:213
+
Definition: Coordinate.hpp:45
+
NdArray< double > logspace(dtype start, dtype stop, uint32 num=50, bool endPoint=true, double base=10.0)
Definition: logspace.hpp:57
+
NdArray< dtype > linspace(dtype inStart, dtype inStop, uint32 inNum=50, bool endPoint=true)
Definition: linspace.hpp:61
+
std::uint32_t uint32
Definition: Types.hpp:40
+
+
+ + + + diff --git a/docs/doxygen/html/lstsq_8hpp.html b/docs/doxygen/html/lstsq_8hpp.html index 2b899eb2b..5d19d0e35 100644 --- a/docs/doxygen/html/lstsq_8hpp.html +++ b/docs/doxygen/html/lstsq_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: lstsq.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Building
+
+
+

A NumCpp "Hello World" example

+

This example assumes you have followed the steps for installing NumCpp on your system. You will also need to have CMake installed.

+

1. Source File

+

main.cpp

+
#include "NumCpp.hpp"
+
+
#include <cstdlib>
+
#include <iostream>
+
+
int main()
+
{
+
auto a = nc::random::randInt<int>({10, 10}, 0, 100);
+
std::cout << a;
+
+
return EXIT_SUCCESS;
+
}
+ +

2. CMakeLists.txt file

+
cmake_minimum_required(VERSION 3.14)
+
+
project("HelloWorld" CXX)
+
+
add_executable(${PROJECT_NAME} main.cpp)
+
+
find_package(NumCpp 2.6.2 REQUIRED)
+
target_link_libraries(${PROJECT_NAME}
+
NumCpp::NumCpp
+
)
+

3. Build

+

SRC_DIRECTORY = directory containing main.cpp and CMakeLists.txt files

+
>> cd <SRC_DIRECTORY>
+
>> mkdir build
+
>> cd build
+
>> cmake ..
+
>> cmake --build . --config Release
+

4. Run

+

Linux

+
>> ./HelloWorld
+

Windows

+
>> HelloWorld.exe
+

Alternative

+

NumCpp is a header only library so you can of course simply add the NumCpp include directory to your build system's include directories and build that way. However, find_package(NumCpp) takes care of finding and linking in the Boost headers automatically, so if you add the NumCpp headers manually you will need to manually include the Boost headers as well.

+
+
+
+ + + + diff --git a/docs/doxygen/html/md__c___github__num_cpp_docs_markdown__compiler_flags.html b/docs/doxygen/html/md__c___github__num_cpp_docs_markdown__compiler_flags.html new file mode 100644 index 000000000..700c3cf0a --- /dev/null +++ b/docs/doxygen/html/md__c___github__num_cpp_docs_markdown__compiler_flags.html @@ -0,0 +1,108 @@ + + + + + + + +NumCpp: Compiler Flags + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Compiler Flags
+
+
+
    +
  • NUMCPP_NO_USE_BOOST: disables all NumCpp features that require the Boost libraries as a dependency. When this compiler flag is defined NumCpp will have no external dependancies and is completely standalone
  • +
  • NUMCPP_USE_MULTITHREAD: enables STL parallel execution policies throughout the library. Using multi-threaded algorithms can have negative performace impact for "small" array operations and should usually only be used when dealing with large array operations. Benchmarking should be performed with your system and build tools to determine which works best for your setup and application
  • +
  • NUMCPP_INCLUDE_PYBIND_PYTHON_INTERFACE: includes the PyBind11 Python interface helper functions
  • +
  • NUMCPP_INCLUDE_BOOST_PYTHON_INTERFACE: includes the Boost Python interface helper functions
  • +
+
+
+
+ + + + diff --git a/docs/doxygen/html/md__c___github__num_cpp_docs_markdown__installation.html b/docs/doxygen/html/md__c___github__num_cpp_docs_markdown__installation.html new file mode 100644 index 000000000..9c9006386 --- /dev/null +++ b/docs/doxygen/html/md__c___github__num_cpp_docs_markdown__installation.html @@ -0,0 +1,116 @@ + + + + + + + +NumCpp: Installation + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Installation
+
+
+

1. Clone the NumCpp repository from GitHub

+

NUMCPP_REPO_PATH = path to clone repository

+
>> cd <NUMCPP_REPO_PATH>
+
>> git clone https://github.com/dpilger26/NumCpp.git
+

2. Build the install products using CMake

+
>> cd NumCpp
+
>> mkdir build
+
>> cd build
+
>> cmake ..
+

3. Install the includes and CMake target files

+

On Linux run the following command with sudo. On Windows, you may need to open a cmd prompt or PowerShell with admin privileges.

+
>> cmake --build . --target install
+

Alternative

+

NumCpp is a header only library so you can of course simply add the NumCpp include directory (wherever it resides) to your build system's include directories and build that way.

+
+
+
+ + + + diff --git a/docs/doxygen/html/md__c___github__num_cpp_docs_markdown__release_notes.html b/docs/doxygen/html/md__c___github__num_cpp_docs_markdown__release_notes.html new file mode 100644 index 000000000..b2dfd53cb --- /dev/null +++ b/docs/doxygen/html/md__c___github__num_cpp_docs_markdown__release_notes.html @@ -0,0 +1,262 @@ + + + + + + + +NumCpp: Release Notes + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Release Notes
+
+
+

Version 2.7.0

+ +

Version 2.6.2

+
    +
  • tofile and fromfile will now work for generic struct dtypes
  • +
+

Version 2.6.1

+
    +
  • Added more delimiter support to fromfile method
  • +
+

Version 2.6.0

+
    +
  • Added linalg::solve
  • +
+

Version 2.5.1

+
    +
  • Made behavior of interp function consistent with NumPy when passing in non-sorted data
  • +
+

Version 2.5.0

+
    +
  • Added additional NdArray slice overloads
  • +
  • Removed NO_MULTITHREAD compiler flag and replaced with NUMCPP_USE_MULTITHREAD so that single threaded is now the default
  • +
  • renamed NO_USE_BOOST compiler flag to NUMCPP_NO_USE_BOOST
  • +
  • renamed INCLUDE_BOOST_PYTHON_INTERFACE compiler flat to NUMCPP_INCLUDE_BOOST_PYTHON_INTERFACE
  • +
  • renamed INCLUDE_PYBIND_PYTHON_INTERFACE compiler flag to NUMCPP_INCLUDE_PYBIND_PYTHON_INTERFACE
  • +
+

Version 2.4.2

+
    +
  • Fixed a type error with percentile and nanpercentile
  • +
  • Updated doxygen API css
  • +
+

Version 2.4.1

+
    +
  • Fixed a build error for multiply defined symbols of isLittleEndian
  • +
+

Version 2.4.0

+
    +
  • Compile with NO_USE_BOOST definition to remove the Boost libraries as a dependency, with reduced functionality:
      +
    • gcd with a pair of values (still available using a C++17 compliant compiler)
    • +
    • gcd array
    • +
    • lcm with a pair of values (still available using a C++17 compliant compiler)
    • +
    • lcm array
    • +
    • polynomial::chebyshev_t
    • +
    • polynomial::chebyshev_u
    • +
    • polynomial::hermite (still available using a C++17 compliant compiler)
    • +
    • polynomial::laguerre (still available using a C++17 compliant compiler)
    • +
    • polynomial::legendre_p (still available using a C++17 compliant compiler)
    • +
    • polynomial::legendre_q
    • +
    • polynomial::spherical_harmonic
    • +
    • random::beta
    • +
    • random::laplace
    • +
    • random::nonCentralChiSquared
    • +
    • random::triangle
    • +
    • random::uniformOnSphere
    • +
    • special::airy_ai
    • +
    • special::airy_ai_prime
    • +
    • special::airy_bi
    • +
    • special::airy_bi_prime
    • +
    • special::bernoulli
    • +
    • special::bessel_in (still available using a C++17 compliant compiler)
    • +
    • special::bessel_in_prime
    • +
    • special::bessel_jn (still available using a C++17 compliant compiler)
    • +
    • special::bessel_jn_prime
    • +
    • special::bessel_kn (still available using a C++17 compliant compiler)
    • +
    • special::bessel_kn_prime
    • +
    • special::bessel_yn (still available using a C++17 compliant compiler)
    • +
    • special::bessel_yn_prime
    • +
    • special::beta (still available using a C++17 compliant compiler)
    • +
    • special::cyclic_hankel_1
    • +
    • special::cyclic_hankel_2
    • +
    • special::digamma
    • +
    • special::erf
    • +
    • special::erf_inv
    • +
    • special::erfc
    • +
    • special::erfc_inv
    • +
    • special::gamma
    • +
    • special::gamma1pm1
    • +
    • special::log_gamma
    • +
    • special::polygamma
    • +
    • special::prime
    • +
    • special::riemann_zeta (still available using a C++17 compliant compiler)
    • +
    • special::spherical_bessel_jn (still available using a C++17 compliant compiler)
    • +
    • special::spherical_bessel_yn (still available using a C++17 compliant compiler)
    • +
    • special::spherical_hankel_1
    • +
    • special::spherical_hankel_2
    • +
    • special::trigamma
    • +
    +
  • +
  • Added replace option into random::choice
  • +
  • Added nan_to_num function
  • +
  • Added complete and incomplete elliptical integrals of the first, second, and third kind to special namespace (requires either Boost or C++17 compliant compiler)
  • +
  • Added exponential integral to special namespace (requires either Boost or C++17 compliant compiler)
  • +
  • Added NO_MULTITHREAD compile definition to turn off algorithm multithreading from compliant compilers
  • +
+

Version 2.3.1

+
    +
  • Added option for user defined bin edges in histogram() function
  • +
+

Version 2.3.0

+
    +
  • Added slicing to DataCube class
    +
  • +
+

Version 2.2.0

+
    +
  • Added additional where() overloads to match NumPy functionality
    +
  • +
+

Version 2.1.0

+
    +
  • Improved installation and usage with CMake find_package support
  • +
  • Various minor improvements
  • +
+

Version 2.0.0

+
    +
  • Dropped support of C++11, now requires a C++14 or higher compiler
  • +
  • Added support for std::complex<T>, closing Issue #58
  • +
  • Added more NdArray constructors for STL containers including std::vector<std::vector<T>>, closing Issue #59
  • +
  • Added polyfit routine inline with Numpy polyfit, closing Issue #61
  • +
  • Added ability to use NdArray as container for generic structs
  • +
  • Non-linear least squares fitting using Gauss-Newton
  • +
  • Root finding routines
  • +
  • Numerical integration routines
  • +
  • lu_decomposition and pivotLU_decomposition added to Linalg namespace
  • +
  • New STL iterators added to NdArray
      +
    • iterator
    • +
    • const_iterator
    • +
    • reverse_iterator
    • +
    • const_reverse_iterator
    • +
    • column_iterator
    • +
    • const_column_iterator
    • +
    • reverse_column_iterator
    • +
    • const_reverse_column_iterator
    • +
    +
  • +
  • Added rodriguesRotation and wahbasProblem to Rotations namespace
  • +
  • Various efficiency and/or bug fixes
  • +
+
+
+
+ + + + diff --git a/docs/doxygen/html/mean_8hpp.html b/docs/doxygen/html/mean_8hpp.html index 11e7b8964..f76e03afb 100644 --- a/docs/doxygen/html/mean_8hpp.html +++ b/docs/doxygen/html/mean_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: mean.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+  + +

- k -

+
+
+ + + + diff --git a/docs/doxygen/html/namespacemembers_func_l.html b/docs/doxygen/html/namespacemembers_func_l.html index a8bf264b7..7d96c6c3c 100644 --- a/docs/doxygen/html/namespacemembers_func_l.html +++ b/docs/doxygen/html/namespacemembers_func_l.html @@ -3,7 +3,7 @@ - + NumCpp: Namespace Members @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
Here is a list of all namespace members with links to the namespace documentation for each member:
+ +

- k -

+
+
+ + + + diff --git a/docs/doxygen/html/namespacemembers_l.html b/docs/doxygen/html/namespacemembers_l.html index c471a9582..2d1ac7cd7 100644 --- a/docs/doxygen/html/namespacemembers_l.html +++ b/docs/doxygen/html/namespacemembers_l.html @@ -3,7 +3,7 @@ - + NumCpp: Namespace Members @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
nc::edac Namespace Reference
+
+
+ + + + +

+Namespaces

 detail
 
+ + + + + + + +

+Functions

template<std::size_t DataBits, std::size_t EncodedBits, std::enable_if_t< greaterThan_v< EncodedBits, DataBits >, int > = 0>
int decode (std::bitset< EncodedBits > encodedBits, std::bitset< DataBits > &decodedBits)
 
template<std::size_t DataBits>
boost::dynamic_bitset encode (const std::bitset< DataBits > &dataBits)
 
+

Function Documentation

+ +

◆ decode()

+ +
+
+
+template<std::size_t DataBits, std::size_t EncodedBits, std::enable_if_t< greaterThan_v< EncodedBits, DataBits >, int > = 0>
+ + + + + + + + + + + + + + + + + + +
int nc::edac::decode (std::bitset< EncodedBits > encodedBits,
std::bitset< DataBits > & decodedBits 
)
+
+

Returns the Hamming SECDED decoded bits for the enocoded bits https://en.wikipedia.org/wiki/Hamming_code

+
Parameters
+ + + +
encodedBitsthe encoded bits to decode
decodedBitsthe output decoded bits
+
+
+
Returns
int status (0=no errors, 1=1 corrected error, 2=2 errors detected)
+
Exceptions
+ + + +
std::runtime_errorif DataBits and EncodedBits are not consistent
std::runtime_errorif the number of data bits does not represent a valid Hamming SECDED code
+
+
+ +
+
+ +

◆ encode()

+ +
+
+
+template<std::size_t DataBits>
+ + + + + + + + +
boost::dynamic_bitset nc::edac::encode (const std::bitset< DataBits > & dataBits)
+
+

Returns the Hamming SECDED encoded bits for the data bits

+
Parameters
+ + +
dataBitsthe data bits to encode
+
+
+
Returns
encoded data bits
+
Exceptions
+ + +
std::runtime_errorif the number of data bits does not represent a valid Hamming SECDED code
+
+
+ +
+
+
+
+ + + + diff --git a/docs/doxygen/html/namespacenc_1_1edac.js b/docs/doxygen/html/namespacenc_1_1edac.js new file mode 100644 index 000000000..4e22ab24b --- /dev/null +++ b/docs/doxygen/html/namespacenc_1_1edac.js @@ -0,0 +1,17 @@ +var namespacenc_1_1edac = +[ + [ "detail", "namespacenc_1_1edac_1_1detail.html", [ + [ "calculateParity", "namespacenc_1_1edac_1_1detail.html#abde37c852253de171988da5e4b775273", null ], + [ "calculateParity", "namespacenc_1_1edac_1_1detail.html#ad3215e8486eb3a544a483e5234c856d7", null ], + [ "calculateParity", "namespacenc_1_1edac_1_1detail.html#aea349d7b4d28ca91b85bcb3a2823c145", null ], + [ "checkBitsConsistent", "namespacenc_1_1edac_1_1detail.html#af386b23445a4942453c69cff80ee0e20", null ], + [ "dataBitsCovered", "namespacenc_1_1edac_1_1detail.html#aa8a14d5fd872ed0292631e57f5afe618", null ], + [ "extractData", "namespacenc_1_1edac_1_1detail.html#a1c606c3f9302bb406021a50006898ebf", null ], + [ "isPowerOfTwo", "namespacenc_1_1edac_1_1detail.html#a7f066ec8b196c2943ae99382eb63e2fb", null ], + [ "nextPowerOfTwo", "namespacenc_1_1edac_1_1detail.html#a279241a794bffbea6920299cf8e5c4a1", null ], + [ "numSecdedParityBitsNeeded", "namespacenc_1_1edac_1_1detail.html#a6ee59971c08bfdc3e11a0245f17d5f9a", null ], + [ "powersOfTwo", "namespacenc_1_1edac_1_1detail.html#ad4328ffa9ba9949a9c4b494592496055", null ] + ] ], + [ "decode", "namespacenc_1_1edac.html#aa24d4f99fd0739df7480845e96668e0f", null ], + [ "encode", "namespacenc_1_1edac.html#af5c36a1f2c74d632192cf9fe29cc5f03", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/namespacenc_1_1edac_1_1detail.html b/docs/doxygen/html/namespacenc_1_1edac_1_1detail.html new file mode 100644 index 000000000..c68c8f15e --- /dev/null +++ b/docs/doxygen/html/namespacenc_1_1edac_1_1detail.html @@ -0,0 +1,519 @@ + + + + + + + +NumCpp: nc::edac::detail Namespace Reference + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
nc::edac::detail Namespace Reference
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

bool calculateParity (const boost::dynamic_bitset<> &data) noexcept
 
template<std::size_t DataBits>
constexpr bool calculateParity (const std::bitset< DataBits > &data) noexcept
 
template<std::size_t DataBits, typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
bool calculateParity (const std::bitset< DataBits > &data, IntType parityBit)
 
template<std::size_t DataBits, std::size_t EncodedBits, std::enable_if_t< greaterThan_v< EncodedBits, DataBits >, int > = 0>
std::size_t checkBitsConsistent ()
 
template<typename IntType1 , typename IntType2 , std::enable_if_t< std::is_integral_v< IntType1 >, int > = 0, std::enable_if_t< std::is_integral_v< IntType2 >, int > = 0>
std::vector< std::size_t > dataBitsCovered (IntType1 numDataBits, IntType2 parityBit)
 
template<std::size_t DataBits, std::size_t EncodedBits, std::enable_if_t< greaterThan_v< EncodedBits, DataBits >, int > = 0>
std::bitset< DataBits > extractData (const std::bitset< EncodedBits > &encodedBits) noexcept
 
template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
constexpr bool isPowerOfTwo (IntType n) noexcept
 Tests if value is a power of two. More...
 
template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
std::size_t nextPowerOfTwo (IntType n)
 
template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
std::size_t numSecdedParityBitsNeeded (IntType numDataBits)
 
template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
std::vector< std::size_t > powersOfTwo (IntType n)
 
+

Function Documentation

+ +

◆ calculateParity() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool nc::edac::detail::calculateParity (const boost::dynamic_bitset<> & data)
+
+inlinenoexcept
+
+

Calculates the overall parity of the data, assumes last bit is the parity bit itself

+
Parameters
+ + +
datathe data word
+
+
+
Returns
overall parity bit value
+ +
+
+ +

◆ calculateParity() [2/3]

+ +
+
+
+template<std::size_t DataBits>
+ + + + + +
+ + + + + + + + +
constexpr bool nc::edac::detail::calculateParity (const std::bitset< DataBits > & data)
+
+constexprnoexcept
+
+

Calculates the overall parity of the data, assumes last bit is the parity bit itself

+
Parameters
+ + +
datathe data word
+
+
+
Returns
overall parity bit value
+ +
+
+ +

◆ calculateParity() [3/3]

+ +
+
+
+template<std::size_t DataBits, typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
+ + + + + + + + + + + + + + + + + + +
bool nc::edac::detail::calculateParity (const std::bitset< DataBits > & data,
IntType parityBit 
)
+
+

Calculates the specified Hamming parity bit (1, 2, 4, 8, etc.) for the given data. Assumes even parity to allow for easier computation of parity using XOR.

+
Parameters
+ + + +
datathe data word
parityBitthe parity bit number
+
+
+
Returns
parity bit value
+
Exceptions
+ + + +
std::invalid_argumentif parityBit is not a power of two
std::bad_allocif unable to allocate return vector
+
+
+ +
+
+ +

◆ checkBitsConsistent()

+ +
+
+
+template<std::size_t DataBits, std::size_t EncodedBits, std::enable_if_t< greaterThan_v< EncodedBits, DataBits >, int > = 0>
+ + + + + + + +
std::size_t nc::edac::detail::checkBitsConsistent ()
+
+

Checks that the number of DataBits and EncodedBits are consistent

+
Returns
the number of parity bits
+
Exceptions
+ + + +
std::runtime_errorif DataBits and EncodedBits are not consistent
std::runtime_errorif the number of data bits does not represent a valid Hamming SECDED code
+
+
+ +
+
+ +

◆ dataBitsCovered()

+ +
+
+
+template<typename IntType1 , typename IntType2 , std::enable_if_t< std::is_integral_v< IntType1 >, int > = 0, std::enable_if_t< std::is_integral_v< IntType2 >, int > = 0>
+ + + + + + + + + + + + + + + + + + +
std::vector<std::size_t> nc::edac::detail::dataBitsCovered (IntType1 numDataBits,
IntType2 parityBit 
)
+
+

Returns the indices of all data bits covered by a specified parity bit in a bitstring of length numDataBits. The indices are relative to DATA BITSTRING ITSELF, NOT including parity bits.

+
Parameters
+ + + +
numDataBitsthe number of data bits to encode
parityBitthe parity bit number
+
+
+
Returns
number of Hamming SECDED parity bits
+
Exceptions
+ + + +
std::invalid_argumentif parityBit is not a power of two
std::bad_allocif unable to allocate return vector
+
+
+ +
+
+ +

◆ extractData()

+ +
+
+
+template<std::size_t DataBits, std::size_t EncodedBits, std::enable_if_t< greaterThan_v< EncodedBits, DataBits >, int > = 0>
+ + + + + +
+ + + + + + + + +
std::bitset<DataBits> nc::edac::detail::extractData (const std::bitset< EncodedBits > & encodedBits)
+
+noexcept
+
+

Returns the Hamming SECDED decoded bits from the endoded bits. Assumes that the DataBits and EncodedBits have been checks for consistancy already

+
Parameters
+ + +
encodedBitsthe Hamming SECDED encoded word
+
+
+
Returns
data bits from the encoded word
+ +
+
+ +

◆ isPowerOfTwo()

+ +
+
+
+template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
+ + + + + +
+ + + + + + + + +
constexpr bool nc::edac::detail::isPowerOfTwo (IntType n)
+
+constexprnoexcept
+
+ +

Tests if value is a power of two.

+
Parameters
+ + +
ninteger value
+
+
+
Returns
bool true if value is a power of two, else false
+ +
+
+ +

◆ nextPowerOfTwo()

+ +
+
+
+template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
+ + + + + + + + +
std::size_t nc::edac::detail::nextPowerOfTwo (IntType n)
+
+

Calculates the next power of two after n

+
+
+

_next_power_of_two(768)

+
+
+
+

1024

+
+
+

_next_power_of_two(4)

+
+
+
+

8

+
Parameters
+ + +
ninteger value
+
+
+
Returns
next power of two
+
Exceptions
+ + +
std::invalid_argumentif input value is less than zero
+
+
+ +
+
+ +

◆ numSecdedParityBitsNeeded()

+ +
+
+
+template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
+ + + + + + + + +
std::size_t nc::edac::detail::numSecdedParityBitsNeeded (IntType numDataBits)
+
+

Calculates the number of needed Hamming SECDED parity bits to encode the data

+
Parameters
+ + +
numDataBitsthe number of data bits to encode
+
+
+
Returns
number of Hamming SECDED parity bits
+
Exceptions
+ + + +
std::invalid_argumentif input value is less than zero
std::runtime_errorif the number of data bits does not represent a valid Hamming SECDED code
+
+
+ +
+
+ +

◆ powersOfTwo()

+ +
+
+
+template<typename IntType , std::enable_if_t< std::is_integral_v< IntType >, int > = 0>
+ + + + + + + + +
std::vector<std::size_t> nc::edac::detail::powersOfTwo (IntType n)
+
+

Calculates the first n powers of two

+
Parameters
+ + +
ninteger value
+
+
+
Returns
first n powers of two
+
Exceptions
+ + +
std::bad_allocif unable to allocate for return vector
+
+
+ +
+
+
+
+ + + + diff --git a/docs/doxygen/html/namespacenc_1_1endian.html b/docs/doxygen/html/namespacenc_1_1endian.html index e059b80d7..c31016cbb 100644 --- a/docs/doxygen/html/namespacenc_1_1endian.html +++ b/docs/doxygen/html/namespacenc_1_1endian.html @@ -3,7 +3,7 @@ - + NumCpp: nc::endian Namespace Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
nth_root.hpp File Reference
+
+
+ +

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + + + + +

+Functions

template<typename dtype1 , typename dtype2 >
NdArray< double > nc::nth_root (const NdArray< dtype1 > &inArray, dtype2 inRoot)
 
template<typename dtype1 , typename dtype2 >
double nc::nth_root (dtype1 inValue, dtype2 inRoot) noexcept
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/nth__root_8hpp.js b/docs/doxygen/html/nth__root_8hpp.js new file mode 100644 index 000000000..c41473294 --- /dev/null +++ b/docs/doxygen/html/nth__root_8hpp.js @@ -0,0 +1,5 @@ +var nth__root_8hpp = +[ + [ "nth_root", "nth__root_8hpp.html#a6da3daf9d73c1cea2e69c77f62b267b0", null ], + [ "nth_root", "nth__root_8hpp.html#aae5eb97b7313026b451ac4d7c01db027", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/nth__root_8hpp_source.html b/docs/doxygen/html/nth__root_8hpp_source.html new file mode 100644 index 000000000..e3804d6c0 --- /dev/null +++ b/docs/doxygen/html/nth__root_8hpp_source.html @@ -0,0 +1,151 @@ + + + + + + + +NumCpp: nth_root.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
nth_root.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+ + +
33 #include "NumCpp/Utils/powerf.hpp"
+
34 
+
35 namespace nc
+
36 {
+
37  //============================================================================
+
38  // Method Description:
+
45  template<typename dtype1, typename dtype2>
+
46  double nth_root(dtype1 inValue, dtype2 inRoot) noexcept
+
47  {
+ + +
50 
+
51  return utils::powerf(static_cast<double>(inValue), 1.0 / static_cast<double>(inRoot));
+
52  }
+
53 
+
54  //============================================================================
+
55  // Method Description:
+
62  template<typename dtype1, typename dtype2>
+
63  NdArray<double> nth_root(const NdArray<dtype1>& inArray, dtype2 inRoot)
+
64  {
+
65  NdArray<double> returnArray(inArray.shape());
+
66  stl_algorithms::transform(inArray.cbegin(), inArray.cend(), returnArray.begin(),
+
67  [inRoot](dtype1 inValue) noexcept -> double
+
68  {
+
69  return nth_root(inValue, inRoot);
+
70  });
+
71 
+
72  return returnArray;
+
73  }
+
74 } // namespace nc
+ + +
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition: StaticAsserts.hpp:37
+ + + +
const_iterator cbegin() const noexcept
Definition: NdArrayCore.hpp:1216
+
Shape shape() const noexcept
Definition: NdArrayCore.hpp:4283
+
const_iterator cend() const noexcept
Definition: NdArrayCore.hpp:1524
+
iterator begin() noexcept
Definition: NdArrayCore.hpp:1166
+
OutputIt transform(InputIt first, InputIt last, OutputIt destination, UnaryOperation unaryFunction)
Definition: StlAlgorithms.hpp:702
+
auto powerf(dtype1 inValue, const dtype2 inPower) noexcept
Definition: Utils/powerf.hpp:49
+
Definition: Coordinate.hpp:45
+
double nth_root(dtype1 inValue, dtype2 inRoot) noexcept
Definition: nth_root.hpp:46
+
+
+ + + + diff --git a/docs/doxygen/html/num2str_8hpp.html b/docs/doxygen/html/num2str_8hpp.html index 0dc2d6df2..37f991c1d 100644 --- a/docs/doxygen/html/num2str_8hpp.html +++ b/docs/doxygen/html/num2str_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: num2str.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
place.hpp File Reference
+
+
+ +

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + +

+Functions

template<typename dtype >
void nc::place (NdArray< dtype > &arr, const NdArray< bool > &mask, const NdArray< dtype > &vals)
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/place_8hpp.js b/docs/doxygen/html/place_8hpp.js new file mode 100644 index 000000000..955d20189 --- /dev/null +++ b/docs/doxygen/html/place_8hpp.js @@ -0,0 +1,4 @@ +var place_8hpp = +[ + [ "place", "place_8hpp.html#a171da00c79cfbc9500916b6ac4d3de70", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/place_8hpp_source.html b/docs/doxygen/html/place_8hpp_source.html new file mode 100644 index 000000000..f08ca5d55 --- /dev/null +++ b/docs/doxygen/html/place_8hpp_source.html @@ -0,0 +1,142 @@ + + + + + + + +NumCpp: place.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
place.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+ +
32 
+
33 namespace nc
+
34 {
+
35  //============================================================================
+
36  // Method Description:
+
47  template<typename dtype>
+
48  void place(NdArray<dtype>& arr, const NdArray<bool>& mask, const NdArray<dtype>& vals)
+
49  {
+
50  if (mask.size() != arr.size())
+
51  {
+
52  THROW_INVALID_ARGUMENT_ERROR("Input arguments 'arr' and 'mask' must have the same size.");
+
53  }
+
54 
+
55  if (vals.isempty())
+
56  {
+
57  return;
+
58  }
+
59 
+
60  auto valIdx = 0;
+
61  for (decltype(arr.size()) i = 0; i < arr.size(); ++i)
+
62  {
+
63  if (mask[i])
+
64  {
+
65  arr[i] = vals[valIdx++ % vals.size()];
+
66  }
+
67  }
+
68  }
+
69 } // namespace nc
+ +
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition: Error.hpp:36
+ +
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:72
+
size_type size() const noexcept
Definition: NdArrayCore.hpp:4296
+
bool isempty() const noexcept
Definition: NdArrayCore.hpp:2843
+
Definition: Coordinate.hpp:45
+
void place(NdArray< dtype > &arr, const NdArray< bool > &mask, const NdArray< dtype > &vals)
Definition: place.hpp:48
+
+
+ + + + diff --git a/docs/doxygen/html/pnr_8hpp.html b/docs/doxygen/html/pnr_8hpp.html index dc3474657..92ae6e36b 100644 --- a/docs/doxygen/html/pnr_8hpp.html +++ b/docs/doxygen/html/pnr_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: pnr.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + diff --git a/docs/doxygen/html/search/all_0.js b/docs/doxygen/html/search/all_0.js index 4b0e4bafd..d24089653 100644 --- a/docs/doxygen/html/search/all_0.js +++ b/docs/doxygen/html/search/all_0.js @@ -1,15 +1,15 @@ var searchData= [ - ['abs_0',['abs',['../namespacenc.html#a6c2c40c4efcd5018f84f9aca0c03c29d',1,'nc::abs(dtype inValue) noexcept'],['../namespacenc.html#ad701f25dc97cf57005869ccb83357689',1,'nc::abs(const NdArray< dtype > &inArray)']]], + ['abs_0',['abs',['../namespacenc.html#ad701f25dc97cf57005869ccb83357689',1,'nc::abs(const NdArray< dtype > &inArray)'],['../namespacenc.html#a6c2c40c4efcd5018f84f9aca0c03c29d',1,'nc::abs(dtype inValue) noexcept']]], ['abs_2ehpp_1',['abs.hpp',['../abs_8hpp.html',1,'']]], - ['add_2',['add',['../namespacenc.html#a3f02320424da5d350eba50dc83cbb4cf',1,'nc::add(dtype value, const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#af5a087b8c1a96061e09f940143eda94a',1,'nc::add(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#abf179f45ed80c33c4093bab65e87f9d5',1,'nc::add(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#a37845dd28b36310f6dba5aa6ebba9cff',1,'nc::add(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#a9e0ebe00c9b81a6acdd1bfb328ca1e15',1,'nc::add(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a179128257dbcede363ccf942fb32e42f',1,'nc::add(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a8d76aea45bc47a83ec108b24f82b75ab',1,'nc::add(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a315d6d9acfc7fb154ebac4bea533857a',1,'nc::add(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#afe0e003d201511287b8954aa5b1b0d05',1,'nc::add(const std::complex< dtype > &value, const NdArray< dtype > &inArray)']]], + ['add_2',['add',['../namespacenc.html#a9e0ebe00c9b81a6acdd1bfb328ca1e15',1,'nc::add(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#abf179f45ed80c33c4093bab65e87f9d5',1,'nc::add(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#af5a087b8c1a96061e09f940143eda94a',1,'nc::add(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a8d76aea45bc47a83ec108b24f82b75ab',1,'nc::add(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a315d6d9acfc7fb154ebac4bea533857a',1,'nc::add(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#afe0e003d201511287b8954aa5b1b0d05',1,'nc::add(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a37845dd28b36310f6dba5aa6ebba9cff',1,'nc::add(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#a3f02320424da5d350eba50dc83cbb4cf',1,'nc::add(dtype value, const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a179128257dbcede363ccf942fb32e42f',1,'nc::add(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)']]], ['add_2ehpp_3',['add.hpp',['../add_8hpp.html',1,'']]], ['addboundary1d_4',['addBoundary1d',['../namespacenc_1_1filter_1_1boundary.html#a794f239834d31e60ad7c9d5a552e3f7c',1,'nc::filter::boundary']]], ['addboundary1d_2ehpp_5',['addBoundary1d.hpp',['../add_boundary1d_8hpp.html',1,'']]], ['addboundary2d_6',['addBoundary2d',['../namespacenc_1_1filter_1_1boundary.html#a43e1dba909451a24518231243181d79d',1,'nc::filter::boundary']]], ['addboundary2d_2ehpp_7',['addBoundary2d.hpp',['../add_boundary2d_8hpp.html',1,'']]], ['addpixel_8',['addPixel',['../classnc_1_1image_processing_1_1_cluster.html#a9cab13be79b63d9151e60a798ca39cb5',1,'nc::imageProcessing::Cluster']]], - ['airy_5fai_9',['airy_ai',['../namespacenc_1_1special.html#a90c6b73247014e03767ad66cefccc4d6',1,'nc::special::airy_ai(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#ae5fa8cc4efa56e60d061600b3f6903b2',1,'nc::special::airy_ai(dtype inValue)']]], + ['airy_5fai_9',['airy_ai',['../namespacenc_1_1special.html#ae5fa8cc4efa56e60d061600b3f6903b2',1,'nc::special::airy_ai(dtype inValue)'],['../namespacenc_1_1special.html#a90c6b73247014e03767ad66cefccc4d6',1,'nc::special::airy_ai(const NdArray< dtype > &inArray)']]], ['airy_5fai_2ehpp_10',['airy_ai.hpp',['../airy__ai_8hpp.html',1,'']]], ['airy_5fai_5fprime_11',['airy_ai_prime',['../namespacenc_1_1special.html#abd997d345e8fdf5440c0c16548113d4c',1,'nc::special::airy_ai_prime(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#a10516c44f9bd0fb906dd12122401187a',1,'nc::special::airy_ai_prime(dtype inValue)']]], ['airy_5fai_5fprime_2ehpp_12',['airy_ai_prime.hpp',['../airy__ai__prime_8hpp.html',1,'']]], @@ -37,9 +37,9 @@ var searchData= ['amax_2ehpp_34',['amax.hpp',['../amax_8hpp.html',1,'']]], ['amin_35',['amin',['../namespacenc.html#a4ea471f5a3dc23f638a8499151351435',1,'nc']]], ['amin_2ehpp_36',['amin.hpp',['../amin_8hpp.html',1,'']]], - ['angle_37',['angle',['../namespacenc.html#aa2ad52b9ebde8a5404642b190adb1bad',1,'nc::angle(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a600c02680b7f5963cc305a4b5450f6f6',1,'nc::angle(const std::complex< dtype > &inValue)'],['../classnc_1_1_vec3.html#a523ca42cbdd088851cc5a299da988cee',1,'nc::Vec3::angle()'],['../classnc_1_1_vec2.html#a271ca2cae96a1df44486fbcc2c0f890f',1,'nc::Vec2::angle()']]], + ['angle_37',['angle',['../classnc_1_1_vec2.html#a271ca2cae96a1df44486fbcc2c0f890f',1,'nc::Vec2::angle()'],['../classnc_1_1_vec3.html#a523ca42cbdd088851cc5a299da988cee',1,'nc::Vec3::angle()'],['../namespacenc.html#a600c02680b7f5963cc305a4b5450f6f6',1,'nc::angle(const std::complex< dtype > &inValue)'],['../namespacenc.html#aa2ad52b9ebde8a5404642b190adb1bad',1,'nc::angle(const NdArray< std::complex< dtype >> &inArray)']]], ['angle_2ehpp_38',['angle.hpp',['../angle_8hpp.html',1,'']]], - ['angularvelocity_39',['angularVelocity',['../classnc_1_1rotations_1_1_quaternion.html#a13ac87f70271d1771301011887d9d51a',1,'nc::rotations::Quaternion::angularVelocity(const Quaternion &inQuat2, double inTime) const'],['../classnc_1_1rotations_1_1_quaternion.html#a7cbe975bfed4cd7e5b4606047a9ee7f9',1,'nc::rotations::Quaternion::angularVelocity(const Quaternion &inQuat1, const Quaternion &inQuat2, double inTime)']]], + ['angularvelocity_39',['angularVelocity',['../classnc_1_1rotations_1_1_quaternion.html#a7cbe975bfed4cd7e5b4606047a9ee7f9',1,'nc::rotations::Quaternion::angularVelocity(const Quaternion &inQuat1, const Quaternion &inQuat2, double inTime)'],['../classnc_1_1rotations_1_1_quaternion.html#a13ac87f70271d1771301011887d9d51a',1,'nc::rotations::Quaternion::angularVelocity(const Quaternion &inQuat2, double inTime) const']]], ['any_40',['any',['../namespacenc.html#a2101c957472f0cefeda9d6b2b7bc6935',1,'nc::any()'],['../classnc_1_1_nd_array.html#a1463c8f1cb95cb8546d02502d86bd91e',1,'nc::NdArray::any()']]], ['any_2ehpp_41',['any.hpp',['../any_8hpp.html',1,'']]], ['any_5fof_42',['any_of',['../namespacenc_1_1stl__algorithms.html#a0ae9c71c7298f83822ab49d270c867ba',1,'nc::stl_algorithms']]], @@ -51,42 +51,42 @@ var searchData= ['applypoly1d_2ehpp_48',['applyPoly1d.hpp',['../apply_poly1d_8hpp.html',1,'']]], ['applythreshold_49',['applyThreshold',['../namespacenc_1_1image_processing.html#afabcede2d9e7e67cc80fc822b30d70e6',1,'nc::imageProcessing']]], ['applythreshold_2ehpp_50',['applyThreshold.hpp',['../apply_threshold_8hpp.html',1,'']]], - ['arange_51',['arange',['../namespacenc.html#a724165d620d8bff96f8f004c18257ad6',1,'nc::arange(const Slice &inSlice)'],['../namespacenc.html#a2edad3e052b232bd9075c78aad3c9287',1,'nc::arange(dtype inStop)'],['../namespacenc.html#a465e2385ac78ca4cc23928a4a0cd9f53',1,'nc::arange(dtype inStart, dtype inStop, dtype inStep=1)']]], + ['arange_51',['arange',['../namespacenc.html#a465e2385ac78ca4cc23928a4a0cd9f53',1,'nc::arange(dtype inStart, dtype inStop, dtype inStep=1)'],['../namespacenc.html#a2edad3e052b232bd9075c78aad3c9287',1,'nc::arange(dtype inStop)'],['../namespacenc.html#a724165d620d8bff96f8f004c18257ad6',1,'nc::arange(const Slice &inSlice)']]], ['arange_2ehpp_52',['arange.hpp',['../arange_8hpp.html',1,'']]], ['arccos_53',['arccos',['../namespacenc.html#aa57707902e14b3f16aec516e183d5830',1,'nc::arccos(const NdArray< dtype > &inArray)'],['../namespacenc.html#a0a87e0681917bdd812e139e6d6ea4bf1',1,'nc::arccos(dtype inValue) noexcept']]], ['arccos_2ehpp_54',['arccos.hpp',['../arccos_8hpp.html',1,'']]], - ['arccosh_55',['arccosh',['../namespacenc.html#a725eab730b946eca5d197933b9f955fa',1,'nc::arccosh(dtype inValue) noexcept'],['../namespacenc.html#a9063e7275b83f3201f74a0014a9b54d5',1,'nc::arccosh(const NdArray< dtype > &inArray)']]], + ['arccosh_55',['arccosh',['../namespacenc.html#a9063e7275b83f3201f74a0014a9b54d5',1,'nc::arccosh(const NdArray< dtype > &inArray)'],['../namespacenc.html#a725eab730b946eca5d197933b9f955fa',1,'nc::arccosh(dtype inValue) noexcept']]], ['arccosh_2ehpp_56',['arccosh.hpp',['../arccosh_8hpp.html',1,'']]], ['arcsin_57',['arcsin',['../namespacenc.html#a4b1b8fc9752c90328e3cadce151d6370',1,'nc::arcsin(const NdArray< dtype > &inArray)'],['../namespacenc.html#a6d18d24b8a33ec7df0e845d6a430d5f2',1,'nc::arcsin(dtype inValue) noexcept']]], ['arcsin_2ehpp_58',['arcsin.hpp',['../arcsin_8hpp.html',1,'']]], - ['arcsinh_59',['arcsinh',['../namespacenc.html#a74ebb0003f6cf0d0dc0fd8af1e983969',1,'nc::arcsinh(dtype inValue) noexcept'],['../namespacenc.html#abbf91db9344e5d1a53325990ef5535a0',1,'nc::arcsinh(const NdArray< dtype > &inArray)']]], + ['arcsinh_59',['arcsinh',['../namespacenc.html#abbf91db9344e5d1a53325990ef5535a0',1,'nc::arcsinh(const NdArray< dtype > &inArray)'],['../namespacenc.html#a74ebb0003f6cf0d0dc0fd8af1e983969',1,'nc::arcsinh(dtype inValue) noexcept']]], ['arcsinh_2ehpp_60',['arcsinh.hpp',['../arcsinh_8hpp.html',1,'']]], - ['arctan_61',['arctan',['../namespacenc.html#a0f63f816e660b0a4b3da191c8584a21a',1,'nc::arctan(dtype inValue) noexcept'],['../namespacenc.html#ac7080b26d0d4d849197ae10ce6d94a53',1,'nc::arctan(const NdArray< dtype > &inArray)']]], + ['arctan_61',['arctan',['../namespacenc.html#ac7080b26d0d4d849197ae10ce6d94a53',1,'nc::arctan(const NdArray< dtype > &inArray)'],['../namespacenc.html#a0f63f816e660b0a4b3da191c8584a21a',1,'nc::arctan(dtype inValue) noexcept']]], ['arctan_2ehpp_62',['arctan.hpp',['../arctan_8hpp.html',1,'']]], - ['arctan2_63',['arctan2',['../namespacenc.html#abdec674ddb32540775e97e0fca6016aa',1,'nc::arctan2(dtype inY, dtype inX) noexcept'],['../namespacenc.html#a3d3c4c6b273e6eee45cf6359cf621980',1,'nc::arctan2(const NdArray< dtype > &inY, const NdArray< dtype > &inX)']]], + ['arctan2_63',['arctan2',['../namespacenc.html#a3d3c4c6b273e6eee45cf6359cf621980',1,'nc::arctan2(const NdArray< dtype > &inY, const NdArray< dtype > &inX)'],['../namespacenc.html#abdec674ddb32540775e97e0fca6016aa',1,'nc::arctan2(dtype inY, dtype inX) noexcept']]], ['arctan2_2ehpp_64',['arctan2.hpp',['../arctan2_8hpp.html',1,'']]], - ['arctanh_65',['arctanh',['../namespacenc.html#a01f43fad4032a2823fc3ed56137b93de',1,'nc::arctanh(dtype inValue) noexcept'],['../namespacenc.html#a1b71f03b842e44890312fa09ed1aa594',1,'nc::arctanh(const NdArray< dtype > &inArray)']]], + ['arctanh_65',['arctanh',['../namespacenc.html#a1b71f03b842e44890312fa09ed1aa594',1,'nc::arctanh(const NdArray< dtype > &inArray)'],['../namespacenc.html#a01f43fad4032a2823fc3ed56137b93de',1,'nc::arctanh(dtype inValue) noexcept']]], ['arctanh_2ehpp_66',['arctanh.hpp',['../arctanh_8hpp.html',1,'']]], ['area_67',['area',['../classnc_1_1polynomial_1_1_poly1d.html#adcbfe7e5fe2ed3b73bc5c81a73ece1cb',1,'nc::polynomial::Poly1d']]], ['argmax_68',['argmax',['../namespacenc.html#a33dac7f03588175031847327655f0b5d',1,'nc::argmax()'],['../classnc_1_1_nd_array.html#ad4a41193c4f364a817f51ac7f6932b1f',1,'nc::NdArray::argmax()']]], ['argmax_2ehpp_69',['argmax.hpp',['../argmax_8hpp.html',1,'']]], - ['argmin_70',['argmin',['../namespacenc.html#ae26281f75850e9b94272228b56544bd5',1,'nc::argmin()'],['../classnc_1_1_nd_array.html#a62a38761f6f8fd005e225a5d3328e073',1,'nc::NdArray::argmin()']]], + ['argmin_70',['argmin',['../classnc_1_1_nd_array.html#a62a38761f6f8fd005e225a5d3328e073',1,'nc::NdArray::argmin()'],['../namespacenc.html#ae26281f75850e9b94272228b56544bd5',1,'nc::argmin()']]], ['argmin_2ehpp_71',['argmin.hpp',['../argmin_8hpp.html',1,'']]], ['argsort_72',['argsort',['../namespacenc.html#a88c217359f5e295649dd0cabe648ce6a',1,'nc::argsort()'],['../classnc_1_1_nd_array.html#ae0ec4abb78faecc68f8d7e2198894196',1,'nc::NdArray::argsort()']]], ['argsort_2ehpp_73',['argsort.hpp',['../argsort_8hpp.html',1,'']]], ['argwhere_74',['argwhere',['../namespacenc.html#aeddef72feba83e0c7d053093c74ed686',1,'nc']]], ['argwhere_2ehpp_75',['argwhere.hpp',['../argwhere_8hpp.html',1,'']]], - ['around_76',['around',['../namespacenc.html#a32e869df2216c793407d6addea9bf890',1,'nc::around(dtype inValue, uint8 inNumDecimals=0)'],['../namespacenc.html#a332fc87fa0bae7583b6a6ca3ceb8a8d4',1,'nc::around(const NdArray< dtype > &inArray, uint8 inNumDecimals=0)']]], + ['around_76',['around',['../namespacenc.html#a332fc87fa0bae7583b6a6ca3ceb8a8d4',1,'nc::around(const NdArray< dtype > &inArray, uint8 inNumDecimals=0)'],['../namespacenc.html#a32e869df2216c793407d6addea9bf890',1,'nc::around(dtype inValue, uint8 inNumDecimals=0)']]], ['around_2ehpp_77',['around.hpp',['../around_8hpp.html',1,'']]], ['array_5fequal_78',['array_equal',['../namespacenc.html#a0e8c1396cc01ccd9ec8ba549b6347e21',1,'nc']]], ['array_5fequal_2ehpp_79',['array_equal.hpp',['../array__equal_8hpp.html',1,'']]], ['array_5fequiv_80',['array_equiv',['../namespacenc.html#ac7cfdea4ac1caa81eabdb5dfe33b90b8',1,'nc']]], ['array_5fequiv_2ehpp_81',['array_equiv.hpp',['../array__equiv_8hpp.html',1,'']]], - ['asarray_82',['asarray',['../namespacenc.html#a37aab9b1478f5d5abea3d02029fb2f2d',1,'nc::asarray(std::vector< dtype > &inVector, bool copy=true)'],['../namespacenc.html#a5ac399ecf8e26717e118be6d04164d31',1,'nc::asarray(const std::vector< std::vector< dtype >> &inVector)'],['../namespacenc.html#a937b7ded9b21c92955e8ab137ad0b449',1,'nc::asarray(std::initializer_list< dtype > inList)'],['../namespacenc.html#a6a6f1083d41b9d345d6dae5093d7632b',1,'nc::asarray(std::initializer_list< std::initializer_list< dtype > > inList)'],['../namespacenc.html#ae2e0f4084163e9be08e324a6f3c10579',1,'nc::asarray(std::array< dtype, ArraySize > &inArray, bool copy=true)'],['../namespacenc.html#a35116b2646ecd25b63586fa987991f21',1,'nc::asarray(std::array< std::array< dtype, Dim1Size >, Dim0Size > &inArray, bool copy=true)'],['../namespacenc.html#aab50ba883dd36c374c2b0d34c22f7bc1',1,'nc::asarray(std::vector< std::array< dtype, Dim1Size >> &inVector, bool copy=true)'],['../namespacenc.html#a430dab2027f102a689a812134e1f9655',1,'nc::asarray(const std::deque< dtype > &inDeque)'],['../namespacenc.html#ac7a31dc08b1ea7cbdc71c22cad70e328',1,'nc::asarray(const std::deque< std::deque< dtype >> &inDeque)'],['../namespacenc.html#aaef8615d9fb222814f2849fb0915dd81',1,'nc::asarray(const std::set< dtype, dtypeComp > &inSet)'],['../namespacenc.html#a6280fea16d0710fe5e257c3d4cb3a85d',1,'nc::asarray(const std::list< dtype > &inList)'],['../namespacenc.html#aa0127b6d17a87db3f9deed78e90f54bd',1,'nc::asarray(Iterator iterBegin, Iterator iterEnd)'],['../namespacenc.html#a35bad04da98984458f265fc1dcd66b00',1,'nc::asarray(const dtype *iterBegin, const dtype *iterEnd)'],['../namespacenc.html#ac2c02eb2fd3b28ab815ab5d678649a13',1,'nc::asarray(const dtype *ptr, uint32 size)'],['../namespacenc.html#a49d751314929b591b3e1a9d79f81d6ff',1,'nc::asarray(const dtype *ptr, uint32 numRows, uint32 numCols)'],['../namespacenc.html#ae2b23e323b2d5e16933587ede8c5d115',1,'nc::asarray(dtype *ptr, uint32 size, Bool takeOwnership) noexcept'],['../namespacenc.html#a39a0d39388c73f10ab8b462108675e98',1,'nc::asarray(dtype *ptr, uint32 numRows, uint32 numCols, Bool takeOwnership) noexcept']]], + ['asarray_82',['asarray',['../namespacenc.html#a37aab9b1478f5d5abea3d02029fb2f2d',1,'nc::asarray(std::vector< dtype > &inVector, bool copy=true)'],['../namespacenc.html#a5ac399ecf8e26717e118be6d04164d31',1,'nc::asarray(const std::vector< std::vector< dtype >> &inVector)'],['../namespacenc.html#aab50ba883dd36c374c2b0d34c22f7bc1',1,'nc::asarray(std::vector< std::array< dtype, Dim1Size >> &inVector, bool copy=true)'],['../namespacenc.html#a430dab2027f102a689a812134e1f9655',1,'nc::asarray(const std::deque< dtype > &inDeque)'],['../namespacenc.html#ac7a31dc08b1ea7cbdc71c22cad70e328',1,'nc::asarray(const std::deque< std::deque< dtype >> &inDeque)'],['../namespacenc.html#aaef8615d9fb222814f2849fb0915dd81',1,'nc::asarray(const std::set< dtype, dtypeComp > &inSet)'],['../namespacenc.html#a6280fea16d0710fe5e257c3d4cb3a85d',1,'nc::asarray(const std::list< dtype > &inList)'],['../namespacenc.html#aa0127b6d17a87db3f9deed78e90f54bd',1,'nc::asarray(Iterator iterBegin, Iterator iterEnd)'],['../namespacenc.html#a35bad04da98984458f265fc1dcd66b00',1,'nc::asarray(const dtype *iterBegin, const dtype *iterEnd)'],['../namespacenc.html#ac2c02eb2fd3b28ab815ab5d678649a13',1,'nc::asarray(const dtype *ptr, uint32 size)'],['../namespacenc.html#ae2b23e323b2d5e16933587ede8c5d115',1,'nc::asarray(dtype *ptr, uint32 size, Bool takeOwnership) noexcept'],['../namespacenc.html#a39a0d39388c73f10ab8b462108675e98',1,'nc::asarray(dtype *ptr, uint32 numRows, uint32 numCols, Bool takeOwnership) noexcept'],['../namespacenc.html#a49d751314929b591b3e1a9d79f81d6ff',1,'nc::asarray(const dtype *ptr, uint32 numRows, uint32 numCols)'],['../namespacenc.html#a937b7ded9b21c92955e8ab137ad0b449',1,'nc::asarray(std::initializer_list< dtype > inList)'],['../namespacenc.html#a6a6f1083d41b9d345d6dae5093d7632b',1,'nc::asarray(std::initializer_list< std::initializer_list< dtype > > inList)'],['../namespacenc.html#ae2e0f4084163e9be08e324a6f3c10579',1,'nc::asarray(std::array< dtype, ArraySize > &inArray, bool copy=true)'],['../namespacenc.html#a35116b2646ecd25b63586fa987991f21',1,'nc::asarray(std::array< std::array< dtype, Dim1Size >, Dim0Size > &inArray, bool copy=true)']]], ['asarray_2ehpp_83',['asarray.hpp',['../asarray_8hpp.html',1,'']]], - ['astype_84',['astype',['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1polynomial_1_1_poly1d.html#a0cf03b40603f490af100cdc65140ab9f',1,'nc::polynomial::Poly1d::astype()'],['../namespacenc.html#a07250b272d24387fab405d29c14082e4',1,'nc::astype()']]], + ['astype_84',['astype',['../classnc_1_1polynomial_1_1_poly1d.html#a0cf03b40603f490af100cdc65140ab9f',1,'nc::polynomial::Poly1d::astype()'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../namespacenc.html#a07250b272d24387fab405d29c14082e4',1,'nc::astype()']]], ['astype_2ehpp_85',['astype.hpp',['../astype_8hpp.html',1,'']]], - ['at_86',['at',['../classnc_1_1_nd_array.html#a7b5c383337c887ddf537708b29b64afd',1,'nc::NdArray::at()'],['../classnc_1_1_data_cube.html#a8925f65b525c2b4fe04c711851b66828',1,'nc::DataCube::at()'],['../classnc_1_1_nd_array.html#a023bd56ee5fd8b58a4d0eb2acd71f67a',1,'nc::NdArray::at(const NdArray< int32 > &rowIndices, const NdArray< int32 > &colIndices) const'],['../classnc_1_1_nd_array.html#a1537e603e458ad93bdde061e476305d6',1,'nc::NdArray::at(const Slice &inRowSlice, int32 inColIndex) const'],['../classnc_1_1_nd_array.html#adf7b073b906cd66e1c8a78df865b5679',1,'nc::NdArray::at(const Slice &inRowSlice, const Slice &inColSlice) const'],['../classnc_1_1_nd_array.html#a39dc0db6c17edef6642b55b4ce68df48',1,'nc::NdArray::at(const Slice &inSlice) const'],['../classnc_1_1_nd_array.html#a77807cb1488da10f8654dc6331426ca6',1,'nc::NdArray::at(int32 inRowIndex, int32 inColIndex) const'],['../classnc_1_1_nd_array.html#ade8b486f8c2ffce283abea6126cb3a63',1,'nc::NdArray::at(int32 inRowIndex, int32 inColIndex)'],['../classnc_1_1_nd_array.html#a10ef25d07c5761028091cda2c7f20d1f',1,'nc::NdArray::at(int32 inIndex) const'],['../classnc_1_1_nd_array.html#a3ae4c372620db7cf0211867dcb886b48',1,'nc::NdArray::at(int32 inIndex)'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a679db8e4b1f175af3db67c756c54d6b1',1,'nc::imageProcessing::ClusterMaker::at()'],['../classnc_1_1image_processing_1_1_cluster.html#a5a8d82d40cea566786e8f80ad72a6d10',1,'nc::imageProcessing::Cluster::at()'],['../classnc_1_1_data_cube.html#ab78c6fc396ea087819cdef43f316da4e',1,'nc::DataCube::at()']]], + ['at_86',['at',['../classnc_1_1_nd_array.html#a023bd56ee5fd8b58a4d0eb2acd71f67a',1,'nc::NdArray::at(const NdArray< int32 > &rowIndices, const NdArray< int32 > &colIndices) const'],['../classnc_1_1_nd_array.html#a7b5c383337c887ddf537708b29b64afd',1,'nc::NdArray::at(int32 inRowIndex, const Slice &inColSlice) const'],['../classnc_1_1_data_cube.html#a8925f65b525c2b4fe04c711851b66828',1,'nc::DataCube::at(uint32 inIndex)'],['../classnc_1_1_data_cube.html#ab78c6fc396ea087819cdef43f316da4e',1,'nc::DataCube::at(uint32 inIndex) const'],['../classnc_1_1image_processing_1_1_cluster.html#a5a8d82d40cea566786e8f80ad72a6d10',1,'nc::imageProcessing::Cluster::at()'],['../classnc_1_1_nd_array.html#adf7b073b906cd66e1c8a78df865b5679',1,'nc::NdArray::at(const Slice &inRowSlice, const Slice &inColSlice) const'],['../classnc_1_1_nd_array.html#a39dc0db6c17edef6642b55b4ce68df48',1,'nc::NdArray::at(const Slice &inSlice) const'],['../classnc_1_1_nd_array.html#a77807cb1488da10f8654dc6331426ca6',1,'nc::NdArray::at(int32 inRowIndex, int32 inColIndex) const'],['../classnc_1_1_nd_array.html#ade8b486f8c2ffce283abea6126cb3a63',1,'nc::NdArray::at(int32 inRowIndex, int32 inColIndex)'],['../classnc_1_1_nd_array.html#a10ef25d07c5761028091cda2c7f20d1f',1,'nc::NdArray::at(int32 inIndex) const'],['../classnc_1_1_nd_array.html#a3ae4c372620db7cf0211867dcb886b48',1,'nc::NdArray::at(int32 inIndex)'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a679db8e4b1f175af3db67c756c54d6b1',1,'nc::imageProcessing::ClusterMaker::at()'],['../classnc_1_1_nd_array.html#a1537e603e458ad93bdde061e476305d6',1,'nc::NdArray::at()']]], ['average_87',['average',['../namespacenc.html#a9025fe780f7cb82e65c21738672f1d41',1,'nc::average(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a08d310c2089324a7106ff509b862f5c7',1,'nc::average(const NdArray< dtype > &inArray, const NdArray< dtype > &inWeights, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a4d65d31c652a1ab639089ab948d0d557',1,'nc::average(const NdArray< std::complex< dtype >> &inArray, const NdArray< dtype > &inWeights, Axis inAxis=Axis::NONE)']]], ['average_2ehpp_88',['average.hpp',['../average_8hpp.html',1,'']]], ['axis_89',['Axis',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84',1,'nc']]] diff --git a/docs/doxygen/html/search/all_1.html b/docs/doxygen/html/search/all_1.html index 6cbe23813..9f80e9043 100644 --- a/docs/doxygen/html/search/all_1.html +++ b/docs/doxygen/html/search/all_1.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_1.js b/docs/doxygen/html/search/all_1.js index 5cf329e7d..4b79b2230 100644 --- a/docs/doxygen/html/search/all_1.js +++ b/docs/doxygen/html/search/all_1.js @@ -1,56 +1,60 @@ var searchData= [ - ['back_90',['back',['../classnc_1_1_vec3.html#a44e50b4b49011ec94548558600c0b17c',1,'nc::Vec3::back()'],['../classnc_1_1_nd_array.html#a20fb268d9bd6c25dd70b6772f5ff5b89',1,'nc::NdArray::back(size_type row)'],['../classnc_1_1_nd_array.html#a563cf4dcecda39a0599cc13c87363677',1,'nc::NdArray::back(size_type row) const'],['../classnc_1_1_nd_array.html#a555efdc758b47b107c9c94593b6c2470',1,'nc::NdArray::back() noexcept'],['../classnc_1_1_nd_array.html#a6bb650c9e28ff25c9b58c9f4f08d78bb',1,'nc::NdArray::back() const noexcept'],['../classnc_1_1_data_cube.html#abc8860c7c767170d003da447e7618bee',1,'nc::DataCube::back() noexcept']]], - ['begin_91',['begin',['../classnc_1_1_data_cube.html#a430de05758db67815f957784b298b011',1,'nc::DataCube::begin()'],['../classnc_1_1_nd_array.html#ab3cdc446e55744b31d42dfb53fcdc7cf',1,'nc::NdArray::begin(size_type inRow) const'],['../classnc_1_1_nd_array.html#ae47b79d2054d83dc0c7deb617ab7d1c2',1,'nc::NdArray::begin() const noexcept'],['../classnc_1_1_nd_array.html#a57fa866d30c298337bfc906ae73b6a40',1,'nc::NdArray::begin(size_type inRow)'],['../classnc_1_1_nd_array.html#ab57282e02905eeb2a932eeb73983221f',1,'nc::NdArray::begin() noexcept'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a37c172d7253190e76b065ed2547c3020',1,'nc::imageProcessing::ClusterMaker::begin()'],['../classnc_1_1image_processing_1_1_cluster.html#a6e761b470453d5506015b9332b12e4a4',1,'nc::imageProcessing::Cluster::begin()']]], - ['bernoilli_92',['bernoilli',['../namespacenc_1_1special.html#a1af26e52a24fca2b572605ec4b2c1f1b',1,'nc::special::bernoilli(uint32 n)'],['../namespacenc_1_1special.html#a59caf35b816a219aa2782dd45df207ca',1,'nc::special::bernoilli(const NdArray< uint32 > &inArray)']]], - ['bernoilli_2ehpp_93',['bernoilli.hpp',['../bernoilli_8hpp.html',1,'']]], - ['bernoulli_94',['bernoulli',['../namespacenc_1_1random.html#a1a5af4283601fd8663dcdc34599aede3',1,'nc::random::bernoulli(double inP=0.5)'],['../namespacenc_1_1random.html#a8d4a1a62fc03a44cccfa4012413bd70f',1,'nc::random::bernoulli(const Shape &inShape, double inP=0.5)']]], - ['bernoulli_2ehpp_95',['bernoulli.hpp',['../bernoulli_8hpp.html',1,'']]], - ['bessel_5fin_96',['bessel_in',['../namespacenc_1_1special.html#a6e9dbda70e7c0732d0b63ea389e5af49',1,'nc::special::bessel_in(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a92141b6d9ffda6c68c7cb13dee3eae60',1,'nc::special::bessel_in(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], - ['bessel_5fin_2ehpp_97',['bessel_in.hpp',['../bessel__in_8hpp.html',1,'']]], - ['bessel_5fin_5fprime_98',['bessel_in_prime',['../namespacenc_1_1special.html#a416353fb98d37ed2e1a8ab587a16f6f8',1,'nc::special::bessel_in_prime(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a85979b28c3403361a3e818c9cf8cdf16',1,'nc::special::bessel_in_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], - ['bessel_5fin_5fprime_2ehpp_99',['bessel_in_prime.hpp',['../bessel__in__prime_8hpp.html',1,'']]], - ['bessel_5fjn_100',['bessel_jn',['../namespacenc_1_1special.html#a3986d3b42ddcd747d40fb6772b49536e',1,'nc::special::bessel_jn(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#ab310a9680ad09bc52377898876a27620',1,'nc::special::bessel_jn(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], - ['bessel_5fjn_2ehpp_101',['bessel_jn.hpp',['../bessel__jn_8hpp.html',1,'']]], - ['bessel_5fjn_5fprime_102',['bessel_jn_prime',['../namespacenc_1_1special.html#a3eef0d1e8d31602e816578f778feefb5',1,'nc::special::bessel_jn_prime(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a6e4139a3ecc85275c4690d01453366dc',1,'nc::special::bessel_jn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], - ['bessel_5fjn_5fprime_2ehpp_103',['bessel_jn_prime.hpp',['../bessel__jn__prime_8hpp.html',1,'']]], - ['bessel_5fkn_104',['bessel_kn',['../namespacenc_1_1special.html#a614d69a09535948c87124fe5662452dc',1,'nc::special::bessel_kn(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a5727fa899a61975ffcb79d84fd2d231b',1,'nc::special::bessel_kn(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], - ['bessel_5fkn_2ehpp_105',['bessel_kn.hpp',['../bessel__kn_8hpp.html',1,'']]], - ['bessel_5fkn_5fprime_106',['bessel_kn_prime',['../namespacenc_1_1special.html#a98aad61d58f7d046091f6f569d2c97fb',1,'nc::special::bessel_kn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#aa3159d6cbb77b6bc1b913c25d969fa3c',1,'nc::special::bessel_kn_prime(dtype1 inV, dtype2 inX)']]], - ['bessel_5fkn_5fprime_2ehpp_107',['bessel_kn_prime.hpp',['../bessel__kn__prime_8hpp.html',1,'']]], - ['bessel_5fyn_108',['bessel_yn',['../namespacenc_1_1special.html#a2a215c5881fc0d98e444942d3a67ed5b',1,'nc::special::bessel_yn(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#a55bbc44ffde64dfb7af7a803250cd2a6',1,'nc::special::bessel_yn(dtype1 inV, dtype2 inX)']]], - ['bessel_5fyn_2ehpp_109',['bessel_yn.hpp',['../bessel__yn_8hpp.html',1,'']]], - ['bessel_5fyn_5fprime_110',['bessel_yn_prime',['../namespacenc_1_1special.html#a129b71949a9659519aea36dc64d47020',1,'nc::special::bessel_yn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#a742272fb70f0b85164b61409ad3f464f',1,'nc::special::bessel_yn_prime(dtype1 inV, dtype2 inX)']]], - ['bessel_5fyn_5fprime_2ehpp_111',['bessel_yn_prime.hpp',['../bessel__yn__prime_8hpp.html',1,'']]], - ['beta_112',['beta',['../namespacenc_1_1random.html#a9cf5ddddc350278c76e077c67b5254ab',1,'nc::random::beta(dtype inAlpha, dtype inBeta)'],['../namespacenc_1_1random.html#ab7de94b949521786b7bde650b1e813fa',1,'nc::random::beta(const Shape &inShape, dtype inAlpha, dtype inBeta)'],['../namespacenc_1_1special.html#a9b74f451f99338c909b7f73df6e5bff6',1,'nc::special::beta(dtype1 a, dtype2 b)'],['../namespacenc_1_1special.html#ad2ac5c7add77e243dc39899c15ad93e6',1,'nc::special::beta(const NdArray< dtype1 > &inArrayA, const NdArray< dtype2 > &inArrayB)']]], - ['big_113',['BIG',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152aa60c6c694491d75b439073b8cb05b139',1,'nc']]], - ['binaryrepr_114',['binaryRepr',['../namespacenc.html#a8c8a7dbf208bb2d31983140598e7cebe',1,'nc']]], - ['binaryrepr_2ehpp_115',['binaryRepr.hpp',['../binary_repr_8hpp.html',1,'']]], - ['bincount_116',['bincount',['../namespacenc.html#aa31a10ae8201c637ab3d203844b81904',1,'nc::bincount(const NdArray< dtype > &inArray, const NdArray< dtype > &inWeights, uint16 inMinLength=1)'],['../namespacenc.html#a60bb0f9e8bed0fd6f5c0973cf3b918ca',1,'nc::bincount(const NdArray< dtype > &inArray, uint16 inMinLength=1)']]], - ['bincount_2ehpp_117',['bincount.hpp',['../bincount_8hpp.html',1,'']]], - ['binomial_118',['binomial',['../namespacenc_1_1random.html#a13657004ec565f15648a520e3d060002',1,'nc::random::binomial(dtype inN, double inP=0.5)'],['../namespacenc_1_1random.html#a83099ec22905c3ad69984a94d823a3d8',1,'nc::random::binomial(const Shape &inShape, dtype inN, double inP=0.5)']]], - ['binomial_2ehpp_119',['binomial.hpp',['../binomial_8hpp.html',1,'']]], - ['bisection_120',['Bisection',['../classnc_1_1roots_1_1_bisection.html#a05985162d3dac7a0919319c6cde74895',1,'nc::roots::Bisection::Bisection(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_bisection.html#ae9ccce420ccf01a829b0138f264956cb',1,'nc::roots::Bisection::Bisection(const double epsilon, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_bisection.html',1,'nc::roots::Bisection']]], - ['bisection_2ehpp_121',['Bisection.hpp',['../_bisection_8hpp.html',1,'']]], - ['bits_122',['bits',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ae35570f524474adaa2315bead3f9be9e',1,'nc::DtypeInfo< std::complex< dtype > >::bits()'],['../classnc_1_1_dtype_info.html#a3f6aa0cc80e59dc331bc0e8dfe2f20bb',1,'nc::DtypeInfo::bits()']]], - ['bitwise_5fand_123',['bitwise_and',['../namespacenc.html#a4a7fa01dbe15029314c6204f930c09af',1,'nc']]], - ['bitwise_5fand_2ehpp_124',['bitwise_and.hpp',['../bitwise__and_8hpp.html',1,'']]], - ['bitwise_5fnot_125',['bitwise_not',['../namespacenc.html#a172096cafc950983ccbbb05eb5426722',1,'nc']]], - ['bitwise_5fnot_2ehpp_126',['bitwise_not.hpp',['../bitwise__not_8hpp.html',1,'']]], - ['bitwise_5for_127',['bitwise_or',['../namespacenc.html#a6203fb3929a9c533eba79b64342eaa3a',1,'nc']]], - ['bitwise_5for_2ehpp_128',['bitwise_or.hpp',['../bitwise__or_8hpp.html',1,'']]], - ['bitwise_5fxor_129',['bitwise_xor',['../namespacenc.html#a07c69919a1dc382fd2ae3ebf1b358319',1,'nc']]], - ['bitwise_5fxor_2ehpp_130',['bitwise_xor.hpp',['../bitwise__xor_8hpp.html',1,'']]], - ['boostinterface_2ehpp_131',['BoostInterface.hpp',['../_boost_interface_8hpp.html',1,'']]], - ['boostnumpyndarrayhelper_2ehpp_132',['BoostNumpyNdarrayHelper.hpp',['../_boost_numpy_ndarray_helper_8hpp.html',1,'']]], - ['boundary_133',['Boundary',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6',1,'nc::filter']]], - ['boundary_2ehpp_134',['Boundary.hpp',['../_boundary_8hpp.html',1,'']]], - ['brent_135',['Brent',['../classnc_1_1roots_1_1_brent.html#aecf6662d1b7128d38796cf4ab99143f4',1,'nc::roots::Brent::Brent(const double epsilon, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_brent.html#a1e9cf8f7be13c7bbb42a073ec9eb5369',1,'nc::roots::Brent::Brent(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_brent.html',1,'nc::roots::Brent']]], - ['brent_2ehpp_136',['Brent.hpp',['../_brent_8hpp.html',1,'']]], - ['building_137',['Building',['../md__mnt_c__github__num_cpp_docs_markdown__building.html',1,'']]], - ['building_2emd_138',['Building.md',['../_building_8md.html',1,'']]], - ['byteswap_139',['byteswap',['../classnc_1_1_nd_array.html#a2d3f796540ca2966cd2964a358627630',1,'nc::NdArray']]], - ['byteswap_140',['byteSwap',['../namespacenc_1_1endian.html#a28d96487f9ac66755e2dd4925a459e0d',1,'nc::endian']]], - ['byteswap_141',['byteswap',['../namespacenc.html#a244a5b96158e15e74e2cc1e54c17edff',1,'nc']]], - ['byteswap_2ehpp_142',['byteswap.hpp',['../byteswap_8hpp.html',1,'']]] + ['back_90',['back',['../classnc_1_1_nd_array.html#a20fb268d9bd6c25dd70b6772f5ff5b89',1,'nc::NdArray::back()'],['../classnc_1_1_vec3.html#a44e50b4b49011ec94548558600c0b17c',1,'nc::Vec3::back()'],['../classnc_1_1_data_cube.html#abc8860c7c767170d003da447e7618bee',1,'nc::DataCube::back()'],['../classnc_1_1_nd_array.html#a563cf4dcecda39a0599cc13c87363677',1,'nc::NdArray::back(size_type row) const'],['../classnc_1_1_nd_array.html#a555efdc758b47b107c9c94593b6c2470',1,'nc::NdArray::back() noexcept'],['../classnc_1_1_nd_array.html#a6bb650c9e28ff25c9b58c9f4f08d78bb',1,'nc::NdArray::back() const noexcept']]], + ['bartlett_91',['bartlett',['../namespacenc.html#a594225660881a1cd0caabba4946c07d4',1,'nc']]], + ['bartlett_2ehpp_92',['bartlett.hpp',['../bartlett_8hpp.html',1,'']]], + ['begin_93',['begin',['../classnc_1_1_nd_array.html#ab3cdc446e55744b31d42dfb53fcdc7cf',1,'nc::NdArray::begin(size_type inRow) const'],['../classnc_1_1_nd_array.html#ae47b79d2054d83dc0c7deb617ab7d1c2',1,'nc::NdArray::begin() const noexcept'],['../classnc_1_1_nd_array.html#a57fa866d30c298337bfc906ae73b6a40',1,'nc::NdArray::begin(size_type inRow)'],['../classnc_1_1_nd_array.html#ab57282e02905eeb2a932eeb73983221f',1,'nc::NdArray::begin() noexcept'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a37c172d7253190e76b065ed2547c3020',1,'nc::imageProcessing::ClusterMaker::begin()'],['../classnc_1_1image_processing_1_1_cluster.html#a6e761b470453d5506015b9332b12e4a4',1,'nc::imageProcessing::Cluster::begin()'],['../classnc_1_1_data_cube.html#a430de05758db67815f957784b298b011',1,'nc::DataCube::begin()']]], + ['bernoilli_94',['bernoilli',['../namespacenc_1_1special.html#a59caf35b816a219aa2782dd45df207ca',1,'nc::special::bernoilli(const NdArray< uint32 > &inArray)'],['../namespacenc_1_1special.html#a1af26e52a24fca2b572605ec4b2c1f1b',1,'nc::special::bernoilli(uint32 n)']]], + ['bernoilli_2ehpp_95',['bernoilli.hpp',['../bernoilli_8hpp.html',1,'']]], + ['bernoulli_96',['bernoulli',['../namespacenc_1_1random.html#a8d4a1a62fc03a44cccfa4012413bd70f',1,'nc::random::bernoulli(const Shape &inShape, double inP=0.5)'],['../namespacenc_1_1random.html#a1a5af4283601fd8663dcdc34599aede3',1,'nc::random::bernoulli(double inP=0.5)']]], + ['bernoulli_2ehpp_97',['bernoulli.hpp',['../bernoulli_8hpp.html',1,'']]], + ['bessel_5fin_98',['bessel_in',['../namespacenc_1_1special.html#a92141b6d9ffda6c68c7cb13dee3eae60',1,'nc::special::bessel_in(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#a6e9dbda70e7c0732d0b63ea389e5af49',1,'nc::special::bessel_in(dtype1 inV, dtype2 inX)']]], + ['bessel_5fin_2ehpp_99',['bessel_in.hpp',['../bessel__in_8hpp.html',1,'']]], + ['bessel_5fin_5fprime_100',['bessel_in_prime',['../namespacenc_1_1special.html#a416353fb98d37ed2e1a8ab587a16f6f8',1,'nc::special::bessel_in_prime(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a85979b28c3403361a3e818c9cf8cdf16',1,'nc::special::bessel_in_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['bessel_5fin_5fprime_2ehpp_101',['bessel_in_prime.hpp',['../bessel__in__prime_8hpp.html',1,'']]], + ['bessel_5fjn_102',['bessel_jn',['../namespacenc_1_1special.html#ab310a9680ad09bc52377898876a27620',1,'nc::special::bessel_jn(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#a3986d3b42ddcd747d40fb6772b49536e',1,'nc::special::bessel_jn(dtype1 inV, dtype2 inX)']]], + ['bessel_5fjn_2ehpp_103',['bessel_jn.hpp',['../bessel__jn_8hpp.html',1,'']]], + ['bessel_5fjn_5fprime_104',['bessel_jn_prime',['../namespacenc_1_1special.html#a3eef0d1e8d31602e816578f778feefb5',1,'nc::special::bessel_jn_prime(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a6e4139a3ecc85275c4690d01453366dc',1,'nc::special::bessel_jn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['bessel_5fjn_5fprime_2ehpp_105',['bessel_jn_prime.hpp',['../bessel__jn__prime_8hpp.html',1,'']]], + ['bessel_5fkn_106',['bessel_kn',['../namespacenc_1_1special.html#a614d69a09535948c87124fe5662452dc',1,'nc::special::bessel_kn(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a5727fa899a61975ffcb79d84fd2d231b',1,'nc::special::bessel_kn(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['bessel_5fkn_2ehpp_107',['bessel_kn.hpp',['../bessel__kn_8hpp.html',1,'']]], + ['bessel_5fkn_5fprime_108',['bessel_kn_prime',['../namespacenc_1_1special.html#aa3159d6cbb77b6bc1b913c25d969fa3c',1,'nc::special::bessel_kn_prime(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a98aad61d58f7d046091f6f569d2c97fb',1,'nc::special::bessel_kn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['bessel_5fkn_5fprime_2ehpp_109',['bessel_kn_prime.hpp',['../bessel__kn__prime_8hpp.html',1,'']]], + ['bessel_5fyn_110',['bessel_yn',['../namespacenc_1_1special.html#a55bbc44ffde64dfb7af7a803250cd2a6',1,'nc::special::bessel_yn(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a2a215c5881fc0d98e444942d3a67ed5b',1,'nc::special::bessel_yn(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['bessel_5fyn_2ehpp_111',['bessel_yn.hpp',['../bessel__yn_8hpp.html',1,'']]], + ['bessel_5fyn_5fprime_112',['bessel_yn_prime',['../namespacenc_1_1special.html#a742272fb70f0b85164b61409ad3f464f',1,'nc::special::bessel_yn_prime(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a129b71949a9659519aea36dc64d47020',1,'nc::special::bessel_yn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['bessel_5fyn_5fprime_2ehpp_113',['bessel_yn_prime.hpp',['../bessel__yn__prime_8hpp.html',1,'']]], + ['beta_114',['beta',['../namespacenc_1_1random.html#a9cf5ddddc350278c76e077c67b5254ab',1,'nc::random::beta(dtype inAlpha, dtype inBeta)'],['../namespacenc_1_1random.html#ab7de94b949521786b7bde650b1e813fa',1,'nc::random::beta(const Shape &inShape, dtype inAlpha, dtype inBeta)'],['../namespacenc_1_1special.html#a9b74f451f99338c909b7f73df6e5bff6',1,'nc::special::beta(dtype1 a, dtype2 b)'],['../namespacenc_1_1special.html#ad2ac5c7add77e243dc39899c15ad93e6',1,'nc::special::beta(const NdArray< dtype1 > &inArrayA, const NdArray< dtype2 > &inArrayB)']]], + ['big_115',['BIG',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152aa60c6c694491d75b439073b8cb05b139',1,'nc']]], + ['binaryrepr_116',['binaryRepr',['../namespacenc.html#a8c8a7dbf208bb2d31983140598e7cebe',1,'nc']]], + ['binaryrepr_2ehpp_117',['binaryRepr.hpp',['../binary_repr_8hpp.html',1,'']]], + ['bincount_118',['bincount',['../namespacenc.html#aa31a10ae8201c637ab3d203844b81904',1,'nc::bincount(const NdArray< dtype > &inArray, const NdArray< dtype > &inWeights, uint16 inMinLength=1)'],['../namespacenc.html#a60bb0f9e8bed0fd6f5c0973cf3b918ca',1,'nc::bincount(const NdArray< dtype > &inArray, uint16 inMinLength=1)']]], + ['bincount_2ehpp_119',['bincount.hpp',['../bincount_8hpp.html',1,'']]], + ['binomial_120',['binomial',['../namespacenc_1_1random.html#a83099ec22905c3ad69984a94d823a3d8',1,'nc::random::binomial(const Shape &inShape, dtype inN, double inP=0.5)'],['../namespacenc_1_1random.html#a13657004ec565f15648a520e3d060002',1,'nc::random::binomial(dtype inN, double inP=0.5)']]], + ['binomial_2ehpp_121',['binomial.hpp',['../binomial_8hpp.html',1,'']]], + ['bisection_122',['Bisection',['../classnc_1_1roots_1_1_bisection.html#a05985162d3dac7a0919319c6cde74895',1,'nc::roots::Bisection::Bisection(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_bisection.html#ae9ccce420ccf01a829b0138f264956cb',1,'nc::roots::Bisection::Bisection(const double epsilon, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_bisection.html',1,'nc::roots::Bisection']]], + ['bisection_2ehpp_123',['Bisection.hpp',['../_bisection_8hpp.html',1,'']]], + ['bits_124',['bits',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ae35570f524474adaa2315bead3f9be9e',1,'nc::DtypeInfo< std::complex< dtype > >::bits()'],['../classnc_1_1_dtype_info.html#a3f6aa0cc80e59dc331bc0e8dfe2f20bb',1,'nc::DtypeInfo::bits()']]], + ['bitwise_5fand_125',['bitwise_and',['../namespacenc.html#a4a7fa01dbe15029314c6204f930c09af',1,'nc']]], + ['bitwise_5fand_2ehpp_126',['bitwise_and.hpp',['../bitwise__and_8hpp.html',1,'']]], + ['bitwise_5fnot_127',['bitwise_not',['../namespacenc.html#a172096cafc950983ccbbb05eb5426722',1,'nc']]], + ['bitwise_5fnot_2ehpp_128',['bitwise_not.hpp',['../bitwise__not_8hpp.html',1,'']]], + ['bitwise_5for_129',['bitwise_or',['../namespacenc.html#a6203fb3929a9c533eba79b64342eaa3a',1,'nc']]], + ['bitwise_5for_2ehpp_130',['bitwise_or.hpp',['../bitwise__or_8hpp.html',1,'']]], + ['bitwise_5fxor_131',['bitwise_xor',['../namespacenc.html#a07c69919a1dc382fd2ae3ebf1b358319',1,'nc']]], + ['bitwise_5fxor_2ehpp_132',['bitwise_xor.hpp',['../bitwise__xor_8hpp.html',1,'']]], + ['blackman_133',['blackman',['../namespacenc.html#aab31b376c91a94e877f236177dbab4d0',1,'nc']]], + ['blackman_2ehpp_134',['blackman.hpp',['../blackman_8hpp.html',1,'']]], + ['boostinterface_2ehpp_135',['BoostInterface.hpp',['../_boost_interface_8hpp.html',1,'']]], + ['boostnumpyndarrayhelper_2ehpp_136',['BoostNumpyNdarrayHelper.hpp',['../_boost_numpy_ndarray_helper_8hpp.html',1,'']]], + ['boundary_137',['Boundary',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6',1,'nc::filter']]], + ['boundary_2ehpp_138',['Boundary.hpp',['../_boundary_8hpp.html',1,'']]], + ['brent_139',['Brent',['../classnc_1_1roots_1_1_brent.html#a1e9cf8f7be13c7bbb42a073ec9eb5369',1,'nc::roots::Brent::Brent(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_brent.html#aecf6662d1b7128d38796cf4ab99143f4',1,'nc::roots::Brent::Brent(const double epsilon, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_brent.html',1,'nc::roots::Brent']]], + ['brent_2ehpp_140',['Brent.hpp',['../_brent_8hpp.html',1,'']]], + ['building_141',['Building',['../md__c___github__num_cpp_docs_markdown__building.html',1,'']]], + ['building_2emd_142',['Building.md',['../_building_8md.html',1,'']]], + ['byteswap_143',['byteswap',['../classnc_1_1_nd_array.html#a2d3f796540ca2966cd2964a358627630',1,'nc::NdArray']]], + ['byteswap_144',['byteSwap',['../namespacenc_1_1endian.html#a28d96487f9ac66755e2dd4925a459e0d',1,'nc::endian']]], + ['byteswap_145',['byteswap',['../namespacenc.html#a244a5b96158e15e74e2cc1e54c17edff',1,'nc']]], + ['byteswap_2ehpp_146',['byteswap.hpp',['../byteswap_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_10.html b/docs/doxygen/html/search/all_10.html index 54aed4c1c..3bf11961f 100644 --- a/docs/doxygen/html/search/all_10.html +++ b/docs/doxygen/html/search/all_10.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_10.js b/docs/doxygen/html/search/all_10.js index 2ca16ba65..d3b4c2ec8 100644 --- a/docs/doxygen/html/search/all_10.js +++ b/docs/doxygen/html/search/all_10.js @@ -1,5 +1,5 @@ var searchData= [ - ['quaternion_835',['Quaternion',['../classnc_1_1rotations_1_1_quaternion.html',1,'nc::rotations::Quaternion'],['../classnc_1_1rotations_1_1_quaternion.html#a3b6901fb3a079eb9249bd1bf3098c36c',1,'nc::rotations::Quaternion::Quaternion()=default'],['../classnc_1_1rotations_1_1_quaternion.html#a8c498c295071b8b787902044bf87d34d',1,'nc::rotations::Quaternion::Quaternion(double roll, double pitch, double yaw) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a3ba2fb2c68554ec78a0957dc1fd7752d',1,'nc::rotations::Quaternion::Quaternion(double inI, double inJ, double inK, double inS) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#addcc7fb7b4acd4201e7f5b90ef207f4d',1,'nc::rotations::Quaternion::Quaternion(const NdArray< double > &inArray)'],['../classnc_1_1rotations_1_1_quaternion.html#abbacae2cb36d4f7e93e1cf130f8ca6b4',1,'nc::rotations::Quaternion::Quaternion(const Vec3 &inAxis, double inAngle) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a81b7db9d5e593a61272e09ce7dcc1325',1,'nc::rotations::Quaternion::Quaternion(const NdArray< double > &inAxis, double inAngle)']]], - ['quaternion_2ehpp_836',['Quaternion.hpp',['../_quaternion_8hpp.html',1,'']]] + ['quaternion_885',['Quaternion',['../classnc_1_1rotations_1_1_quaternion.html',1,'nc::rotations::Quaternion'],['../classnc_1_1rotations_1_1_quaternion.html#a3b6901fb3a079eb9249bd1bf3098c36c',1,'nc::rotations::Quaternion::Quaternion()=default'],['../classnc_1_1rotations_1_1_quaternion.html#a8c498c295071b8b787902044bf87d34d',1,'nc::rotations::Quaternion::Quaternion(double roll, double pitch, double yaw) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a3ba2fb2c68554ec78a0957dc1fd7752d',1,'nc::rotations::Quaternion::Quaternion(double inI, double inJ, double inK, double inS) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#addcc7fb7b4acd4201e7f5b90ef207f4d',1,'nc::rotations::Quaternion::Quaternion(const NdArray< double > &inArray)'],['../classnc_1_1rotations_1_1_quaternion.html#abbacae2cb36d4f7e93e1cf130f8ca6b4',1,'nc::rotations::Quaternion::Quaternion(const Vec3 &inAxis, double inAngle) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a81b7db9d5e593a61272e09ce7dcc1325',1,'nc::rotations::Quaternion::Quaternion(const NdArray< double > &inAxis, double inAngle)']]], + ['quaternion_2ehpp_886',['Quaternion.hpp',['../_quaternion_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_11.html b/docs/doxygen/html/search/all_11.html index 2cb14d058..c9f79d289 100644 --- a/docs/doxygen/html/search/all_11.html +++ b/docs/doxygen/html/search/all_11.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_11.js b/docs/doxygen/html/search/all_11.js index db276d3f9..025153454 100644 --- a/docs/doxygen/html/search/all_11.js +++ b/docs/doxygen/html/search/all_11.js @@ -1,94 +1,93 @@ var searchData= [ - ['beta_2ehpp_837',['beta.hpp',['../_random_2beta_8hpp.html',1,'']]], - ['gamma_2ehpp_838',['gamma.hpp',['../_random_2gamma_8hpp.html',1,'']]], - ['laplace_2ehpp_839',['laplace.hpp',['../_random_2laplace_8hpp.html',1,'']]], - ['ra_840',['RA',['../classnc_1_1coordinates_1_1_r_a.html',1,'nc::coordinates']]], - ['ra_841',['ra',['../classnc_1_1coordinates_1_1_coordinate.html#abf447494a1d0a769af81aeab79041e5b',1,'nc::coordinates::Coordinate']]], - ['ra_842',['RA',['../classnc_1_1coordinates_1_1_r_a.html#a7566e8350b9075ae0f0406fce26b7900',1,'nc::coordinates::RA::RA(uint8 inHours, uint8 inMinutes, double inSeconds) noexcept'],['../classnc_1_1coordinates_1_1_r_a.html#ab14fd57fb6ab65c4d8ca668d549a507f',1,'nc::coordinates::RA::RA(double inDegrees)'],['../classnc_1_1coordinates_1_1_r_a.html#a632d150cc8009f1ab61053161046f553',1,'nc::coordinates::RA::RA()=default']]], - ['ra_2ehpp_843',['RA.hpp',['../_r_a_8hpp.html',1,'']]], - ['rad2deg_844',['rad2deg',['../namespacenc.html#a8c8fc041b633785104c583a8ce3d9cef',1,'nc::rad2deg(dtype inValue) noexcept'],['../namespacenc.html#a19a21c68cb53309ac33e9c1a7b5d2513',1,'nc::rad2deg(const NdArray< dtype > &inArray)']]], - ['rad2deg_2ehpp_845',['rad2deg.hpp',['../rad2deg_8hpp.html',1,'']]], - ['radians_846',['radians',['../namespacenc.html#ac0f2714a22ef5029abf0f3fee0028546',1,'nc::radians(dtype inValue) noexcept'],['../namespacenc.html#a746ecf69081dec55ceb2647726ee106b',1,'nc::radians(const NdArray< dtype > &inArray)'],['../classnc_1_1coordinates_1_1_r_a.html#a8a9f875774dd8375cbc72c7fbfbebc2a',1,'nc::coordinates::RA::radians()'],['../classnc_1_1coordinates_1_1_dec.html#af80282ccfb04054bbccb98735a28ac46',1,'nc::coordinates::Dec::radians()']]], - ['radians_2ehpp_847',['radians.hpp',['../radians_8hpp.html',1,'']]], - ['radianseperation_848',['radianSeperation',['../namespacenc_1_1coordinates.html#aa009e573b47b51d34d3aae0b152566c8',1,'nc::coordinates::radianSeperation(const Coordinate &inCoordinate1, const Coordinate &inCoordinate2)'],['../namespacenc_1_1coordinates.html#a712fd847123cfde7948c36ca59c6a435',1,'nc::coordinates::radianSeperation(const NdArray< double > &inVector1, const NdArray< double > &inVector2)'],['../classnc_1_1coordinates_1_1_coordinate.html#ae01f4143ae771a0f8bccefc4bba78b86',1,'nc::coordinates::Coordinate::radianSeperation(const NdArray< double > &inVector) const'],['../classnc_1_1coordinates_1_1_coordinate.html#a169974783c87c9bbc89ccb4ea2ea4123',1,'nc::coordinates::Coordinate::radianSeperation(const Coordinate &inOtherCoordinate) const']]], - ['radianseperation_2ehpp_849',['radianSeperation.hpp',['../radian_seperation_8hpp.html',1,'']]], - ['rand_850',['rand',['../namespacenc_1_1random.html#a4552f49c72dc1a4d8426643fce14f214',1,'nc::random::rand(const Shape &inShape)'],['../namespacenc_1_1random.html#a0f5694167e15a8bc566a3fa6f842c3b4',1,'nc::random::rand()']]], - ['rand_2ehpp_851',['rand.hpp',['../rand_8hpp.html',1,'']]], - ['randfloat_852',['randFloat',['../namespacenc_1_1random.html#a4a261ae2a0f7783f2a5262a22b18412f',1,'nc::random::randFloat(dtype inLow, dtype inHigh=0.0)'],['../namespacenc_1_1random.html#a531b5487f2f3e54fab878340277f7283',1,'nc::random::randFloat(const Shape &inShape, dtype inLow, dtype inHigh=0.0)']]], - ['randfloat_2ehpp_853',['randFloat.hpp',['../rand_float_8hpp.html',1,'']]], - ['randint_854',['randInt',['../namespacenc_1_1random.html#a43201ec4ec8e0c99041647ab45ac0133',1,'nc::random::randInt(dtype inLow, dtype inHigh=0)'],['../namespacenc_1_1random.html#a2842db744ad52ca905a48cd281934fd3',1,'nc::random::randInt(const Shape &inShape, dtype inLow, dtype inHigh=0)']]], - ['randint_2ehpp_855',['randInt.hpp',['../rand_int_8hpp.html',1,'']]], - ['randn_856',['randN',['../namespacenc_1_1random.html#a3c6b8fb355a9ec0bd4c9e9bb8062d1f2',1,'nc::random::randN(const Shape &inShape)'],['../namespacenc_1_1random.html#aeffa74d48c1fb2603f83eaa358f17501',1,'nc::random::randN()']]], - ['randn_2ehpp_857',['randN.hpp',['../rand_n_8hpp.html',1,'']]], - ['random_2ehpp_858',['Random.hpp',['../_random_8hpp.html',1,'']]], - ['rankfilter_859',['rankFilter',['../namespacenc_1_1filter.html#a0c2cbe33d4d1ef4f6a1a10320db1c059',1,'nc::filter']]], - ['rankfilter_2ehpp_860',['rankFilter.hpp',['../rank_filter_8hpp.html',1,'']]], - ['rankfilter1d_861',['rankFilter1d',['../namespacenc_1_1filter.html#ac46eab01f172d2fb3818e0d1cfaf1274',1,'nc::filter']]], - ['rankfilter1d_2ehpp_862',['rankFilter1d.hpp',['../rank_filter1d_8hpp.html',1,'']]], - ['ravel_863',['ravel',['../namespacenc.html#a3e7af5d797200117ddc5e5e3e2a46ee9',1,'nc::ravel()'],['../classnc_1_1_nd_array.html#aeca85f2279281bd389225a76e23e1c45',1,'nc::NdArray::ravel()']]], - ['ravel_2ehpp_864',['ravel.hpp',['../ravel_8hpp.html',1,'']]], - ['rbegin_865',['rbegin',['../classnc_1_1_nd_array.html#a9f983aabd3568e7bd1be0a0c4e2b881d',1,'nc::NdArray::rbegin(size_type inRow) const'],['../classnc_1_1_nd_array.html#ad779b3d2a2f094370be77e515533f143',1,'nc::NdArray::rbegin() const noexcept'],['../classnc_1_1_nd_array.html#a2aa9a0589da3c0b19b1b413e71f65667',1,'nc::NdArray::rbegin(size_type inRow)'],['../classnc_1_1_nd_array.html#a06b5c7ba13ae9f8750bca6d5f3803c73',1,'nc::NdArray::rbegin() noexcept']]], - ['rcolbegin_866',['rcolbegin',['../classnc_1_1_nd_array.html#a48fb313ad0eb8126c338a319a5a2fd98',1,'nc::NdArray::rcolbegin() noexcept'],['../classnc_1_1_nd_array.html#a5f70273a5bbff4f0b0c5086649939301',1,'nc::NdArray::rcolbegin(size_type inCol) const'],['../classnc_1_1_nd_array.html#a012f1203a072caeba4221aaa3c044186',1,'nc::NdArray::rcolbegin() const noexcept'],['../classnc_1_1_nd_array.html#a56704aea2c006973065aaa2848faa7fb',1,'nc::NdArray::rcolbegin(size_type inCol)']]], - ['rcolend_867',['rcolend',['../classnc_1_1_nd_array.html#a51e2cddde9482a27bf73fa308e0268c6',1,'nc::NdArray::rcolend(size_type inCol) const'],['../classnc_1_1_nd_array.html#a2d5976e4cd61862c74dce30c94f8fb87',1,'nc::NdArray::rcolend() const noexcept'],['../classnc_1_1_nd_array.html#ad5f870f49c9601930423258dcc723c8e',1,'nc::NdArray::rcolend() noexcept'],['../classnc_1_1_nd_array.html#a434f10a7956f425882fbbbc90038e4cb',1,'nc::NdArray::rcolend(size_type inCol)']]], - ['readme_2emd_868',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]], - ['real_869',['real',['../namespacenc.html#a74174a26b4b6db41951d9ce4222ea724',1,'nc::real(const std::complex< dtype > &inValue)'],['../namespacenc.html#af7cf60663e018e25b1b59016af7e8967',1,'nc::real(const NdArray< std::complex< dtype >> &inArray)']]], - ['real_2ehpp_870',['real.hpp',['../real_8hpp.html',1,'']]], - ['reciprocal_871',['reciprocal',['../namespacenc.html#af0dd0542b322f7f4f8124d13d25cf50e',1,'nc::reciprocal(const NdArray< dtype > &inArray)'],['../namespacenc.html#ac3d266878661a694e99329ab16fa5d25',1,'nc::reciprocal(const NdArray< std::complex< dtype >> &inArray)']]], - ['reciprocal_2ehpp_872',['reciprocal.hpp',['../reciprocal_8hpp.html',1,'']]], - ['reference_873',['reference',['../classnc_1_1_nd_array.html#adb4a1e1a3c3420c4b2133ba81a44a0e0',1,'nc::NdArray::reference()'],['../classnc_1_1_nd_array_const_iterator.html#aba1912cb4e7cc39898af1ea385847544',1,'nc::NdArrayConstIterator::reference()'],['../classnc_1_1_nd_array_iterator.html#a0782b66e4d3632cd4ce99333fe86d0a3',1,'nc::NdArrayIterator::reference()'],['../classnc_1_1_nd_array_const_column_iterator.html#a6903047bac2424843ca26ed9116abb77',1,'nc::NdArrayConstColumnIterator::reference()'],['../classnc_1_1_nd_array_column_iterator.html#aaccb5a94c10e92de24e5bc465c663305',1,'nc::NdArrayColumnIterator::reference()']]], - ['reflect_874',['REFLECT',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6ae4f6a05f82ed398f984f4bc1a55838df',1,'nc::filter']]], - ['reflect1d_875',['reflect1d',['../namespacenc_1_1filter_1_1boundary.html#ac423cb3e19b12651c02c2c16d0723b3f',1,'nc::filter::boundary']]], - ['reflect1d_2ehpp_876',['reflect1d.hpp',['../reflect1d_8hpp.html',1,'']]], - ['reflect2d_877',['reflect2d',['../namespacenc_1_1filter_1_1boundary.html#add9a7d70820161e370ecd37212b1f397',1,'nc::filter::boundary']]], - ['reflect2d_2ehpp_878',['reflect2d.hpp',['../reflect2d_8hpp.html',1,'']]], - ['release_20notes_879',['Release Notes',['../md__mnt_c__github__num_cpp_docs_markdown__release_notes.html',1,'']]], - ['releasenotes_2emd_880',['ReleaseNotes.md',['../_release_notes_8md.html',1,'']]], - ['remainder_881',['remainder',['../namespacenc.html#a14fb9f7c88fca02b0ef3f5ebd04d9099',1,'nc::remainder(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a12bfc5b4d937aa0366b70fb15270bd41',1,'nc::remainder(dtype inValue1, dtype inValue2) noexcept']]], - ['remainder_2ehpp_882',['remainder.hpp',['../remainder_8hpp.html',1,'']]], - ['rend_883',['rend',['../classnc_1_1_nd_array.html#a93f962a3badfd82da685a2d7fdf006aa',1,'nc::NdArray::rend(size_type inRow) const'],['../classnc_1_1_nd_array.html#a59de727a0db449ca5a28d436c9cec165',1,'nc::NdArray::rend() const noexcept'],['../classnc_1_1_nd_array.html#a9047b67188b652c471db37731659c598',1,'nc::NdArray::rend(size_type inRow)'],['../classnc_1_1_nd_array.html#a92c90b8671a637ec7d7821f6e8bdfa56',1,'nc::NdArray::rend() noexcept']]], - ['repeat_884',['repeat',['../classnc_1_1_nd_array.html#a7d72328d5853baedb1644ae387ed3331',1,'nc::NdArray::repeat(const Shape &inRepeatShape) const'],['../classnc_1_1_nd_array.html#acd2185e49f9cbe68b3d3fe6cef552d34',1,'nc::NdArray::repeat(uint32 inNumRows, uint32 inNumCols) const'],['../namespacenc.html#a29f4287edbe473e6039e4566adfd3ea4',1,'nc::repeat(const NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a5aaf1657514116d3556183665983e02a',1,'nc::repeat(const NdArray< dtype > &inArray, const Shape &inRepeatShape)']]], - ['repeat_2ehpp_885',['repeat.hpp',['../repeat_8hpp.html',1,'']]], - ['replace_886',['replace',['../namespacenc_1_1stl__algorithms.html#aa8d46043c9c62a348687ef8aa0a3286b',1,'nc::stl_algorithms::replace()'],['../namespacenc.html#a8e35a8cdb9a2a053820c58d2a9eab4e2',1,'nc::replace()'],['../classnc_1_1_nd_array.html#aefaba20fd8cf6710714340ea9733f1d5',1,'nc::NdArray::replace()']]], - ['replace_2ehpp_887',['replace.hpp',['../replace_8hpp.html',1,'']]], - ['resetnumberofiterations_888',['resetNumberOfIterations',['../classnc_1_1roots_1_1_iteration.html#a85e79a4794bc3a6ac6bc3564956737a2',1,'nc::roots::Iteration']]], - ['reshape_889',['reshape',['../classnc_1_1_nd_array.html#ace0dfa53f15057e5f505a41b67f000bb',1,'nc::NdArray::reshape()'],['../namespacenc.html#a45d9fc095ecf7a127211c507c03d95db',1,'nc::reshape(NdArray< dtype > &inArray, const Shape &inNewShape)'],['../namespacenc.html#a6858d6bf094cfeaa724b78133668d13d',1,'nc::reshape(NdArray< dtype > &inArray, int32 inNumRows, int32 inNumCols)'],['../namespacenc.html#a5fb8d978dec93ab8a07849b5dc0d2b06',1,'nc::reshape(NdArray< dtype > &inArray, uint32 inSize)'],['../classnc_1_1_nd_array.html#aa646e053a4fcd7ef3356add1edb4240d',1,'nc::NdArray::reshape(int32 inNumRows, int32 inNumCols)'],['../classnc_1_1_nd_array.html#a81992957eaa4cf2da430e12296af79c7',1,'nc::NdArray::reshape(const Shape &inShape)']]], - ['reshape_2ehpp_890',['reshape.hpp',['../reshape_8hpp.html',1,'']]], - ['resizefast_891',['resizeFast',['../namespacenc.html#ac2bcb04348f201141d8f465e461269cc',1,'nc::resizeFast(NdArray< dtype > &inArray, const Shape &inNewShape)'],['../namespacenc.html#a4dcc5b3664678e2510ff1df693641619',1,'nc::resizeFast(NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)'],['../classnc_1_1_nd_array.html#ac15af1559e8f8dcd8cd5930c5ce54377',1,'nc::NdArray::resizeFast(uint32 inNumRows, uint32 inNumCols)'],['../classnc_1_1_nd_array.html#a1f999dc4afd08a9bc9c696af66d3ccb3',1,'nc::NdArray::resizeFast(const Shape &inShape)']]], - ['resizefast_2ehpp_892',['resizeFast.hpp',['../resize_fast_8hpp.html',1,'']]], - ['resizeslow_893',['resizeSlow',['../classnc_1_1_nd_array.html#a9499c04345682f4bf0afd8a5d16df435',1,'nc::NdArray::resizeSlow()'],['../namespacenc.html#acdf2d60461cf6779107dc00118b642f9',1,'nc::resizeSlow(NdArray< dtype > &inArray, const Shape &inNewShape)'],['../namespacenc.html#a845b9344102b55adc482616442765d93',1,'nc::resizeSlow(NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)'],['../classnc_1_1_nd_array.html#a091f587d753e4e4aec1bb6621ccbaa41',1,'nc::NdArray::resizeSlow()']]], - ['resizeslow_2ehpp_894',['resizeSlow.hpp',['../resize_slow_8hpp.html',1,'']]], - ['reverse_895',['reverse',['../namespacenc_1_1stl__algorithms.html#a5334750b4a1bb38d3932bffcc32a71b4',1,'nc::stl_algorithms']]], - ['reverse_5fcolumn_5fiterator_896',['reverse_column_iterator',['../classnc_1_1_nd_array.html#abc1bc6a854968940dac643396b2fb1b5',1,'nc::NdArray']]], - ['reverse_5fiterator_897',['reverse_iterator',['../classnc_1_1_nd_array.html#a9987ced72f8182d4b55807c0177eab11',1,'nc::NdArray']]], - ['riemann_5fzeta_898',['riemann_zeta',['../namespacenc_1_1special.html#a8d31d086f833496ad7eb98c5bd6304a2',1,'nc::special::riemann_zeta(dtype inValue)'],['../namespacenc_1_1special.html#a6a4ac80df3e9946630cf330d03cbbbd2',1,'nc::special::riemann_zeta(const NdArray< dtype > &inArray)']]], - ['riemann_5fzeta_2ehpp_899',['riemann_zeta.hpp',['../riemann__zeta_8hpp.html',1,'']]], - ['right_900',['right',['../classnc_1_1_vec3.html#af8862aed471260a45c7691c7c5c6b016',1,'nc::Vec3::right()'],['../classnc_1_1_vec2.html#ab84fdd231058aa0343e2249e209855bf',1,'nc::Vec2::right()']]], - ['right_5fshift_901',['right_shift',['../namespacenc.html#ad66d86cf7f33128b1d7540ac7cde9f75',1,'nc']]], - ['right_5fshift_2ehpp_902',['right_shift.hpp',['../right__shift_8hpp.html',1,'']]], - ['rint_903',['rint',['../namespacenc.html#a9ba33527dbca7d5482cf88899abd827d',1,'nc::rint(dtype inValue) noexcept'],['../namespacenc.html#ae37c534819fb5756874bf8972df7e2fa',1,'nc::rint(const NdArray< dtype > &inArray)']]], - ['rint_2ehpp_904',['rint.hpp',['../rint_8hpp.html',1,'']]], - ['rms_905',['rms',['../namespacenc.html#a4e858c717929038ef196af3c4b4c53ae',1,'nc::rms(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a0da200d1221a9b1c526de48ccba57258',1,'nc::rms(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], - ['rms_2ehpp_906',['rms.hpp',['../rms_8hpp.html',1,'']]], - ['rodriguesrotation_907',['rodriguesRotation',['../namespacenc_1_1rotations.html#ae7d7397eec3edcfbd8b6b9784ad2fd1c',1,'nc::rotations::rodriguesRotation(const Vec3 &k, double theta, const Vec3 &v) noexcept'],['../namespacenc_1_1rotations.html#ab0fbd9345e707b6efb023ec9b354fbb5',1,'nc::rotations::rodriguesRotation(const NdArray< dtype > &k, double theta, const NdArray< dtype > &v)']]], - ['rodriguesrotation_2ehpp_908',['rodriguesRotation.hpp',['../rodrigues_rotation_8hpp.html',1,'']]], - ['roll_909',['roll',['../classnc_1_1rotations_1_1_quaternion.html#a26f2a9303f0521ee36d92467ab45e3ab',1,'nc::rotations::Quaternion::roll()'],['../namespacenc.html#a57ce5ac638626e5718c13f756af23bf2',1,'nc::roll()'],['../classnc_1_1rotations_1_1_d_c_m.html#ac562518ebdec1ce36cf8897a16f16fca',1,'nc::rotations::DCM::roll()']]], - ['roll_2ehpp_910',['roll.hpp',['../roll_8hpp.html',1,'']]], - ['romberg_911',['romberg',['../namespacenc_1_1integrate.html#a5406412619aa59539dd19f62f0be8caf',1,'nc::integrate']]], - ['romberg_2ehpp_912',['romberg.hpp',['../romberg_8hpp.html',1,'']]], - ['roots_2ehpp_913',['Roots.hpp',['../_roots_8hpp.html',1,'']]], - ['rot90_914',['rot90',['../namespacenc.html#a2f52b32644f8f4da903e9c096d283da6',1,'nc']]], - ['rot90_2ehpp_915',['rot90.hpp',['../rot90_8hpp.html',1,'']]], - ['rotate_916',['rotate',['../namespacenc_1_1stl__algorithms.html#acfc1538e29a04fe5158405c710e5eaa7',1,'nc::stl_algorithms::rotate()'],['../classnc_1_1rotations_1_1_quaternion.html#a382d4e4c045bce131c5cce634ed077c7',1,'nc::rotations::Quaternion::rotate(const Vec3 &inVec3) const'],['../classnc_1_1rotations_1_1_quaternion.html#a2e19c4d0b48d7f73e0aa273d85435370',1,'nc::rotations::Quaternion::rotate(const NdArray< double > &inVector) const']]], - ['rotations_2ehpp_917',['Rotations.hpp',['../_rotations_8hpp.html',1,'']]], - ['round_918',['round',['../namespacenc.html#a2a3a666494e7c95975d40ce80b156f0f',1,'nc::round(const NdArray< dtype > &inArray, uint8 inDecimals=0)'],['../namespacenc.html#af9c0b27b59e8a7be27130c9f470c4ef3',1,'nc::round(dtype inValue, uint8 inDecimals=0)'],['../classnc_1_1_nd_array.html#a13b0f7af99772cfbca83b6734fbef04d',1,'nc::NdArray::round()']]], - ['round_2ehpp_919',['round.hpp',['../round_8hpp.html',1,'']]], - ['row_920',['ROW',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84a54c1ed33c810f895d48c008d89f880b7',1,'nc']]], - ['row_921',['row',['../classnc_1_1image_processing_1_1_centroid.html#aa3546b7b2430b51650f40fb344ab55a8',1,'nc::imageProcessing::Centroid::row()'],['../classnc_1_1_nd_array.html#ab24cce75b03204af139d8d32090cdae8',1,'nc::NdArray::row()'],['../classnc_1_1image_processing_1_1_pixel.html#a6e712ef3b6547f5cafb6e8db1349658e',1,'nc::imageProcessing::Pixel::row()']]], - ['row_5fstack_922',['row_stack',['../namespacenc.html#a0d82f81eba247f95974bd20039bd56fc',1,'nc']]], - ['row_5fstack_2ehpp_923',['row_stack.hpp',['../row__stack_8hpp.html',1,'']]], - ['rowmax_924',['rowMax',['../classnc_1_1image_processing_1_1_cluster.html#a58eea870dca4a5c61cfd4db24ea50267',1,'nc::imageProcessing::Cluster']]], - ['rowmin_925',['rowMin',['../classnc_1_1image_processing_1_1_cluster.html#ac3f0c485f193a71a6caca9f553970383',1,'nc::imageProcessing::Cluster']]], - ['rows_926',['rows',['../classnc_1_1_shape.html#a6f89f699dea6eb89eef19e00c92b223a',1,'nc::Shape']]], - ['rslice_927',['rSlice',['../classnc_1_1_nd_array.html#af0fb0a32e08456603964206487aebc88',1,'nc::NdArray']]] + ['beta_2ehpp_887',['beta.hpp',['../_random_2beta_8hpp.html',1,'']]], + ['gamma_2ehpp_888',['gamma.hpp',['../_random_2gamma_8hpp.html',1,'']]], + ['laplace_2ehpp_889',['laplace.hpp',['../_random_2laplace_8hpp.html',1,'']]], + ['ra_890',['RA',['../classnc_1_1coordinates_1_1_r_a.html',1,'nc::coordinates::RA'],['../classnc_1_1coordinates_1_1_r_a.html#a632d150cc8009f1ab61053161046f553',1,'nc::coordinates::RA::RA()=default'],['../classnc_1_1coordinates_1_1_r_a.html#ab14fd57fb6ab65c4d8ca668d549a507f',1,'nc::coordinates::RA::RA(double inDegrees)'],['../classnc_1_1coordinates_1_1_r_a.html#a7566e8350b9075ae0f0406fce26b7900',1,'nc::coordinates::RA::RA(uint8 inHours, uint8 inMinutes, double inSeconds) noexcept']]], + ['ra_891',['ra',['../classnc_1_1coordinates_1_1_coordinate.html#abf447494a1d0a769af81aeab79041e5b',1,'nc::coordinates::Coordinate']]], + ['ra_2ehpp_892',['RA.hpp',['../_r_a_8hpp.html',1,'']]], + ['rad2deg_893',['rad2deg',['../namespacenc.html#a8c8fc041b633785104c583a8ce3d9cef',1,'nc::rad2deg(dtype inValue) noexcept'],['../namespacenc.html#a19a21c68cb53309ac33e9c1a7b5d2513',1,'nc::rad2deg(const NdArray< dtype > &inArray)']]], + ['rad2deg_2ehpp_894',['rad2deg.hpp',['../rad2deg_8hpp.html',1,'']]], + ['radians_895',['radians',['../classnc_1_1coordinates_1_1_dec.html#af80282ccfb04054bbccb98735a28ac46',1,'nc::coordinates::Dec::radians()'],['../namespacenc.html#ac0f2714a22ef5029abf0f3fee0028546',1,'nc::radians(dtype inValue) noexcept'],['../namespacenc.html#a746ecf69081dec55ceb2647726ee106b',1,'nc::radians(const NdArray< dtype > &inArray)'],['../classnc_1_1coordinates_1_1_r_a.html#a8a9f875774dd8375cbc72c7fbfbebc2a',1,'nc::coordinates::RA::radians()']]], + ['radians_2ehpp_896',['radians.hpp',['../radians_8hpp.html',1,'']]], + ['radianseperation_897',['radianSeperation',['../namespacenc_1_1coordinates.html#a712fd847123cfde7948c36ca59c6a435',1,'nc::coordinates::radianSeperation()'],['../classnc_1_1coordinates_1_1_coordinate.html#ae01f4143ae771a0f8bccefc4bba78b86',1,'nc::coordinates::Coordinate::radianSeperation(const NdArray< double > &inVector) const'],['../classnc_1_1coordinates_1_1_coordinate.html#a169974783c87c9bbc89ccb4ea2ea4123',1,'nc::coordinates::Coordinate::radianSeperation(const Coordinate &inOtherCoordinate) const'],['../namespacenc_1_1coordinates.html#aa009e573b47b51d34d3aae0b152566c8',1,'nc::coordinates::radianSeperation()']]], + ['radianseperation_2ehpp_898',['radianSeperation.hpp',['../radian_seperation_8hpp.html',1,'']]], + ['rand_899',['rand',['../namespacenc_1_1random.html#a4552f49c72dc1a4d8426643fce14f214',1,'nc::random::rand(const Shape &inShape)'],['../namespacenc_1_1random.html#a0f5694167e15a8bc566a3fa6f842c3b4',1,'nc::random::rand()']]], + ['rand_2ehpp_900',['rand.hpp',['../rand_8hpp.html',1,'']]], + ['randfloat_901',['randFloat',['../namespacenc_1_1random.html#a531b5487f2f3e54fab878340277f7283',1,'nc::random::randFloat(const Shape &inShape, dtype inLow, dtype inHigh=0.0)'],['../namespacenc_1_1random.html#a4a261ae2a0f7783f2a5262a22b18412f',1,'nc::random::randFloat(dtype inLow, dtype inHigh=0.0)']]], + ['randfloat_2ehpp_902',['randFloat.hpp',['../rand_float_8hpp.html',1,'']]], + ['randint_903',['randInt',['../namespacenc_1_1random.html#a43201ec4ec8e0c99041647ab45ac0133',1,'nc::random::randInt(dtype inLow, dtype inHigh=0)'],['../namespacenc_1_1random.html#a2842db744ad52ca905a48cd281934fd3',1,'nc::random::randInt(const Shape &inShape, dtype inLow, dtype inHigh=0)']]], + ['randint_2ehpp_904',['randInt.hpp',['../rand_int_8hpp.html',1,'']]], + ['randn_905',['randN',['../namespacenc_1_1random.html#aeffa74d48c1fb2603f83eaa358f17501',1,'nc::random::randN()'],['../namespacenc_1_1random.html#a3c6b8fb355a9ec0bd4c9e9bb8062d1f2',1,'nc::random::randN(const Shape &inShape)']]], + ['randn_2ehpp_906',['randN.hpp',['../rand_n_8hpp.html',1,'']]], + ['random_2ehpp_907',['Random.hpp',['../_random_8hpp.html',1,'']]], + ['rankfilter_908',['rankFilter',['../namespacenc_1_1filter.html#a0c2cbe33d4d1ef4f6a1a10320db1c059',1,'nc::filter']]], + ['rankfilter_2ehpp_909',['rankFilter.hpp',['../rank_filter_8hpp.html',1,'']]], + ['rankfilter1d_910',['rankFilter1d',['../namespacenc_1_1filter.html#ac46eab01f172d2fb3818e0d1cfaf1274',1,'nc::filter']]], + ['rankfilter1d_2ehpp_911',['rankFilter1d.hpp',['../rank_filter1d_8hpp.html',1,'']]], + ['ravel_912',['ravel',['../namespacenc.html#a3e7af5d797200117ddc5e5e3e2a46ee9',1,'nc::ravel()'],['../classnc_1_1_nd_array.html#aeca85f2279281bd389225a76e23e1c45',1,'nc::NdArray::ravel()']]], + ['ravel_2ehpp_913',['ravel.hpp',['../ravel_8hpp.html',1,'']]], + ['rbegin_914',['rbegin',['../classnc_1_1_nd_array.html#a06b5c7ba13ae9f8750bca6d5f3803c73',1,'nc::NdArray::rbegin() noexcept'],['../classnc_1_1_nd_array.html#a2aa9a0589da3c0b19b1b413e71f65667',1,'nc::NdArray::rbegin(size_type inRow)'],['../classnc_1_1_nd_array.html#ad779b3d2a2f094370be77e515533f143',1,'nc::NdArray::rbegin() const noexcept'],['../classnc_1_1_nd_array.html#a9f983aabd3568e7bd1be0a0c4e2b881d',1,'nc::NdArray::rbegin(size_type inRow) const']]], + ['rcolbegin_915',['rcolbegin',['../classnc_1_1_nd_array.html#a012f1203a072caeba4221aaa3c044186',1,'nc::NdArray::rcolbegin() const noexcept'],['../classnc_1_1_nd_array.html#a5f70273a5bbff4f0b0c5086649939301',1,'nc::NdArray::rcolbegin(size_type inCol) const'],['../classnc_1_1_nd_array.html#a56704aea2c006973065aaa2848faa7fb',1,'nc::NdArray::rcolbegin(size_type inCol)'],['../classnc_1_1_nd_array.html#a48fb313ad0eb8126c338a319a5a2fd98',1,'nc::NdArray::rcolbegin() noexcept']]], + ['rcolend_916',['rcolend',['../classnc_1_1_nd_array.html#ad5f870f49c9601930423258dcc723c8e',1,'nc::NdArray::rcolend() noexcept'],['../classnc_1_1_nd_array.html#a434f10a7956f425882fbbbc90038e4cb',1,'nc::NdArray::rcolend(size_type inCol)'],['../classnc_1_1_nd_array.html#a2d5976e4cd61862c74dce30c94f8fb87',1,'nc::NdArray::rcolend() const noexcept'],['../classnc_1_1_nd_array.html#a51e2cddde9482a27bf73fa308e0268c6',1,'nc::NdArray::rcolend(size_type inCol) const']]], + ['readme_2emd_917',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]], + ['real_918',['real',['../namespacenc.html#a74174a26b4b6db41951d9ce4222ea724',1,'nc::real(const std::complex< dtype > &inValue)'],['../namespacenc.html#af7cf60663e018e25b1b59016af7e8967',1,'nc::real(const NdArray< std::complex< dtype >> &inArray)']]], + ['real_2ehpp_919',['real.hpp',['../real_8hpp.html',1,'']]], + ['reciprocal_920',['reciprocal',['../namespacenc.html#af0dd0542b322f7f4f8124d13d25cf50e',1,'nc::reciprocal(const NdArray< dtype > &inArray)'],['../namespacenc.html#ac3d266878661a694e99329ab16fa5d25',1,'nc::reciprocal(const NdArray< std::complex< dtype >> &inArray)']]], + ['reciprocal_2ehpp_921',['reciprocal.hpp',['../reciprocal_8hpp.html',1,'']]], + ['reference_922',['reference',['../classnc_1_1_nd_array.html#adb4a1e1a3c3420c4b2133ba81a44a0e0',1,'nc::NdArray::reference()'],['../classnc_1_1_nd_array_iterator.html#a0782b66e4d3632cd4ce99333fe86d0a3',1,'nc::NdArrayIterator::reference()'],['../classnc_1_1_nd_array_const_column_iterator.html#a6903047bac2424843ca26ed9116abb77',1,'nc::NdArrayConstColumnIterator::reference()'],['../classnc_1_1_nd_array_column_iterator.html#aaccb5a94c10e92de24e5bc465c663305',1,'nc::NdArrayColumnIterator::reference()'],['../classnc_1_1_nd_array_const_iterator.html#aba1912cb4e7cc39898af1ea385847544',1,'nc::NdArrayConstIterator::reference()']]], + ['reflect_923',['REFLECT',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6ae4f6a05f82ed398f984f4bc1a55838df',1,'nc::filter']]], + ['reflect1d_924',['reflect1d',['../namespacenc_1_1filter_1_1boundary.html#ac423cb3e19b12651c02c2c16d0723b3f',1,'nc::filter::boundary']]], + ['reflect1d_2ehpp_925',['reflect1d.hpp',['../reflect1d_8hpp.html',1,'']]], + ['reflect2d_926',['reflect2d',['../namespacenc_1_1filter_1_1boundary.html#add9a7d70820161e370ecd37212b1f397',1,'nc::filter::boundary']]], + ['reflect2d_2ehpp_927',['reflect2d.hpp',['../reflect2d_8hpp.html',1,'']]], + ['release_20notes_928',['Release Notes',['../md__c___github__num_cpp_docs_markdown__release_notes.html',1,'']]], + ['releasenotes_2emd_929',['ReleaseNotes.md',['../_release_notes_8md.html',1,'']]], + ['remainder_930',['remainder',['../namespacenc.html#a14fb9f7c88fca02b0ef3f5ebd04d9099',1,'nc::remainder(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a12bfc5b4d937aa0366b70fb15270bd41',1,'nc::remainder(dtype inValue1, dtype inValue2) noexcept']]], + ['remainder_2ehpp_931',['remainder.hpp',['../remainder_8hpp.html',1,'']]], + ['rend_932',['rend',['../classnc_1_1_nd_array.html#a93f962a3badfd82da685a2d7fdf006aa',1,'nc::NdArray::rend(size_type inRow) const'],['../classnc_1_1_nd_array.html#a59de727a0db449ca5a28d436c9cec165',1,'nc::NdArray::rend() const noexcept'],['../classnc_1_1_nd_array.html#a9047b67188b652c471db37731659c598',1,'nc::NdArray::rend(size_type inRow)'],['../classnc_1_1_nd_array.html#a92c90b8671a637ec7d7821f6e8bdfa56',1,'nc::NdArray::rend() noexcept']]], + ['repeat_933',['repeat',['../classnc_1_1_nd_array.html#acd2185e49f9cbe68b3d3fe6cef552d34',1,'nc::NdArray::repeat()'],['../namespacenc.html#a5aaf1657514116d3556183665983e02a',1,'nc::repeat(const NdArray< dtype > &inArray, const Shape &inRepeatShape)'],['../namespacenc.html#a29f4287edbe473e6039e4566adfd3ea4',1,'nc::repeat(const NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)'],['../classnc_1_1_nd_array.html#a7d72328d5853baedb1644ae387ed3331',1,'nc::NdArray::repeat()']]], + ['repeat_2ehpp_934',['repeat.hpp',['../repeat_8hpp.html',1,'']]], + ['replace_935',['replace',['../namespacenc_1_1stl__algorithms.html#aa8d46043c9c62a348687ef8aa0a3286b',1,'nc::stl_algorithms::replace()'],['../namespacenc.html#a8e35a8cdb9a2a053820c58d2a9eab4e2',1,'nc::replace()'],['../classnc_1_1_nd_array.html#aefaba20fd8cf6710714340ea9733f1d5',1,'nc::NdArray::replace()']]], + ['replace_2ehpp_936',['replace.hpp',['../replace_8hpp.html',1,'']]], + ['resetnumberofiterations_937',['resetNumberOfIterations',['../classnc_1_1roots_1_1_iteration.html#a85e79a4794bc3a6ac6bc3564956737a2',1,'nc::roots::Iteration']]], + ['reshape_938',['reshape',['../classnc_1_1_nd_array.html#a81992957eaa4cf2da430e12296af79c7',1,'nc::NdArray::reshape()'],['../namespacenc.html#a45d9fc095ecf7a127211c507c03d95db',1,'nc::reshape(NdArray< dtype > &inArray, const Shape &inNewShape)'],['../namespacenc.html#a6858d6bf094cfeaa724b78133668d13d',1,'nc::reshape(NdArray< dtype > &inArray, int32 inNumRows, int32 inNumCols)'],['../namespacenc.html#a5fb8d978dec93ab8a07849b5dc0d2b06',1,'nc::reshape(NdArray< dtype > &inArray, uint32 inSize)'],['../classnc_1_1_nd_array.html#aa646e053a4fcd7ef3356add1edb4240d',1,'nc::NdArray::reshape(int32 inNumRows, int32 inNumCols)'],['../classnc_1_1_nd_array.html#ace0dfa53f15057e5f505a41b67f000bb',1,'nc::NdArray::reshape(size_type inSize)']]], + ['reshape_2ehpp_939',['reshape.hpp',['../reshape_8hpp.html',1,'']]], + ['resizefast_940',['resizeFast',['../classnc_1_1_nd_array.html#ac15af1559e8f8dcd8cd5930c5ce54377',1,'nc::NdArray::resizeFast(uint32 inNumRows, uint32 inNumCols)'],['../classnc_1_1_nd_array.html#a1f999dc4afd08a9bc9c696af66d3ccb3',1,'nc::NdArray::resizeFast(const Shape &inShape)'],['../namespacenc.html#ac2bcb04348f201141d8f465e461269cc',1,'nc::resizeFast(NdArray< dtype > &inArray, const Shape &inNewShape)'],['../namespacenc.html#a4dcc5b3664678e2510ff1df693641619',1,'nc::resizeFast(NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)']]], + ['resizefast_2ehpp_941',['resizeFast.hpp',['../resize_fast_8hpp.html',1,'']]], + ['resizeslow_942',['resizeSlow',['../classnc_1_1_nd_array.html#a091f587d753e4e4aec1bb6621ccbaa41',1,'nc::NdArray::resizeSlow(uint32 inNumRows, uint32 inNumCols)'],['../classnc_1_1_nd_array.html#a9499c04345682f4bf0afd8a5d16df435',1,'nc::NdArray::resizeSlow(const Shape &inShape)'],['../namespacenc.html#acdf2d60461cf6779107dc00118b642f9',1,'nc::resizeSlow(NdArray< dtype > &inArray, const Shape &inNewShape)'],['../namespacenc.html#a845b9344102b55adc482616442765d93',1,'nc::resizeSlow(NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)']]], + ['resizeslow_2ehpp_943',['resizeSlow.hpp',['../resize_slow_8hpp.html',1,'']]], + ['reverse_944',['reverse',['../namespacenc_1_1stl__algorithms.html#a5334750b4a1bb38d3932bffcc32a71b4',1,'nc::stl_algorithms']]], + ['reverse_5fcolumn_5fiterator_945',['reverse_column_iterator',['../classnc_1_1_nd_array.html#abc1bc6a854968940dac643396b2fb1b5',1,'nc::NdArray']]], + ['reverse_5fiterator_946',['reverse_iterator',['../classnc_1_1_nd_array.html#a9987ced72f8182d4b55807c0177eab11',1,'nc::NdArray']]], + ['riemann_5fzeta_947',['riemann_zeta',['../namespacenc_1_1special.html#a6a4ac80df3e9946630cf330d03cbbbd2',1,'nc::special::riemann_zeta(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#a8d31d086f833496ad7eb98c5bd6304a2',1,'nc::special::riemann_zeta(dtype inValue)']]], + ['riemann_5fzeta_2ehpp_948',['riemann_zeta.hpp',['../riemann__zeta_8hpp.html',1,'']]], + ['right_949',['right',['../classnc_1_1_vec2.html#ab84fdd231058aa0343e2249e209855bf',1,'nc::Vec2::right()'],['../classnc_1_1_vec3.html#af8862aed471260a45c7691c7c5c6b016',1,'nc::Vec3::right()']]], + ['right_5fshift_950',['right_shift',['../namespacenc.html#ad66d86cf7f33128b1d7540ac7cde9f75',1,'nc']]], + ['right_5fshift_2ehpp_951',['right_shift.hpp',['../right__shift_8hpp.html',1,'']]], + ['rint_952',['rint',['../namespacenc.html#ae37c534819fb5756874bf8972df7e2fa',1,'nc::rint(const NdArray< dtype > &inArray)'],['../namespacenc.html#a9ba33527dbca7d5482cf88899abd827d',1,'nc::rint(dtype inValue) noexcept']]], + ['rint_2ehpp_953',['rint.hpp',['../rint_8hpp.html',1,'']]], + ['rms_954',['rms',['../namespacenc.html#a0da200d1221a9b1c526de48ccba57258',1,'nc::rms(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a4e858c717929038ef196af3c4b4c53ae',1,'nc::rms(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], + ['rms_2ehpp_955',['rms.hpp',['../rms_8hpp.html',1,'']]], + ['rodriguesrotation_956',['rodriguesRotation',['../namespacenc_1_1rotations.html#ae7d7397eec3edcfbd8b6b9784ad2fd1c',1,'nc::rotations::rodriguesRotation(const Vec3 &k, double theta, const Vec3 &v) noexcept'],['../namespacenc_1_1rotations.html#ab0fbd9345e707b6efb023ec9b354fbb5',1,'nc::rotations::rodriguesRotation(const NdArray< dtype > &k, double theta, const NdArray< dtype > &v)']]], + ['rodriguesrotation_2ehpp_957',['rodriguesRotation.hpp',['../rodrigues_rotation_8hpp.html',1,'']]], + ['roll_958',['roll',['../classnc_1_1rotations_1_1_d_c_m.html#ac562518ebdec1ce36cf8897a16f16fca',1,'nc::rotations::DCM::roll()'],['../classnc_1_1rotations_1_1_quaternion.html#a26f2a9303f0521ee36d92467ab45e3ab',1,'nc::rotations::Quaternion::roll()'],['../namespacenc.html#a57ce5ac638626e5718c13f756af23bf2',1,'nc::roll()']]], + ['roll_2ehpp_959',['roll.hpp',['../roll_8hpp.html',1,'']]], + ['romberg_960',['romberg',['../namespacenc_1_1integrate.html#a5406412619aa59539dd19f62f0be8caf',1,'nc::integrate']]], + ['romberg_2ehpp_961',['romberg.hpp',['../romberg_8hpp.html',1,'']]], + ['roots_2ehpp_962',['Roots.hpp',['../_roots_8hpp.html',1,'']]], + ['rot90_963',['rot90',['../namespacenc.html#a2f52b32644f8f4da903e9c096d283da6',1,'nc']]], + ['rot90_2ehpp_964',['rot90.hpp',['../rot90_8hpp.html',1,'']]], + ['rotate_965',['rotate',['../classnc_1_1rotations_1_1_quaternion.html#a382d4e4c045bce131c5cce634ed077c7',1,'nc::rotations::Quaternion::rotate(const Vec3 &inVec3) const'],['../classnc_1_1rotations_1_1_quaternion.html#a2e19c4d0b48d7f73e0aa273d85435370',1,'nc::rotations::Quaternion::rotate(const NdArray< double > &inVector) const'],['../namespacenc_1_1stl__algorithms.html#acfc1538e29a04fe5158405c710e5eaa7',1,'nc::stl_algorithms::rotate()']]], + ['rotations_2ehpp_966',['Rotations.hpp',['../_rotations_8hpp.html',1,'']]], + ['round_967',['round',['../classnc_1_1_nd_array.html#a13b0f7af99772cfbca83b6734fbef04d',1,'nc::NdArray::round()'],['../namespacenc.html#af9c0b27b59e8a7be27130c9f470c4ef3',1,'nc::round(dtype inValue, uint8 inDecimals=0)'],['../namespacenc.html#a2a3a666494e7c95975d40ce80b156f0f',1,'nc::round(const NdArray< dtype > &inArray, uint8 inDecimals=0)']]], + ['round_2ehpp_968',['round.hpp',['../round_8hpp.html',1,'']]], + ['row_969',['row',['../classnc_1_1image_processing_1_1_centroid.html#aa3546b7b2430b51650f40fb344ab55a8',1,'nc::imageProcessing::Centroid::row()'],['../classnc_1_1image_processing_1_1_pixel.html#a6e712ef3b6547f5cafb6e8db1349658e',1,'nc::imageProcessing::Pixel::row()'],['../classnc_1_1_nd_array.html#ab24cce75b03204af139d8d32090cdae8',1,'nc::NdArray::row()']]], + ['row_970',['ROW',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84a54c1ed33c810f895d48c008d89f880b7',1,'nc']]], + ['row_5fstack_971',['row_stack',['../namespacenc.html#a0d82f81eba247f95974bd20039bd56fc',1,'nc']]], + ['row_5fstack_2ehpp_972',['row_stack.hpp',['../row__stack_8hpp.html',1,'']]], + ['rowmax_973',['rowMax',['../classnc_1_1image_processing_1_1_cluster.html#a58eea870dca4a5c61cfd4db24ea50267',1,'nc::imageProcessing::Cluster']]], + ['rowmin_974',['rowMin',['../classnc_1_1image_processing_1_1_cluster.html#ac3f0c485f193a71a6caca9f553970383',1,'nc::imageProcessing::Cluster']]], + ['rows_975',['rows',['../classnc_1_1_shape.html#a6f89f699dea6eb89eef19e00c92b223a',1,'nc::Shape']]], + ['rslice_976',['rSlice',['../classnc_1_1_nd_array.html#af0fb0a32e08456603964206487aebc88',1,'nc::NdArray']]] ]; diff --git a/docs/doxygen/html/search/all_12.html b/docs/doxygen/html/search/all_12.html index 62953a199..ab934722c 100644 --- a/docs/doxygen/html/search/all_12.html +++ b/docs/doxygen/html/search/all_12.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_12.js b/docs/doxygen/html/search/all_12.js index bb11ea56d..365bf72e9 100644 --- a/docs/doxygen/html/search/all_12.js +++ b/docs/doxygen/html/search/all_12.js @@ -1,110 +1,112 @@ var searchData= [ - ['beta_2ehpp_928',['beta.hpp',['../_special_2beta_8hpp.html',1,'']]], - ['gamma_2ehpp_929',['gamma.hpp',['../_special_2gamma_8hpp.html',1,'']]], - ['s_930',['s',['../classnc_1_1rotations_1_1_quaternion.html#a075b6f1befef247f5d638c91e1a451fd',1,'nc::rotations::Quaternion::s()'],['../classnc_1_1linalg_1_1_s_v_d.html#a323915fbe7cbaabadef01ffa948d2f1a',1,'nc::linalg::SVD::s()']]], - ['secant_931',['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']]], - ['secant_2ehpp_932',['Secant.hpp',['../_secant_8hpp.html',1,'']]], - ['seconds_933',['seconds',['../classnc_1_1coordinates_1_1_r_a.html#af0c9b649f60a70bbf421a6eb5b169cda',1,'nc::coordinates::RA::seconds()'],['../classnc_1_1coordinates_1_1_dec.html#a2927e30c2059f09bd30be622cf9b52ea',1,'nc::coordinates::Dec::seconds()']]], - ['seconds_5fper_5fday_934',['SECONDS_PER_DAY',['../namespacenc_1_1constants.html#a766ec3bf1f6fb57f586f943cea1946c3',1,'nc::constants']]], - ['seconds_5fper_5fhour_935',['SECONDS_PER_HOUR',['../namespacenc_1_1constants.html#ad635a54557e853e1ee098d0ead5f1902',1,'nc::constants']]], - ['seconds_5fper_5fminute_936',['SECONDS_PER_MINUTE',['../namespacenc_1_1constants.html#ad89620cbdf9102f40ec7c0fd52c16a5e',1,'nc::constants']]], - ['seconds_5fper_5fweek_937',['SECONDS_PER_WEEK',['../namespacenc_1_1constants.html#ac36cac5f19ce5f81b2acc562f247f0be',1,'nc::constants']]], - ['seed_938',['seed',['../namespacenc_1_1random.html#a93fe76208181d041adb08a02de0966d8',1,'nc::random']]], - ['set_5fdifference_939',['set_difference',['../namespacenc_1_1stl__algorithms.html#a8a145ff0f4cf32b64e7464347d1ea9b2',1,'nc::stl_algorithms::set_difference(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#a8cc83e2fb7a3d8302db0f4b19513ddd9',1,'nc::stl_algorithms::set_difference(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination)']]], - ['set_5fintersection_940',['set_intersection',['../namespacenc_1_1stl__algorithms.html#ad9a963ad13c86117f01fe2960525e074',1,'nc::stl_algorithms::set_intersection(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#aa8ff8c5bb6003ff0f02a17deb4ced8e2',1,'nc::stl_algorithms::set_intersection(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination) noexcept']]], - ['set_5funion_941',['set_union',['../namespacenc_1_1stl__algorithms.html#a33da2f830ebf2e7c04f1ac94e1ad20b7',1,'nc::stl_algorithms::set_union(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#a273ff7212f84bcd8de30e83ab0ae3bd1',1,'nc::stl_algorithms::set_union(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination) noexcept']]], - ['setdiff1d_942',['setdiff1d',['../namespacenc.html#adb6b7ca658c4d613fe0c4a695ba3542b',1,'nc']]], - ['setdiff1d_2ehpp_943',['setdiff1d.hpp',['../setdiff1d_8hpp.html',1,'']]], - ['setname_944',['setName',['../classnc_1_1_timer.html#a88dd680a63b38ae9989a40878a8fd65b',1,'nc::Timer']]], - ['shape_945',['Shape',['../classnc_1_1_shape.html',1,'nc::Shape'],['../classnc_1_1_shape.html#a6e870e9fda60c8e82996802fcb71490a',1,'nc::Shape::Shape()']]], - ['shape_946',['shape',['../classnc_1_1_data_cube.html#a1e7e4ce08e0c57abb661a8f95192173e',1,'nc::DataCube::shape()'],['../classnc_1_1_nd_array.html#a2d1b4adfe3c9897ffe3dca45e357b2b4',1,'nc::NdArray::shape()']]], - ['shape_947',['Shape',['../classnc_1_1_shape.html#a0f41587a1b8f1c2b65035adc49705eec',1,'nc::Shape::Shape()=default'],['../classnc_1_1_shape.html#a4b2cd200804257d9c53084f14fb38e31',1,'nc::Shape::Shape(uint32 inRows, uint32 inCols) noexcept']]], - ['shape_948',['shape',['../namespacenc.html#ae2b224742bc8263190d451a44ebe5e34',1,'nc']]], - ['shuffle_949',['shuffle',['../namespacenc_1_1random.html#ad73d56152095ad55887c89f47490c070',1,'nc::random']]], - ['shuffle_2ehpp_950',['shuffle.hpp',['../shuffle_8hpp.html',1,'']]], - ['sign_951',['Sign',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94',1,'nc::coordinates']]], - ['sign_952',['sign',['../namespacenc.html#a22372b41fc480a7284967d2be4b87841',1,'nc::sign(const NdArray< dtype > &inArray)'],['../namespacenc.html#a4a5d98f334e0b50a3cf9c2718485e5e9',1,'nc::sign(dtype inValue) noexcept'],['../classnc_1_1coordinates_1_1_dec.html#ac551f7b1f2728f20fbdbd79dd00919f7',1,'nc::coordinates::Dec::sign()']]], - ['sign_2ehpp_953',['sign.hpp',['../sign_8hpp.html',1,'']]], - ['signbit_954',['signbit',['../namespacenc.html#af6dcbdfea85cdc84b4ddcf6c978b71f1',1,'nc::signbit(dtype inValue) noexcept'],['../namespacenc.html#a09632f5c6c5d569ccfde17351811b3c0',1,'nc::signbit(const NdArray< dtype > &inArray)']]], - ['signbit_2ehpp_955',['signbit.hpp',['../signbit_8hpp.html',1,'']]], - ['simpson_956',['simpson',['../namespacenc_1_1integrate.html#aa7c55b05139ecfce5e5a9d0380df9eb1',1,'nc::integrate']]], - ['simpson_2ehpp_957',['simpson.hpp',['../simpson_8hpp.html',1,'']]], - ['sin_958',['sin',['../namespacenc.html#a3fa4e582cdeef0716309ad51378f2983',1,'nc::sin(dtype inValue) noexcept'],['../namespacenc.html#aff909cb0ae96644487adaedbbb498cea',1,'nc::sin(const NdArray< dtype > &inArray)']]], - ['sin_2ehpp_959',['sin.hpp',['../sin_8hpp.html',1,'']]], - ['sinc_960',['sinc',['../namespacenc.html#a0c8e5bf6fca377445afd941d70bcac10',1,'nc::sinc(const NdArray< dtype > &inArray)'],['../namespacenc.html#aafe29b8d2e32e8e2af4d92074851b777',1,'nc::sinc(dtype inValue) noexcept']]], - ['sinc_2ehpp_961',['sinc.hpp',['../sinc_8hpp.html',1,'']]], - ['sinh_962',['sinh',['../namespacenc.html#a7672779bec72183de09ddc469739b385',1,'nc::sinh(dtype inValue) noexcept'],['../namespacenc.html#a8de43bfef3cdd2e1af1c521dcf3a2dcd',1,'nc::sinh(const NdArray< dtype > &inArray)']]], - ['sinh_2ehpp_963',['sinh.hpp',['../sinh_8hpp.html',1,'']]], - ['size_964',['size',['../namespacenc.html#a25f36ba02112a206936fae22b0724bb9',1,'nc::size()'],['../classnc_1_1_shape.html#ab29f87cc8479a2d0610a918cd9b08bbc',1,'nc::Shape::size()'],['../classnc_1_1image_processing_1_1_cluster.html#ae89900f4557d6273fc49b330417e324e',1,'nc::imageProcessing::Cluster::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()']]], - ['size_2ehpp_965',['size.hpp',['../size_8hpp.html',1,'']]], - ['size_5ftype_966',['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()']]], - ['sizez_967',['sizeZ',['../classnc_1_1_data_cube.html#a6518d36db671db4053abffff92505c64',1,'nc::DataCube']]], - ['sleep_968',['sleep',['../classnc_1_1_timer.html#a9fec514ed605a11c6e1c321041960d7e',1,'nc::Timer']]], - ['slerp_969',['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_970',['Slice',['../classnc_1_1_slice.html',1,'nc::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']]], - ['slice_2ehpp_971',['Slice.hpp',['../_slice_8hpp.html',1,'']]], - ['slicez_972',['sliceZ',['../classnc_1_1_data_cube.html#aacc3751540c1b3d79e177a6b93a383fb',1,'nc::DataCube::sliceZ(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a3bc1ba8251f5e788155d6a01727d1644',1,'nc::DataCube::sliceZ(Slice inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a8164f497dd44a89d1c5a1aeb7ca92e55',1,'nc::DataCube::sliceZ(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a71d00d236bd135a4a35212fb147ae905',1,'nc::DataCube::sliceZ(int32 inIndex, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a6e6629a0891235ea43e77389f93326cd',1,'nc::DataCube::sliceZ(int32 inRow, int32 inCol, Slice inSliceZ) const']]], - ['slicezall_973',['sliceZAll',['../classnc_1_1_data_cube.html#a7297568496398f9d80ceef1b9b955bfa',1,'nc::DataCube::sliceZAll(int32 inIndex) const'],['../classnc_1_1_data_cube.html#a0f149a9a6dfc3644a95c7741bbe60ca6',1,'nc::DataCube::sliceZAll(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#af8c15897cf2ff42ddd86648583aee686',1,'nc::DataCube::sliceZAll(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a1961f8bf37432ab59bba9a59206537bd',1,'nc::DataCube::sliceZAll(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a64c85bf44f454e917c635167e46301e9',1,'nc::DataCube::sliceZAll(Slice inRow, Slice inCol) const']]], - ['slicezallat_974',['sliceZAllat',['../classnc_1_1_data_cube.html#ae6f6216581c3824f862bad03fea73f45',1,'nc::DataCube::sliceZAllat(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a57aaf216577c8a696dbf1dbe6363297e',1,'nc::DataCube::sliceZAllat(Slice inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#ad404a350af85b9e99be4901c028ed487',1,'nc::DataCube::sliceZAllat(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#aaf2cad6dc76e1342d72c8d0291062357',1,'nc::DataCube::sliceZAllat(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a7dd2ceb0e7935647c31993c5db1d1d20',1,'nc::DataCube::sliceZAllat(int32 inIndex) const']]], - ['slicezat_975',['sliceZat',['../classnc_1_1_data_cube.html#a435a6f90ee141a790af7c04557396baf',1,'nc::DataCube::sliceZat(int32 inIndex, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a6075ed979ff9294f2ff0bd54bb928952',1,'nc::DataCube::sliceZat(int32 inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a6f6bfc2ed7ec485877f0266f906342be',1,'nc::DataCube::sliceZat(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a70d350f869a1831a401522667b65639a',1,'nc::DataCube::sliceZat(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a2c4ac09094f98ca9de7e6f02aa8956a3',1,'nc::DataCube::sliceZat(Slice inRow, Slice inCol, Slice inSliceZ) const']]], - ['softmax_976',['softmax',['../namespacenc_1_1special.html#a459176cc2a1b285e93c3ee5671294590',1,'nc::special']]], - ['softmax_2ehpp_977',['softmax.hpp',['../softmax_8hpp.html',1,'']]], - ['solve_978',['solve',['../classnc_1_1roots_1_1_secant.html#a3fefb4412402aa20eeabb85145463d70',1,'nc::roots::Secant::solve()'],['../namespacenc_1_1linalg.html#afe2a5221f8e22e671e9e6eb231516205',1,'nc::linalg::solve()'],['../classnc_1_1linalg_1_1_s_v_d.html#aa170c7ec6894fb30e115840d61bd58a1',1,'nc::linalg::SVD::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()']]], - ['solve_2ehpp_979',['solve.hpp',['../solve_8hpp.html',1,'']]], - ['sort_980',['sort',['../classnc_1_1_nd_array.html#a3c0a24c292c340c58a6da5526654f3bb',1,'nc::NdArray::sort()'],['../namespacenc.html#a8273e1ecb5eafba97b7ed5b8f10a6cdf',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_2ehpp_981',['sort.hpp',['../sort_8hpp.html',1,'']]], - ['special_2ehpp_982',['Special.hpp',['../_special_8hpp.html',1,'']]], - ['spherical_5fbessel_5fjn_983',['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_984',['spherical_bessel_jn.hpp',['../spherical__bessel__jn_8hpp.html',1,'']]], - ['spherical_5fbessel_5fyn_985',['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_2ehpp_986',['spherical_bessel_yn.hpp',['../spherical__bessel__yn_8hpp.html',1,'']]], - ['spherical_5fhankel_5f1_987',['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_2ehpp_988',['spherical_hankel_1.hpp',['../spherical__hankel__1_8hpp.html',1,'']]], - ['spherical_5fhankel_5f2_989',['spherical_hankel_2',['../namespacenc_1_1special.html#aa0181306ece55cbaf50c65da8d215542',1,'nc::special::spherical_hankel_2(dtype1 inV, const NdArray< dtype2 > &inArray)'],['../namespacenc_1_1special.html#a767d00adf7283b45bd3b7ea4aab6c5ff',1,'nc::special::spherical_hankel_2(dtype1 inV, dtype2 inX)']]], - ['spherical_5fhankel_5f2_2ehpp_990',['spherical_hankel_2.hpp',['../spherical__hankel__2_8hpp.html',1,'']]], - ['spherical_5fharmonic_991',['spherical_harmonic',['../namespacenc_1_1polynomial.html#aa5bb22676f3f43eda1e7c0af04da376a',1,'nc::polynomial']]], - ['spherical_5fharmonic_2ehpp_992',['spherical_harmonic.hpp',['../spherical__harmonic_8hpp.html',1,'']]], - ['spherical_5fharmonic_5fi_993',['spherical_harmonic_i',['../namespacenc_1_1polynomial.html#a583c30981b9547a90ad7c33edbe041c1',1,'nc::polynomial']]], - ['spherical_5fharmonic_5fr_994',['spherical_harmonic_r',['../namespacenc_1_1polynomial.html#a5ed971ca59899f372f28a53913796745',1,'nc::polynomial']]], - ['sqr_995',['sqr',['../namespacenc_1_1utils.html#ae792e10a24b7e5b8291a6c31a28a4512',1,'nc::utils']]], - ['sqr_2ehpp_996',['sqr.hpp',['../sqr_8hpp.html',1,'']]], - ['sqrt_997',['sqrt',['../namespacenc.html#abb4086978f52185f25340b0ff57ca8f0',1,'nc::sqrt(const NdArray< dtype > &inArray)'],['../namespacenc.html#a941a5a1ffb61387495a6f23dc4036287',1,'nc::sqrt(dtype inValue) noexcept']]], - ['sqrt_2ehpp_998',['sqrt.hpp',['../sqrt_8hpp.html',1,'']]], - ['square_999',['square',['../namespacenc.html#a282e72a93afe2e6554e0f17f21dd7b9e',1,'nc::square(dtype inValue) noexcept'],['../namespacenc.html#a104a8ffcdf7d3911fb6d4bbb847e2a1d',1,'nc::square(const NdArray< dtype > &inArray)']]], - ['square_2ehpp_1000',['square.hpp',['../square_8hpp.html',1,'']]], - ['stable_5fsort_1001',['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_1002',['stack',['../namespacenc.html#a656bb4b9fecf40f1f4194964be57c78b',1,'nc']]], - ['stack_2ehpp_1003',['stack.hpp',['../stack_8hpp.html',1,'']]], - ['standardnormal_1004',['standardNormal',['../namespacenc_1_1random.html#a026e31e4ef305beb2bbb546817e44eb0',1,'nc::random::standardNormal(const Shape &inShape)'],['../namespacenc_1_1random.html#acc9d03c66c1fa8b35dea3fa0a0f075e7',1,'nc::random::standardNormal()']]], - ['standardnormal_2ehpp_1005',['standardNormal.hpp',['../standard_normal_8hpp.html',1,'']]], - ['start_1006',['start',['../classnc_1_1_slice.html#a36ddb261d9057db4a9794b4fc46e9d3f',1,'nc::Slice']]], - ['static_5fassert_5farithmetic_1007',['STATIC_ASSERT_ARITHMETIC',['../_static_asserts_8hpp.html#a36abb32368b91aed0d3133a4cfd5ae92',1,'StaticAsserts.hpp']]], - ['static_5fassert_5farithmetic_5for_5fcomplex_1008',['STATIC_ASSERT_ARITHMETIC_OR_COMPLEX',['../_static_asserts_8hpp.html#a1589f74d429e30786c65cda69b17ab96',1,'StaticAsserts.hpp']]], - ['static_5fassert_5fcomplex_1009',['STATIC_ASSERT_COMPLEX',['../_static_asserts_8hpp.html#a1cd1b98c2b918cbd369afc12c11a0597',1,'StaticAsserts.hpp']]], - ['static_5fassert_5ffloat_1010',['STATIC_ASSERT_FLOAT',['../_static_asserts_8hpp.html#a0cd8e186da549fbdd918111d0302d973',1,'StaticAsserts.hpp']]], - ['static_5fassert_5finteger_1011',['STATIC_ASSERT_INTEGER',['../_static_asserts_8hpp.html#a187660686583e9047c0cf4424259ad10',1,'StaticAsserts.hpp']]], - ['static_5fassert_5fvalid_5fdtype_1012',['STATIC_ASSERT_VALID_DTYPE',['../_static_asserts_8hpp.html#a00cfe1ea01e56fe28ffe3d6ce5cae468',1,'StaticAsserts.hpp']]], - ['staticasserts_2ehpp_1013',['StaticAsserts.hpp',['../_static_asserts_8hpp.html',1,'']]], - ['stdcomplexoperators_2ehpp_1014',['StdComplexOperators.hpp',['../_std_complex_operators_8hpp.html',1,'']]], - ['stdev_1015',['stdev',['../namespacenc.html#ae197a8efaeeebe00c6e886b779ec1a43',1,'nc::stdev(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a60ac1ab2f35e50531ef0f12be00d89c8',1,'nc::stdev(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], - ['stdev_2ehpp_1016',['stdev.hpp',['../stdev_8hpp.html',1,'']]], - ['step_1017',['step',['../classnc_1_1_slice.html#a112855a11aa1737b7859e3d63feb09c4',1,'nc::Slice']]], - ['stlalgorithms_2ehpp_1018',['StlAlgorithms.hpp',['../_stl_algorithms_8hpp.html',1,'']]], - ['stop_1019',['stop',['../classnc_1_1_slice.html#ac2d72f4ca003ed645bc82efcafee87f5',1,'nc::Slice']]], - ['str_1020',['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_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()'],['../classnc_1_1coordinates_1_1_coordinate.html#a04a60dd7bc2ef5be41c8006e2797997f',1,'nc::coordinates::Coordinate::str()'],['../classnc_1_1coordinates_1_1_dec.html#a91ddbec1fadfdcc049930dc439da4608',1,'nc::coordinates::Dec::str()'],['../classnc_1_1coordinates_1_1_r_a.html#a37824a93eb9e0a02237d4e654040761b',1,'nc::coordinates::RA::str()'],['../classnc_1_1_shape.html#aadb0e0d633d64e5eb5a4f9bef12b26c4',1,'nc::Shape::str()'],['../classnc_1_1_slice.html#af8bc3bb19b48fd09c769fd1fa9860ed5',1,'nc::Slice::str()']]], - ['studentt_1021',['studentT',['../namespacenc_1_1random.html#a5c18c6c123083003f32344baeb0f4ad3',1,'nc::random::studentT(const Shape &inShape, dtype inDof)'],['../namespacenc_1_1random.html#a9e8074cb89e2362b5ae485834f550217',1,'nc::random::studentT(dtype inDof)']]], - ['studentt_2ehpp_1022',['studentT.hpp',['../student_t_8hpp.html',1,'']]], - ['subtract_1023',['subtract',['../namespacenc.html#a29da51134625301935f0e1098111e74b',1,'nc::subtract(dtype value, const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a8668e0f6416572f18cf0d8c2e008784a',1,'nc::subtract(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#a7f2189bdc8a3718be82a8497cd2ea99d',1,'nc::subtract(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#ae4be1086253a0b121695d9cabfcb86ce',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#afa4586729c62bfae485a6e7664ba7117',1,'nc::subtract(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#a7851e0af8b7501f667e2d89738259191',1,'nc::subtract(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a0499ac58fc4cfe52a2bba30f70376d84',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a8aae2ea3fcf6335997c10676fafcd1e5',1,'nc::subtract(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#acddd661c047325c1c0c473aa545011d9',1,'nc::subtract(const NdArray< dtype > &inArray, const std::complex< dtype > &value)']]], - ['subtract_2ehpp_1024',['subtract.hpp',['../subtract_8hpp.html',1,'']]], - ['sum_1025',['sum',['../classnc_1_1_nd_array.html#a467700098b002b5631c756ca0fd50cae',1,'nc::NdArray::sum()'],['../namespacenc.html#aa14c0f092bfdc980c656bf6bf58bfc67',1,'nc::sum()']]], - ['sum_2ehpp_1026',['sum.hpp',['../sum_8hpp.html',1,'']]], - ['svd_1027',['SVD',['../classnc_1_1linalg_1_1_s_v_d.html',1,'nc::linalg::SVD'],['../classnc_1_1linalg_1_1_s_v_d.html#ae0561bbc9633e436139258b0c70b98ba',1,'nc::linalg::SVD::SVD()']]], - ['svd_1028',['svd',['../namespacenc_1_1linalg.html#acb38ad2613d50422afc539d005159055',1,'nc::linalg']]], - ['svd_2ehpp_1029',['svd.hpp',['../svd_8hpp.html',1,'']]], - ['svdclass_2ehpp_1030',['SVDClass.hpp',['../_s_v_d_class_8hpp.html',1,'']]], - ['swap_1031',['swap',['../namespacenc.html#a39da0502565b913855379ea1439047e1',1,'nc']]], - ['swap_2ehpp_1032',['swap.hpp',['../swap_8hpp.html',1,'']]], - ['swapaxes_1033',['swapaxes',['../classnc_1_1_nd_array.html#a7995ba04b64061dfd931ac58c05826f2',1,'nc::NdArray::swapaxes()'],['../namespacenc.html#a9371c43ae0a95c53cdaaf97a5bbc1db7',1,'nc::swapaxes()']]], - ['swapaxes_2ehpp_1034',['swapaxes.hpp',['../swapaxes_8hpp.html',1,'']]] + ['beta_2ehpp_977',['beta.hpp',['../_special_2beta_8hpp.html',1,'']]], + ['gamma_2ehpp_978',['gamma.hpp',['../_special_2gamma_8hpp.html',1,'']]], + ['s_979',['s',['../classnc_1_1rotations_1_1_quaternion.html#a075b6f1befef247f5d638c91e1a451fd',1,'nc::rotations::Quaternion::s()'],['../classnc_1_1linalg_1_1_s_v_d.html#a323915fbe7cbaabadef01ffa948d2f1a',1,'nc::linalg::SVD::s()']]], + ['secant_980',['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']]], + ['secant_2ehpp_981',['Secant.hpp',['../_secant_8hpp.html',1,'']]], + ['seconds_982',['seconds',['../classnc_1_1coordinates_1_1_r_a.html#af0c9b649f60a70bbf421a6eb5b169cda',1,'nc::coordinates::RA::seconds()'],['../classnc_1_1coordinates_1_1_dec.html#a2927e30c2059f09bd30be622cf9b52ea',1,'nc::coordinates::Dec::seconds()']]], + ['seconds_5fper_5fday_983',['SECONDS_PER_DAY',['../namespacenc_1_1constants.html#a766ec3bf1f6fb57f586f943cea1946c3',1,'nc::constants']]], + ['seconds_5fper_5fhour_984',['SECONDS_PER_HOUR',['../namespacenc_1_1constants.html#ad635a54557e853e1ee098d0ead5f1902',1,'nc::constants']]], + ['seconds_5fper_5fminute_985',['SECONDS_PER_MINUTE',['../namespacenc_1_1constants.html#ad89620cbdf9102f40ec7c0fd52c16a5e',1,'nc::constants']]], + ['seconds_5fper_5fweek_986',['SECONDS_PER_WEEK',['../namespacenc_1_1constants.html#ac36cac5f19ce5f81b2acc562f247f0be',1,'nc::constants']]], + ['seed_987',['seed',['../namespacenc_1_1random.html#a93fe76208181d041adb08a02de0966d8',1,'nc::random']]], + ['select_988',['select',['../namespacenc.html#aab95eb9e265a3daf251b7e1926a42dac',1,'nc::select(const std::vector< const NdArray< bool > * > &condVec, const std::vector< const NdArray< dtype > * > &choiceVec, dtype defaultValue=dtype{0})'],['../namespacenc.html#acbb2b67807944a713b19844d2fe3dcc6',1,'nc::select(const std::vector< NdArray< bool >> &condList, const std::vector< NdArray< dtype >> &choiceList, dtype defaultValue=dtype{0})']]], + ['select_2ehpp_989',['select.hpp',['../select_8hpp.html',1,'']]], + ['set_5fdifference_990',['set_difference',['../namespacenc_1_1stl__algorithms.html#a8a145ff0f4cf32b64e7464347d1ea9b2',1,'nc::stl_algorithms::set_difference(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#a8cc83e2fb7a3d8302db0f4b19513ddd9',1,'nc::stl_algorithms::set_difference(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination)']]], + ['set_5fintersection_991',['set_intersection',['../namespacenc_1_1stl__algorithms.html#ad9a963ad13c86117f01fe2960525e074',1,'nc::stl_algorithms::set_intersection(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#aa8ff8c5bb6003ff0f02a17deb4ced8e2',1,'nc::stl_algorithms::set_intersection(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination) noexcept']]], + ['set_5funion_992',['set_union',['../namespacenc_1_1stl__algorithms.html#a33da2f830ebf2e7c04f1ac94e1ad20b7',1,'nc::stl_algorithms::set_union(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#a273ff7212f84bcd8de30e83ab0ae3bd1',1,'nc::stl_algorithms::set_union(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination) noexcept']]], + ['setdiff1d_993',['setdiff1d',['../namespacenc.html#adb6b7ca658c4d613fe0c4a695ba3542b',1,'nc']]], + ['setdiff1d_2ehpp_994',['setdiff1d.hpp',['../setdiff1d_8hpp.html',1,'']]], + ['setname_995',['setName',['../classnc_1_1_timer.html#a88dd680a63b38ae9989a40878a8fd65b',1,'nc::Timer']]], + ['shape_996',['Shape',['../classnc_1_1_shape.html',1,'nc']]], + ['shape_997',['shape',['../namespacenc.html#ae2b224742bc8263190d451a44ebe5e34',1,'nc::shape()'],['../classnc_1_1_data_cube.html#a1e7e4ce08e0c57abb661a8f95192173e',1,'nc::DataCube::shape()'],['../classnc_1_1_nd_array.html#a2d1b4adfe3c9897ffe3dca45e357b2b4',1,'nc::NdArray::shape()']]], + ['shape_998',['Shape',['../classnc_1_1_shape.html#a0f41587a1b8f1c2b65035adc49705eec',1,'nc::Shape::Shape()=default'],['../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']]], + ['shuffle_999',['shuffle',['../namespacenc_1_1random.html#ad73d56152095ad55887c89f47490c070',1,'nc::random']]], + ['shuffle_2ehpp_1000',['shuffle.hpp',['../shuffle_8hpp.html',1,'']]], + ['sign_1001',['sign',['../classnc_1_1coordinates_1_1_dec.html#ac551f7b1f2728f20fbdbd79dd00919f7',1,'nc::coordinates::Dec']]], + ['sign_1002',['Sign',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94',1,'nc::coordinates']]], + ['sign_1003',['sign',['../namespacenc.html#a4a5d98f334e0b50a3cf9c2718485e5e9',1,'nc::sign(dtype inValue) noexcept'],['../namespacenc.html#a22372b41fc480a7284967d2be4b87841',1,'nc::sign(const NdArray< dtype > &inArray)']]], + ['sign_2ehpp_1004',['sign.hpp',['../sign_8hpp.html',1,'']]], + ['signbit_1005',['signbit',['../namespacenc.html#af6dcbdfea85cdc84b4ddcf6c978b71f1',1,'nc::signbit(dtype inValue) noexcept'],['../namespacenc.html#a09632f5c6c5d569ccfde17351811b3c0',1,'nc::signbit(const NdArray< dtype > &inArray)']]], + ['signbit_2ehpp_1006',['signbit.hpp',['../signbit_8hpp.html',1,'']]], + ['simpson_1007',['simpson',['../namespacenc_1_1integrate.html#aa7c55b05139ecfce5e5a9d0380df9eb1',1,'nc::integrate']]], + ['simpson_2ehpp_1008',['simpson.hpp',['../simpson_8hpp.html',1,'']]], + ['sin_1009',['sin',['../namespacenc.html#a3fa4e582cdeef0716309ad51378f2983',1,'nc::sin(dtype inValue) noexcept'],['../namespacenc.html#aff909cb0ae96644487adaedbbb498cea',1,'nc::sin(const NdArray< dtype > &inArray)']]], + ['sin_2ehpp_1010',['sin.hpp',['../sin_8hpp.html',1,'']]], + ['sinc_1011',['sinc',['../namespacenc.html#aafe29b8d2e32e8e2af4d92074851b777',1,'nc::sinc(dtype inValue) noexcept'],['../namespacenc.html#a0c8e5bf6fca377445afd941d70bcac10',1,'nc::sinc(const NdArray< dtype > &inArray)']]], + ['sinc_2ehpp_1012',['sinc.hpp',['../sinc_8hpp.html',1,'']]], + ['sinh_1013',['sinh',['../namespacenc.html#a7672779bec72183de09ddc469739b385',1,'nc::sinh(dtype inValue) noexcept'],['../namespacenc.html#a8de43bfef3cdd2e1af1c521dcf3a2dcd',1,'nc::sinh(const NdArray< dtype > &inArray)']]], + ['sinh_2ehpp_1014',['sinh.hpp',['../sinh_8hpp.html',1,'']]], + ['size_1015',['size',['../namespacenc.html#a25f36ba02112a206936fae22b0724bb9',1,'nc::size()'],['../classnc_1_1_shape.html#ab29f87cc8479a2d0610a918cd9b08bbc',1,'nc::Shape::size()'],['../classnc_1_1image_processing_1_1_cluster.html#ae89900f4557d6273fc49b330417e324e',1,'nc::imageProcessing::Cluster::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()']]], + ['size_2ehpp_1016',['size.hpp',['../size_8hpp.html',1,'']]], + ['size_5ftype_1017',['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()'],['../classnc_1_1_nd_array.html#ae2bdede667042f52176de3f3649735f6',1,'nc::NdArray::size_type()']]], + ['sizez_1018',['sizeZ',['../classnc_1_1_data_cube.html#a6518d36db671db4053abffff92505c64',1,'nc::DataCube']]], + ['sleep_1019',['sleep',['../classnc_1_1_timer.html#a9fec514ed605a11c6e1c321041960d7e',1,'nc::Timer']]], + ['slerp_1020',['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_1021',['Slice',['../classnc_1_1_slice.html',1,'nc::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']]], + ['slice_2ehpp_1022',['Slice.hpp',['../_slice_8hpp.html',1,'']]], + ['slicez_1023',['sliceZ',['../classnc_1_1_data_cube.html#a71d00d236bd135a4a35212fb147ae905',1,'nc::DataCube::sliceZ(int32 inIndex, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#aacc3751540c1b3d79e177a6b93a383fb',1,'nc::DataCube::sliceZ(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a8164f497dd44a89d1c5a1aeb7ca92e55',1,'nc::DataCube::sliceZ(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a3bc1ba8251f5e788155d6a01727d1644',1,'nc::DataCube::sliceZ(Slice inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a6e6629a0891235ea43e77389f93326cd',1,'nc::DataCube::sliceZ(int32 inRow, int32 inCol, Slice inSliceZ) const']]], + ['slicezall_1024',['sliceZAll',['../classnc_1_1_data_cube.html#a7297568496398f9d80ceef1b9b955bfa',1,'nc::DataCube::sliceZAll(int32 inIndex) const'],['../classnc_1_1_data_cube.html#a0f149a9a6dfc3644a95c7741bbe60ca6',1,'nc::DataCube::sliceZAll(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#af8c15897cf2ff42ddd86648583aee686',1,'nc::DataCube::sliceZAll(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a1961f8bf37432ab59bba9a59206537bd',1,'nc::DataCube::sliceZAll(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a64c85bf44f454e917c635167e46301e9',1,'nc::DataCube::sliceZAll(Slice inRow, Slice inCol) const']]], + ['slicezallat_1025',['sliceZAllat',['../classnc_1_1_data_cube.html#aaf2cad6dc76e1342d72c8d0291062357',1,'nc::DataCube::sliceZAllat(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a7dd2ceb0e7935647c31993c5db1d1d20',1,'nc::DataCube::sliceZAllat(int32 inIndex) const'],['../classnc_1_1_data_cube.html#ad404a350af85b9e99be4901c028ed487',1,'nc::DataCube::sliceZAllat(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#ae6f6216581c3824f862bad03fea73f45',1,'nc::DataCube::sliceZAllat(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a57aaf216577c8a696dbf1dbe6363297e',1,'nc::DataCube::sliceZAllat(Slice inRow, Slice inCol) const']]], + ['slicezat_1026',['sliceZat',['../classnc_1_1_data_cube.html#a2c4ac09094f98ca9de7e6f02aa8956a3',1,'nc::DataCube::sliceZat(Slice inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a70d350f869a1831a401522667b65639a',1,'nc::DataCube::sliceZat(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a6f6bfc2ed7ec485877f0266f906342be',1,'nc::DataCube::sliceZat(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a6075ed979ff9294f2ff0bd54bb928952',1,'nc::DataCube::sliceZat(int32 inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a435a6f90ee141a790af7c04557396baf',1,'nc::DataCube::sliceZat(int32 inIndex, Slice inSliceZ) const']]], + ['softmax_1027',['softmax',['../namespacenc_1_1special.html#a459176cc2a1b285e93c3ee5671294590',1,'nc::special']]], + ['softmax_2ehpp_1028',['softmax.hpp',['../softmax_8hpp.html',1,'']]], + ['solve_1029',['solve',['../classnc_1_1linalg_1_1_s_v_d.html#aa170c7ec6894fb30e115840d61bd58a1',1,'nc::linalg::SVD::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()'],['../namespacenc_1_1linalg.html#afe2a5221f8e22e671e9e6eb231516205',1,'nc::linalg::solve()']]], + ['solve_2ehpp_1030',['solve.hpp',['../solve_8hpp.html',1,'']]], + ['sort_1031',['sort',['../classnc_1_1_nd_array.html#a3c0a24c292c340c58a6da5526654f3bb',1,'nc::NdArray::sort()'],['../namespacenc_1_1stl__algorithms.html#a1d75d47f198fcc3693e87806d6ea8715',1,'nc::stl_algorithms::sort(RandomIt first, RandomIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#a519432fa55645fab8162c354e387b1a6',1,'nc::stl_algorithms::sort(RandomIt first, RandomIt last, Compare comp) noexcept'],['../namespacenc.html#a8273e1ecb5eafba97b7ed5b8f10a6cdf',1,'nc::sort()']]], + ['sort_2ehpp_1032',['sort.hpp',['../sort_8hpp.html',1,'']]], + ['special_2ehpp_1033',['Special.hpp',['../_special_8hpp.html',1,'']]], + ['spherical_5fbessel_5fjn_1034',['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_1035',['spherical_bessel_jn.hpp',['../spherical__bessel__jn_8hpp.html',1,'']]], + ['spherical_5fbessel_5fyn_1036',['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_2ehpp_1037',['spherical_bessel_yn.hpp',['../spherical__bessel__yn_8hpp.html',1,'']]], + ['spherical_5fhankel_5f1_1038',['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_2ehpp_1039',['spherical_hankel_1.hpp',['../spherical__hankel__1_8hpp.html',1,'']]], + ['spherical_5fhankel_5f2_1040',['spherical_hankel_2',['../namespacenc_1_1special.html#aa0181306ece55cbaf50c65da8d215542',1,'nc::special::spherical_hankel_2(dtype1 inV, const NdArray< dtype2 > &inArray)'],['../namespacenc_1_1special.html#a767d00adf7283b45bd3b7ea4aab6c5ff',1,'nc::special::spherical_hankel_2(dtype1 inV, dtype2 inX)']]], + ['spherical_5fhankel_5f2_2ehpp_1041',['spherical_hankel_2.hpp',['../spherical__hankel__2_8hpp.html',1,'']]], + ['spherical_5fharmonic_1042',['spherical_harmonic',['../namespacenc_1_1polynomial.html#aa5bb22676f3f43eda1e7c0af04da376a',1,'nc::polynomial']]], + ['spherical_5fharmonic_2ehpp_1043',['spherical_harmonic.hpp',['../spherical__harmonic_8hpp.html',1,'']]], + ['spherical_5fharmonic_5fi_1044',['spherical_harmonic_i',['../namespacenc_1_1polynomial.html#a583c30981b9547a90ad7c33edbe041c1',1,'nc::polynomial']]], + ['spherical_5fharmonic_5fr_1045',['spherical_harmonic_r',['../namespacenc_1_1polynomial.html#a5ed971ca59899f372f28a53913796745',1,'nc::polynomial']]], + ['sqr_1046',['sqr',['../namespacenc_1_1utils.html#ae792e10a24b7e5b8291a6c31a28a4512',1,'nc::utils']]], + ['sqr_2ehpp_1047',['sqr.hpp',['../sqr_8hpp.html',1,'']]], + ['sqrt_1048',['sqrt',['../namespacenc.html#a941a5a1ffb61387495a6f23dc4036287',1,'nc::sqrt(dtype inValue) noexcept'],['../namespacenc.html#abb4086978f52185f25340b0ff57ca8f0',1,'nc::sqrt(const NdArray< dtype > &inArray)']]], + ['sqrt_2ehpp_1049',['sqrt.hpp',['../sqrt_8hpp.html',1,'']]], + ['square_1050',['square',['../namespacenc.html#a104a8ffcdf7d3911fb6d4bbb847e2a1d',1,'nc::square(const NdArray< dtype > &inArray)'],['../namespacenc.html#a282e72a93afe2e6554e0f17f21dd7b9e',1,'nc::square(dtype inValue) noexcept']]], + ['square_2ehpp_1051',['square.hpp',['../square_8hpp.html',1,'']]], + ['stable_5fsort_1052',['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_1053',['stack',['../namespacenc.html#a59f5a937dedc01a2aee57788d80d2912',1,'nc']]], + ['stack_2ehpp_1054',['stack.hpp',['../stack_8hpp.html',1,'']]], + ['standardnormal_1055',['standardNormal',['../namespacenc_1_1random.html#acc9d03c66c1fa8b35dea3fa0a0f075e7',1,'nc::random::standardNormal()'],['../namespacenc_1_1random.html#a026e31e4ef305beb2bbb546817e44eb0',1,'nc::random::standardNormal(const Shape &inShape)']]], + ['standardnormal_2ehpp_1056',['standardNormal.hpp',['../standard_normal_8hpp.html',1,'']]], + ['start_1057',['start',['../classnc_1_1_slice.html#a36ddb261d9057db4a9794b4fc46e9d3f',1,'nc::Slice']]], + ['static_5fassert_5farithmetic_1058',['STATIC_ASSERT_ARITHMETIC',['../_static_asserts_8hpp.html#a36abb32368b91aed0d3133a4cfd5ae92',1,'StaticAsserts.hpp']]], + ['static_5fassert_5farithmetic_5for_5fcomplex_1059',['STATIC_ASSERT_ARITHMETIC_OR_COMPLEX',['../_static_asserts_8hpp.html#a1589f74d429e30786c65cda69b17ab96',1,'StaticAsserts.hpp']]], + ['static_5fassert_5fcomplex_1060',['STATIC_ASSERT_COMPLEX',['../_static_asserts_8hpp.html#a1cd1b98c2b918cbd369afc12c11a0597',1,'StaticAsserts.hpp']]], + ['static_5fassert_5ffloat_1061',['STATIC_ASSERT_FLOAT',['../_static_asserts_8hpp.html#a0cd8e186da549fbdd918111d0302d973',1,'StaticAsserts.hpp']]], + ['static_5fassert_5finteger_1062',['STATIC_ASSERT_INTEGER',['../_static_asserts_8hpp.html#a187660686583e9047c0cf4424259ad10',1,'StaticAsserts.hpp']]], + ['static_5fassert_5fvalid_5fdtype_1063',['STATIC_ASSERT_VALID_DTYPE',['../_static_asserts_8hpp.html#a00cfe1ea01e56fe28ffe3d6ce5cae468',1,'StaticAsserts.hpp']]], + ['staticasserts_2ehpp_1064',['StaticAsserts.hpp',['../_static_asserts_8hpp.html',1,'']]], + ['stdcomplexoperators_2ehpp_1065',['StdComplexOperators.hpp',['../_std_complex_operators_8hpp.html',1,'']]], + ['stdev_1066',['stdev',['../namespacenc.html#ae197a8efaeeebe00c6e886b779ec1a43',1,'nc::stdev(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a60ac1ab2f35e50531ef0f12be00d89c8',1,'nc::stdev(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], + ['stdev_2ehpp_1067',['stdev.hpp',['../stdev_8hpp.html',1,'']]], + ['step_1068',['step',['../classnc_1_1_slice.html#a112855a11aa1737b7859e3d63feb09c4',1,'nc::Slice']]], + ['stlalgorithms_2ehpp_1069',['StlAlgorithms.hpp',['../_stl_algorithms_8hpp.html',1,'']]], + ['stop_1070',['stop',['../classnc_1_1_slice.html#ac2d72f4ca003ed645bc82efcafee87f5',1,'nc::Slice']]], + ['str_1071',['str',['../classnc_1_1coordinates_1_1_coordinate.html#a04a60dd7bc2ef5be41c8006e2797997f',1,'nc::coordinates::Coordinate::str()'],['../classnc_1_1rotations_1_1_quaternion.html#a0ddeeba7435df3364f262215f24c93c1',1,'nc::rotations::Quaternion::str()'],['../classnc_1_1coordinates_1_1_dec.html#a91ddbec1fadfdcc049930dc439da4608',1,'nc::coordinates::Dec::str()'],['../classnc_1_1coordinates_1_1_r_a.html#a37824a93eb9e0a02237d4e654040761b',1,'nc::coordinates::RA::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_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()']]], + ['studentt_1072',['studentT',['../namespacenc_1_1random.html#a9e8074cb89e2362b5ae485834f550217',1,'nc::random::studentT(dtype inDof)'],['../namespacenc_1_1random.html#a5c18c6c123083003f32344baeb0f4ad3',1,'nc::random::studentT(const Shape &inShape, dtype inDof)']]], + ['studentt_2ehpp_1073',['studentT.hpp',['../student_t_8hpp.html',1,'']]], + ['subtract_1074',['subtract',['../namespacenc.html#ae4be1086253a0b121695d9cabfcb86ce',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#afa4586729c62bfae485a6e7664ba7117',1,'nc::subtract(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#a7851e0af8b7501f667e2d89738259191',1,'nc::subtract(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a0499ac58fc4cfe52a2bba30f70376d84',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a8aae2ea3fcf6335997c10676fafcd1e5',1,'nc::subtract(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#acddd661c047325c1c0c473aa545011d9',1,'nc::subtract(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a7f2189bdc8a3718be82a8497cd2ea99d',1,'nc::subtract(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a8668e0f6416572f18cf0d8c2e008784a',1,'nc::subtract(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#a29da51134625301935f0e1098111e74b',1,'nc::subtract(dtype value, const NdArray< std::complex< dtype >> &inArray)']]], + ['subtract_2ehpp_1075',['subtract.hpp',['../subtract_8hpp.html',1,'']]], + ['sum_1076',['sum',['../classnc_1_1_nd_array.html#a467700098b002b5631c756ca0fd50cae',1,'nc::NdArray::sum()'],['../namespacenc.html#aa14c0f092bfdc980c656bf6bf58bfc67',1,'nc::sum()']]], + ['sum_2ehpp_1077',['sum.hpp',['../sum_8hpp.html',1,'']]], + ['svd_1078',['SVD',['../classnc_1_1linalg_1_1_s_v_d.html',1,'nc::linalg::SVD'],['../classnc_1_1linalg_1_1_s_v_d.html#ae0561bbc9633e436139258b0c70b98ba',1,'nc::linalg::SVD::SVD()']]], + ['svd_1079',['svd',['../namespacenc_1_1linalg.html#acb38ad2613d50422afc539d005159055',1,'nc::linalg']]], + ['svd_2ehpp_1080',['svd.hpp',['../svd_8hpp.html',1,'']]], + ['svdclass_2ehpp_1081',['SVDClass.hpp',['../_s_v_d_class_8hpp.html',1,'']]], + ['swap_1082',['swap',['../namespacenc.html#a39da0502565b913855379ea1439047e1',1,'nc']]], + ['swap_2ehpp_1083',['swap.hpp',['../swap_8hpp.html',1,'']]], + ['swapaxes_1084',['swapaxes',['../classnc_1_1_nd_array.html#a7995ba04b64061dfd931ac58c05826f2',1,'nc::NdArray::swapaxes()'],['../namespacenc.html#a9371c43ae0a95c53cdaaf97a5bbc1db7',1,'nc::swapaxes()']]], + ['swapaxes_2ehpp_1085',['swapaxes.hpp',['../swapaxes_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_13.html b/docs/doxygen/html/search/all_13.html index f79da6b21..51172c2f3 100644 --- a/docs/doxygen/html/search/all_13.html +++ b/docs/doxygen/html/search/all_13.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_13.js b/docs/doxygen/html/search/all_13.js index 442b8ef39..d7a20c42d 100644 --- a/docs/doxygen/html/search/all_13.js +++ b/docs/doxygen/html/search/all_13.js @@ -1,51 +1,51 @@ var searchData= [ - ['tan_1035',['tan',['../namespacenc.html#a50d3734603bda1d991baf0696a4b96ce',1,'nc::tan(dtype inValue) noexcept'],['../namespacenc.html#abf0186d9e6764cd8b2a5e1529046429b',1,'nc::tan(const NdArray< dtype > &inArray)']]], - ['tan_2ehpp_1036',['tan.hpp',['../tan_8hpp.html',1,'']]], - ['tanh_1037',['tanh',['../namespacenc.html#aadd0ed02db4a60f805766e7026c78438',1,'nc::tanh(const NdArray< dtype > &inArray)'],['../namespacenc.html#a3d75639028d96fe20286a82740361c6e',1,'nc::tanh(dtype inValue) noexcept']]], - ['tanh_2ehpp_1038',['tanh.hpp',['../tanh_8hpp.html',1,'']]], - ['throw_5finvalid_5fargument_5ferror_1039',['THROW_INVALID_ARGUMENT_ERROR',['../_error_8hpp.html#af2aff1172060367b9c5398fa097fa8fd',1,'Error.hpp']]], - ['throw_5fruntime_5ferror_1040',['THROW_RUNTIME_ERROR',['../_error_8hpp.html#a0f0ce4acf1fd6032112a06ebc50bb05a',1,'Error.hpp']]], - ['throwerror_1041',['throwError',['../namespacenc_1_1error.html#ae23be92f797ad9d90604456bdf27092f',1,'nc::error']]], - ['tic_1042',['tic',['../classnc_1_1_timer.html#a4a08ec3e6ba7a7979cb9e72d0cf3f2f7',1,'nc::Timer']]], - ['tile_1043',['tile',['../namespacenc.html#ae4974bdf6c0bccbde88f70c5732fd361',1,'nc::tile(const NdArray< dtype > &inArray, const Shape &inReps)'],['../namespacenc.html#a01db30b2b68eb0dde0d8ffdc7b72dd53',1,'nc::tile(const NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)']]], - ['tile_2ehpp_1044',['tile.hpp',['../tile_8hpp.html',1,'']]], - ['timepoint_1045',['TimePoint',['../classnc_1_1_timer.html#a29e54a50e709622942a33e70b1b1e8f6',1,'nc::Timer']]], - ['timer_1046',['Timer',['../classnc_1_1_timer.html',1,'nc::Timer< TimeUnit >'],['../classnc_1_1_timer.html#a4ede5d1d2cdf6b97bec93b0954ddb610',1,'nc::Timer::Timer(const std::string &inName)'],['../classnc_1_1_timer.html#a5dabfba271b3655326e46c633eabd70e',1,'nc::Timer::Timer()']]], - ['timer_2ehpp_1047',['Timer.hpp',['../_timer_8hpp.html',1,'']]], - ['toc_1048',['toc',['../classnc_1_1_timer.html#a317fde3b5e7444328adf6484e0ec832e',1,'nc::Timer']]], - ['todcm_1049',['toDCM',['../classnc_1_1rotations_1_1_quaternion.html#aaa79cb63eab5e2bee5101de41d9074f8',1,'nc::rotations::Quaternion']]], - ['tofile_1050',['tofile',['../namespacenc.html#adf3cdf51801e83c58bc58c606781467d',1,'nc::tofile(const NdArray< dtype > &inArray, const std::string &inFilename)'],['../namespacenc.html#a7dc5b27b93f5a921a39151714fa78d67',1,'nc::tofile(const NdArray< dtype > &inArray, const std::string &inFilename, const char inSep)'],['../classnc_1_1_nd_array.html#a25390a2e453495e50219103d389a62d1',1,'nc::NdArray::tofile(const std::string &inFilename, const char inSep) const'],['../classnc_1_1_nd_array.html#a3533a4192c58304b6be7035098d8e263',1,'nc::NdArray::tofile(const std::string &inFilename) const']]], - ['tofile_2ehpp_1051',['tofile.hpp',['../tofile_8hpp.html',1,'']]], - ['toindices_1052',['toIndices',['../classnc_1_1_nd_array.html#a151940b3a151f2d15354bb4a9cbb0852',1,'nc::NdArray']]], - ['tondarray_1053',['toNdArray',['../classnc_1_1rotations_1_1_quaternion.html#a4a11c1c0daf982f9367e4541e5735e71',1,'nc::rotations::Quaternion::toNdArray()'],['../classnc_1_1_vec2.html#ad5f0e922730d66c57630ae5c7847e15a',1,'nc::Vec2::toNdArray()'],['../classnc_1_1_vec3.html#a45dbcf0b972b41fc3bc78aac17288804',1,'nc::Vec3::toNdArray()']]], - ['tostlvector_1054',['toStlVector',['../namespacenc.html#adc9e0bf1da9c54cc65e95a72e795de6b',1,'nc::toStlVector()'],['../classnc_1_1_nd_array.html#a1fb3a21ab9c10a2684098df919b5b440',1,'nc::NdArray::toStlVector()']]], - ['tostlvector_2ehpp_1055',['toStlVector.hpp',['../to_stl_vector_8hpp.html',1,'']]], - ['tostring_1056',['toString',['../classnc_1_1_vec2.html#acd4277d3a9acded9199afef378e1907c',1,'nc::Vec2::toString()'],['../classnc_1_1_vec3.html#a29fad7279d8da7f78805fee0c6d73408',1,'nc::Vec3::toString()']]], - ['trace_1057',['trace',['../namespacenc.html#a4a75035db8c766b2cececb1f3e4d5b74',1,'nc::trace()'],['../classnc_1_1_nd_array.html#ad58c8cb32887059d77903ff4c224e9f3',1,'nc::NdArray::trace()']]], - ['trace_2ehpp_1058',['trace.hpp',['../trace_8hpp.html',1,'']]], - ['transform_1059',['transform',['../namespacenc_1_1stl__algorithms.html#af358fec5563ae500162b310fe263a36d',1,'nc::stl_algorithms::transform(InputIt1 first1, InputIt1 last1, InputIt2 first2, OutputIt destination, BinaryOperation unaryFunction)'],['../namespacenc_1_1stl__algorithms.html#a616d5dabd547326285946d0014361ab4',1,'nc::stl_algorithms::transform(InputIt first, InputIt last, OutputIt destination, UnaryOperation unaryFunction)']]], - ['transpose_1060',['transpose',['../classnc_1_1_nd_array.html#a78c99f8306415d8e0ac0e03bb69c6d29',1,'nc::NdArray::transpose()'],['../namespacenc.html#aa6c78ac10e4c3aa446716f80aa1a72ca',1,'nc::transpose()']]], - ['transpose_2ehpp_1061',['transpose.hpp',['../transpose_8hpp.html',1,'']]], - ['trapazoidal_1062',['trapazoidal',['../namespacenc_1_1integrate.html#acdfbecb87f7780b2961eb4e5d3b3d109',1,'nc::integrate']]], - ['trapazoidal_2ehpp_1063',['trapazoidal.hpp',['../trapazoidal_8hpp.html',1,'']]], - ['trapz_1064',['trapz',['../namespacenc.html#a956571b2c934b75025e9168e2ed408f5',1,'nc::trapz(const NdArray< dtype > &inArrayY, const NdArray< dtype > &inArrayX, Axis inAxis=Axis::NONE)'],['../namespacenc.html#ad9d00f10d75f795a2f4cbdfb99776637',1,'nc::trapz(const NdArray< dtype > &inArray, double dx=1.0, Axis inAxis=Axis::NONE)']]], - ['trapz_2ehpp_1065',['trapz.hpp',['../trapz_8hpp.html',1,'']]], - ['tri_2ehpp_1066',['tri.hpp',['../tri_8hpp.html',1,'']]], - ['triangle_1067',['triangle',['../namespacenc_1_1random.html#abaeed48339244cfb7f214c7238b13e8b',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)']]], - ['triangle_2ehpp_1068',['triangle.hpp',['../triangle_8hpp.html',1,'']]], - ['trigamma_1069',['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_1070',['trigamma.hpp',['../trigamma_8hpp.html',1,'']]], - ['tril_1071',['tril',['../namespacenc.html#a7c46d843ef0c6ea562cb89f9732d89ab',1,'nc::tril(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#aa5530b43e1ccdeeaded7a26fdcb43798',1,'nc::tril(uint32 inN, int32 inOffset=0)'],['../namespacenc.html#a0fc9894890a23f64d3a676f595920a9a',1,'nc::tril(const NdArray< dtype > &inArray, int32 inOffset=0)']]], - ['trim_5fzeros_1072',['trim_zeros',['../namespacenc.html#a56a856c99dddd37fe14d5639dd6c5622',1,'nc']]], - ['trim_5fzeros_2ehpp_1073',['trim_zeros.hpp',['../trim__zeros_8hpp.html',1,'']]], - ['trimboundary1d_1074',['trimBoundary1d',['../namespacenc_1_1filter_1_1boundary.html#abe0b187c76c106e821b9ff94ef280d39',1,'nc::filter::boundary']]], - ['trimboundary1d_2ehpp_1075',['trimBoundary1d.hpp',['../trim_boundary1d_8hpp.html',1,'']]], - ['trimboundary2d_1076',['trimBoundary2d',['../namespacenc_1_1filter_1_1boundary.html#aeff17b6fddc47bd2220fb912b2429162',1,'nc::filter::boundary']]], - ['trimboundary2d_2ehpp_1077',['trimBoundary2d.hpp',['../trim_boundary2d_8hpp.html',1,'']]], - ['triu_1078',['triu',['../namespacenc.html#a6719a9ad06f8286f1a18f91df4d9b049',1,'nc::triu(const NdArray< dtype > &inArray, int32 inOffset=0)'],['../namespacenc.html#a05c4de5a2c55f32884dec4b1d5634a36',1,'nc::triu(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#ab8fb31254bc1cdd83667f4f2ac3604c8',1,'nc::triu(uint32 inN, int32 inOffset=0)']]], - ['trunc_1079',['trunc',['../namespacenc.html#adaf8b7ce0ee9ec1b91c27f5e6df30cfc',1,'nc::trunc(const NdArray< dtype > &inArray)'],['../namespacenc.html#ac83a50ef99e61f116a86df98196f4a8b',1,'nc::trunc(dtype inValue) noexcept']]], - ['trunc_2ehpp_1080',['trunc.hpp',['../trunc_8hpp.html',1,'']]], - ['types_2ehpp_1081',['Types.hpp',['../_types_8hpp.html',1,'']]], - ['typetraits_2ehpp_1082',['TypeTraits.hpp',['../_type_traits_8hpp.html',1,'']]] + ['tan_1086',['tan',['../namespacenc.html#abf0186d9e6764cd8b2a5e1529046429b',1,'nc::tan(const NdArray< dtype > &inArray)'],['../namespacenc.html#a50d3734603bda1d991baf0696a4b96ce',1,'nc::tan(dtype inValue) noexcept']]], + ['tan_2ehpp_1087',['tan.hpp',['../tan_8hpp.html',1,'']]], + ['tanh_1088',['tanh',['../namespacenc.html#aadd0ed02db4a60f805766e7026c78438',1,'nc::tanh(const NdArray< dtype > &inArray)'],['../namespacenc.html#a3d75639028d96fe20286a82740361c6e',1,'nc::tanh(dtype inValue) noexcept']]], + ['tanh_2ehpp_1089',['tanh.hpp',['../tanh_8hpp.html',1,'']]], + ['throw_5finvalid_5fargument_5ferror_1090',['THROW_INVALID_ARGUMENT_ERROR',['../_error_8hpp.html#af2aff1172060367b9c5398fa097fa8fd',1,'Error.hpp']]], + ['throw_5fruntime_5ferror_1091',['THROW_RUNTIME_ERROR',['../_error_8hpp.html#a0f0ce4acf1fd6032112a06ebc50bb05a',1,'Error.hpp']]], + ['throwerror_1092',['throwError',['../namespacenc_1_1error.html#ae23be92f797ad9d90604456bdf27092f',1,'nc::error']]], + ['tic_1093',['tic',['../classnc_1_1_timer.html#a4a08ec3e6ba7a7979cb9e72d0cf3f2f7',1,'nc::Timer']]], + ['tile_1094',['tile',['../namespacenc.html#ae4974bdf6c0bccbde88f70c5732fd361',1,'nc::tile(const NdArray< dtype > &inArray, const Shape &inReps)'],['../namespacenc.html#a01db30b2b68eb0dde0d8ffdc7b72dd53',1,'nc::tile(const NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)']]], + ['tile_2ehpp_1095',['tile.hpp',['../tile_8hpp.html',1,'']]], + ['timepoint_1096',['TimePoint',['../classnc_1_1_timer.html#a29e54a50e709622942a33e70b1b1e8f6',1,'nc::Timer']]], + ['timer_1097',['Timer',['../classnc_1_1_timer.html',1,'nc::Timer< TimeUnit >'],['../classnc_1_1_timer.html#a5dabfba271b3655326e46c633eabd70e',1,'nc::Timer::Timer()'],['../classnc_1_1_timer.html#a4ede5d1d2cdf6b97bec93b0954ddb610',1,'nc::Timer::Timer(const std::string &inName)']]], + ['timer_2ehpp_1098',['Timer.hpp',['../_timer_8hpp.html',1,'']]], + ['toc_1099',['toc',['../classnc_1_1_timer.html#a317fde3b5e7444328adf6484e0ec832e',1,'nc::Timer']]], + ['todcm_1100',['toDCM',['../classnc_1_1rotations_1_1_quaternion.html#aaa79cb63eab5e2bee5101de41d9074f8',1,'nc::rotations::Quaternion']]], + ['tofile_1101',['tofile',['../classnc_1_1_nd_array.html#a25390a2e453495e50219103d389a62d1',1,'nc::NdArray::tofile()'],['../namespacenc.html#adf3cdf51801e83c58bc58c606781467d',1,'nc::tofile()'],['../classnc_1_1_nd_array.html#a3533a4192c58304b6be7035098d8e263',1,'nc::NdArray::tofile()'],['../namespacenc.html#a7dc5b27b93f5a921a39151714fa78d67',1,'nc::tofile()']]], + ['tofile_2ehpp_1102',['tofile.hpp',['../tofile_8hpp.html',1,'']]], + ['toindices_1103',['toIndices',['../classnc_1_1_nd_array.html#a151940b3a151f2d15354bb4a9cbb0852',1,'nc::NdArray']]], + ['tondarray_1104',['toNdArray',['../classnc_1_1rotations_1_1_quaternion.html#a4a11c1c0daf982f9367e4541e5735e71',1,'nc::rotations::Quaternion::toNdArray()'],['../classnc_1_1_vec2.html#ad5f0e922730d66c57630ae5c7847e15a',1,'nc::Vec2::toNdArray()'],['../classnc_1_1_vec3.html#a45dbcf0b972b41fc3bc78aac17288804',1,'nc::Vec3::toNdArray()']]], + ['tostlvector_1105',['toStlVector',['../classnc_1_1_nd_array.html#a1fb3a21ab9c10a2684098df919b5b440',1,'nc::NdArray::toStlVector()'],['../namespacenc.html#adc9e0bf1da9c54cc65e95a72e795de6b',1,'nc::toStlVector()']]], + ['tostlvector_2ehpp_1106',['toStlVector.hpp',['../to_stl_vector_8hpp.html',1,'']]], + ['tostring_1107',['toString',['../classnc_1_1_vec2.html#acd4277d3a9acded9199afef378e1907c',1,'nc::Vec2::toString()'],['../classnc_1_1_vec3.html#a29fad7279d8da7f78805fee0c6d73408',1,'nc::Vec3::toString()']]], + ['trace_1108',['trace',['../classnc_1_1_nd_array.html#ad58c8cb32887059d77903ff4c224e9f3',1,'nc::NdArray::trace()'],['../namespacenc.html#a4a75035db8c766b2cececb1f3e4d5b74',1,'nc::trace()']]], + ['trace_2ehpp_1109',['trace.hpp',['../trace_8hpp.html',1,'']]], + ['transform_1110',['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)']]], + ['transpose_1111',['transpose',['../classnc_1_1_nd_array.html#a78c99f8306415d8e0ac0e03bb69c6d29',1,'nc::NdArray::transpose()'],['../namespacenc.html#aa6c78ac10e4c3aa446716f80aa1a72ca',1,'nc::transpose()']]], + ['transpose_2ehpp_1112',['transpose.hpp',['../transpose_8hpp.html',1,'']]], + ['trapazoidal_1113',['trapazoidal',['../namespacenc_1_1integrate.html#acdfbecb87f7780b2961eb4e5d3b3d109',1,'nc::integrate']]], + ['trapazoidal_2ehpp_1114',['trapazoidal.hpp',['../trapazoidal_8hpp.html',1,'']]], + ['trapz_1115',['trapz',['../namespacenc.html#ad9d00f10d75f795a2f4cbdfb99776637',1,'nc::trapz(const NdArray< dtype > &inArray, double dx=1.0, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a956571b2c934b75025e9168e2ed408f5',1,'nc::trapz(const NdArray< dtype > &inArrayY, const NdArray< dtype > &inArrayX, Axis inAxis=Axis::NONE)']]], + ['trapz_2ehpp_1116',['trapz.hpp',['../trapz_8hpp.html',1,'']]], + ['tri_2ehpp_1117',['tri.hpp',['../tri_8hpp.html',1,'']]], + ['triangle_1118',['triangle',['../namespacenc_1_1random.html#a3dd603264757ce4334bfc0b989cd4503',1,'nc::random::triangle(dtype inA=0, dtype inB=0.5, dtype inC=1)'],['../namespacenc_1_1random.html#abaeed48339244cfb7f214c7238b13e8b',1,'nc::random::triangle(const Shape &inShape, dtype inA=0, dtype inB=0.5, dtype inC=1)']]], + ['triangle_2ehpp_1119',['triangle.hpp',['../triangle_8hpp.html',1,'']]], + ['trigamma_1120',['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_1121',['trigamma.hpp',['../trigamma_8hpp.html',1,'']]], + ['tril_1122',['tril',['../namespacenc.html#aa5530b43e1ccdeeaded7a26fdcb43798',1,'nc::tril(uint32 inN, int32 inOffset=0)'],['../namespacenc.html#a7c46d843ef0c6ea562cb89f9732d89ab',1,'nc::tril(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#a0fc9894890a23f64d3a676f595920a9a',1,'nc::tril(const NdArray< dtype > &inArray, int32 inOffset=0)']]], + ['trim_5fzeros_1123',['trim_zeros',['../namespacenc.html#a56a856c99dddd37fe14d5639dd6c5622',1,'nc']]], + ['trim_5fzeros_2ehpp_1124',['trim_zeros.hpp',['../trim__zeros_8hpp.html',1,'']]], + ['trimboundary1d_1125',['trimBoundary1d',['../namespacenc_1_1filter_1_1boundary.html#abe0b187c76c106e821b9ff94ef280d39',1,'nc::filter::boundary']]], + ['trimboundary1d_2ehpp_1126',['trimBoundary1d.hpp',['../trim_boundary1d_8hpp.html',1,'']]], + ['trimboundary2d_1127',['trimBoundary2d',['../namespacenc_1_1filter_1_1boundary.html#aeff17b6fddc47bd2220fb912b2429162',1,'nc::filter::boundary']]], + ['trimboundary2d_2ehpp_1128',['trimBoundary2d.hpp',['../trim_boundary2d_8hpp.html',1,'']]], + ['triu_1129',['triu',['../namespacenc.html#a05c4de5a2c55f32884dec4b1d5634a36',1,'nc::triu(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#ab8fb31254bc1cdd83667f4f2ac3604c8',1,'nc::triu(uint32 inN, int32 inOffset=0)'],['../namespacenc.html#a6719a9ad06f8286f1a18f91df4d9b049',1,'nc::triu(const NdArray< dtype > &inArray, int32 inOffset=0)']]], + ['trunc_1130',['trunc',['../namespacenc.html#ac83a50ef99e61f116a86df98196f4a8b',1,'nc::trunc(dtype inValue) noexcept'],['../namespacenc.html#adaf8b7ce0ee9ec1b91c27f5e6df30cfc',1,'nc::trunc(const NdArray< dtype > &inArray)']]], + ['trunc_2ehpp_1131',['trunc.hpp',['../trunc_8hpp.html',1,'']]], + ['types_2ehpp_1132',['Types.hpp',['../_types_8hpp.html',1,'']]], + ['typetraits_2ehpp_1133',['TypeTraits.hpp',['../_type_traits_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_14.html b/docs/doxygen/html/search/all_14.html index 9be989321..afecf5634 100644 --- a/docs/doxygen/html/search/all_14.html +++ b/docs/doxygen/html/search/all_14.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_14.js b/docs/doxygen/html/search/all_14.js index b69be193d..36411dc66 100644 --- a/docs/doxygen/html/search/all_14.js +++ b/docs/doxygen/html/search/all_14.js @@ -1,29 +1,29 @@ var searchData= [ - ['cube_2ehpp_1083',['cube.hpp',['../_utils_2cube_8hpp.html',1,'']]], - ['interp_2ehpp_1084',['interp.hpp',['../_utils_2interp_8hpp.html',1,'']]], - ['power_2ehpp_1085',['power.hpp',['../_utils_2power_8hpp.html',1,'']]], - ['powerf_2ehpp_1086',['powerf.hpp',['../_utils_2powerf_8hpp.html',1,'']]], - ['u_1087',['u',['../classnc_1_1linalg_1_1_s_v_d.html#a0f7dddedc38be47b051aa16e5dc9d6b2',1,'nc::linalg::SVD']]], - ['uint16_1088',['uint16',['../namespacenc.html#a8146518cf6c6a8029c3d84a376167793',1,'nc']]], - ['uint32_1089',['uint32',['../namespacenc.html#af0f49663fb63332596e2e6327009d581',1,'nc']]], - ['uint64_1090',['uint64',['../namespacenc.html#a773f8535ba713f886e9e1b8378f6d76d',1,'nc']]], - ['uint8_1091',['uint8',['../namespacenc.html#a9ba5a0aa26753a185985b8273fb9062d',1,'nc']]], - ['uniform_1092',['uniform',['../namespacenc_1_1random.html#a1e31096d678b7e4be66f6c59d95e5445',1,'nc::random::uniform(const Shape &inShape, dtype inLow, dtype inHigh)'],['../namespacenc_1_1random.html#adbff3f6b80e512d4153b12bae9c6c732',1,'nc::random::uniform(dtype inLow, dtype inHigh)']]], - ['uniform_2ehpp_1093',['uniform.hpp',['../uniform_8hpp.html',1,'']]], - ['uniformfilter_1094',['uniformFilter',['../namespacenc_1_1filter.html#a9f41f17a6f7c06ebf7b1f3a1ab3915bb',1,'nc::filter']]], - ['uniformfilter_2ehpp_1095',['uniformFilter.hpp',['../uniform_filter_8hpp.html',1,'']]], - ['uniformfilter1d_1096',['uniformFilter1d',['../namespacenc_1_1filter.html#ab7f620c737fa95c983523c0950120cd9',1,'nc::filter']]], - ['uniformfilter1d_2ehpp_1097',['uniformFilter1d.hpp',['../uniform_filter1d_8hpp.html',1,'']]], - ['uniformonsphere_1098',['uniformOnSphere',['../namespacenc_1_1random.html#a2f18a1f7b9311d52bbdc4ae7a7b84be6',1,'nc::random']]], - ['uniformonsphere_2ehpp_1099',['uniformOnSphere.hpp',['../uniform_on_sphere_8hpp.html',1,'']]], - ['union1d_1100',['union1d',['../namespacenc.html#a38b544f6e77741848387a3a427579704',1,'nc']]], - ['union1d_2ehpp_1101',['union1d.hpp',['../union1d_8hpp.html',1,'']]], - ['unique_1102',['unique',['../namespacenc.html#ad4832f2be01449e48737aa0e06792494',1,'nc']]], - ['unique_2ehpp_1103',['unique.hpp',['../unique_8hpp.html',1,'']]], - ['unique_5fcopy_1104',['unique_copy',['../namespacenc_1_1stl__algorithms.html#a7cec030870d1f3b4d1c7caf26c8d907d',1,'nc::stl_algorithms::unique_copy(InputIt first, InputIt last, OutputIt destination) noexcept'],['../namespacenc_1_1stl__algorithms.html#aefa150cdbb6a1110c2164a3970a317a8',1,'nc::stl_algorithms::unique_copy(InputIt first, InputIt last, OutputIt destination, BinaryPredicate binaryFunction) noexcept']]], - ['unwrap_1105',['unwrap',['../namespacenc.html#aac5e942220c693fb9e65fcc3ff4fc50f',1,'nc::unwrap(dtype inValue) noexcept'],['../namespacenc.html#aff80ace967dcf63c32d235a7511c6018',1,'nc::unwrap(const NdArray< dtype > &inArray)']]], - ['unwrap_2ehpp_1106',['unwrap.hpp',['../unwrap_8hpp.html',1,'']]], - ['up_1107',['up',['../classnc_1_1_vec3.html#aafc14ccae575994733d664eb3f4a6e66',1,'nc::Vec3::up()'],['../classnc_1_1_vec2.html#a82fc65cffdae5c0ebd50fece54b56d4c',1,'nc::Vec2::up()']]], - ['utils_2ehpp_1108',['Utils.hpp',['../_utils_8hpp.html',1,'']]] + ['cube_2ehpp_1134',['cube.hpp',['../_utils_2cube_8hpp.html',1,'']]], + ['interp_2ehpp_1135',['interp.hpp',['../_utils_2interp_8hpp.html',1,'']]], + ['power_2ehpp_1136',['power.hpp',['../_utils_2power_8hpp.html',1,'']]], + ['powerf_2ehpp_1137',['powerf.hpp',['../_utils_2powerf_8hpp.html',1,'']]], + ['u_1138',['u',['../classnc_1_1linalg_1_1_s_v_d.html#a0f7dddedc38be47b051aa16e5dc9d6b2',1,'nc::linalg::SVD']]], + ['uint16_1139',['uint16',['../namespacenc.html#a8146518cf6c6a8029c3d84a376167793',1,'nc']]], + ['uint32_1140',['uint32',['../namespacenc.html#af0f49663fb63332596e2e6327009d581',1,'nc']]], + ['uint64_1141',['uint64',['../namespacenc.html#a773f8535ba713f886e9e1b8378f6d76d',1,'nc']]], + ['uint8_1142',['uint8',['../namespacenc.html#a9ba5a0aa26753a185985b8273fb9062d',1,'nc']]], + ['uniform_1143',['uniform',['../namespacenc_1_1random.html#adbff3f6b80e512d4153b12bae9c6c732',1,'nc::random::uniform(dtype inLow, dtype inHigh)'],['../namespacenc_1_1random.html#a1e31096d678b7e4be66f6c59d95e5445',1,'nc::random::uniform(const Shape &inShape, dtype inLow, dtype inHigh)']]], + ['uniform_2ehpp_1144',['uniform.hpp',['../uniform_8hpp.html',1,'']]], + ['uniformfilter_1145',['uniformFilter',['../namespacenc_1_1filter.html#a9f41f17a6f7c06ebf7b1f3a1ab3915bb',1,'nc::filter']]], + ['uniformfilter_2ehpp_1146',['uniformFilter.hpp',['../uniform_filter_8hpp.html',1,'']]], + ['uniformfilter1d_1147',['uniformFilter1d',['../namespacenc_1_1filter.html#ab7f620c737fa95c983523c0950120cd9',1,'nc::filter']]], + ['uniformfilter1d_2ehpp_1148',['uniformFilter1d.hpp',['../uniform_filter1d_8hpp.html',1,'']]], + ['uniformonsphere_1149',['uniformOnSphere',['../namespacenc_1_1random.html#a2f18a1f7b9311d52bbdc4ae7a7b84be6',1,'nc::random']]], + ['uniformonsphere_2ehpp_1150',['uniformOnSphere.hpp',['../uniform_on_sphere_8hpp.html',1,'']]], + ['union1d_1151',['union1d',['../namespacenc.html#a38b544f6e77741848387a3a427579704',1,'nc']]], + ['union1d_2ehpp_1152',['union1d.hpp',['../union1d_8hpp.html',1,'']]], + ['unique_1153',['unique',['../namespacenc.html#ad4832f2be01449e48737aa0e06792494',1,'nc']]], + ['unique_2ehpp_1154',['unique.hpp',['../unique_8hpp.html',1,'']]], + ['unique_5fcopy_1155',['unique_copy',['../namespacenc_1_1stl__algorithms.html#a7cec030870d1f3b4d1c7caf26c8d907d',1,'nc::stl_algorithms::unique_copy(InputIt first, InputIt last, OutputIt destination) noexcept'],['../namespacenc_1_1stl__algorithms.html#aefa150cdbb6a1110c2164a3970a317a8',1,'nc::stl_algorithms::unique_copy(InputIt first, InputIt last, OutputIt destination, BinaryPredicate binaryFunction) noexcept']]], + ['unwrap_1156',['unwrap',['../namespacenc.html#aac5e942220c693fb9e65fcc3ff4fc50f',1,'nc::unwrap(dtype inValue) noexcept'],['../namespacenc.html#aff80ace967dcf63c32d235a7511c6018',1,'nc::unwrap(const NdArray< dtype > &inArray)']]], + ['unwrap_2ehpp_1157',['unwrap.hpp',['../unwrap_8hpp.html',1,'']]], + ['up_1158',['up',['../classnc_1_1_vec2.html#a82fc65cffdae5c0ebd50fece54b56d4c',1,'nc::Vec2::up()'],['../classnc_1_1_vec3.html#aafc14ccae575994733d664eb3f4a6e66',1,'nc::Vec3::up()']]], + ['utils_2ehpp_1159',['Utils.hpp',['../_utils_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_15.html b/docs/doxygen/html/search/all_15.html index c31349869..69f382b31 100644 --- a/docs/doxygen/html/search/all_15.html +++ b/docs/doxygen/html/search/all_15.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_15.js b/docs/doxygen/html/search/all_15.js index 3d036f3c7..ffbfe4a86 100644 --- a/docs/doxygen/html/search/all_15.js +++ b/docs/doxygen/html/search/all_15.js @@ -1,19 +1,19 @@ var searchData= [ - ['v_1109',['v',['../classnc_1_1linalg_1_1_s_v_d.html#a6b907070cfa7e89c3107fa628694e274',1,'nc::linalg::SVD']]], - ['value_1110',['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__valid__dtype.html#af383f42b2b624cc161c1748b98cc541e',1,'nc::is_valid_dtype::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__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()'],['../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()']]], - ['value2str_1111',['value2str',['../namespacenc_1_1utils.html#a83530b13c9cc3b01b9bd8b8d3113290a',1,'nc::utils']]], - ['value2str_2ehpp_1112',['value2str.hpp',['../value2str_8hpp.html',1,'']]], - ['value_5ftype_1113',['value_type',['../classnc_1_1_nd_array_const_iterator.html#af4d3be6b1470162a26b34cdaa5a2addd',1,'nc::NdArrayConstIterator::value_type()'],['../classnc_1_1_nd_array.html#aed76b0d590eff875e09a6f0d7968e7db',1,'nc::NdArray::value_type()'],['../classnc_1_1_nd_array_iterator.html#adeb90525f10a8bf2748dafbb2ea154dc',1,'nc::NdArrayIterator::value_type()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3b124e1120c2fb329dcb5d81abe39e1d',1,'nc::NdArrayConstColumnIterator::value_type()'],['../classnc_1_1_nd_array_column_iterator.html#a7191b7c13b188f2a0abaf8477f0bd2d4',1,'nc::NdArrayColumnIterator::value_type()']]], - ['var_1114',['var',['../namespacenc.html#aeefabf8c851def135518ddded2bf5886',1,'nc::var(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a130dfd14b561ed4f0889fd2093f99d5f',1,'nc::var(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], - ['var_2ehpp_1115',['var.hpp',['../var_8hpp.html',1,'']]], - ['vec2_1116',['Vec2',['../classnc_1_1_vec2.html',1,'nc::Vec2'],['../classnc_1_1_vec2.html#a93a9f0c675265005a60c77179625ddd2',1,'nc::Vec2::Vec2(const NdArray< double > &ndArray)'],['../classnc_1_1_vec2.html#ae34b427d1b6560cce898bf61f9524a80',1,'nc::Vec2::Vec2()=default'],['../classnc_1_1_vec2.html#aeb48b0300990a5b77919589488ddfe30',1,'nc::Vec2::Vec2(double inX, double inY) noexcept'],['../classnc_1_1_vec2.html#abfb713c893dbd31d7c94b4741e82530b',1,'nc::Vec2::Vec2(const std::initializer_list< double > &inList)']]], - ['vec2_2ehpp_1117',['Vec2.hpp',['../_vec2_8hpp.html',1,'']]], - ['vec3_1118',['Vec3',['../classnc_1_1_vec3.html',1,'nc::Vec3'],['../classnc_1_1_vec3.html#adb18c9ba29affb8b712bb22a83e38e09',1,'nc::Vec3::Vec3()=default'],['../classnc_1_1_vec3.html#a6b0bc18cc9594a7d81361c518d543130',1,'nc::Vec3::Vec3(double inX, double inY, double inZ) noexcept'],['../classnc_1_1_vec3.html#a4056d1e369726710d6f1049b277486dd',1,'nc::Vec3::Vec3(const std::initializer_list< double > &inList)'],['../classnc_1_1_vec3.html#a4668419f4c870900466d4aa198247767',1,'nc::Vec3::Vec3(const NdArray< double > &ndArray)']]], - ['vec3_2ehpp_1119',['Vec3.hpp',['../_vec3_8hpp.html',1,'']]], - ['vector_2ehpp_1120',['Vector.hpp',['../_vector_8hpp.html',1,'']]], - ['version_1121',['VERSION',['../namespacenc.html#a8fa2b5de82ba40f346d1ba1e3ad0397a',1,'nc']]], - ['version_2ehpp_1122',['Version.hpp',['../_version_8hpp.html',1,'']]], - ['vstack_1123',['vstack',['../namespacenc.html#a8dec1ff4db1d89ab4b3a7d32ff4b5cf3',1,'nc']]], - ['vstack_2ehpp_1124',['vstack.hpp',['../vstack_8hpp.html',1,'']]] + ['v_1160',['v',['../classnc_1_1linalg_1_1_s_v_d.html#a6b907070cfa7e89c3107fa628694e274',1,'nc::linalg::SVD']]], + ['value_1161',['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()'],['../structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html#a02b49e4936f586c2407c089400ee891f',1,'nc::all_same< T1, T2 >::value()'],['../structnc_1_1is__valid__dtype.html#af383f42b2b624cc161c1748b98cc541e',1,'nc::is_valid_dtype::value()'],['../structnc_1_1is__complex.html#a273a78ae8b41cf81e633f259204ce5dd',1,'nc::is_complex::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_1greater_than.html#a6664c509bb1b73d1547aeffa4ea2afec',1,'nc::greaterThan::value()']]], + ['value2str_1162',['value2str',['../namespacenc_1_1utils.html#a83530b13c9cc3b01b9bd8b8d3113290a',1,'nc::utils']]], + ['value2str_2ehpp_1163',['value2str.hpp',['../value2str_8hpp.html',1,'']]], + ['value_5ftype_1164',['value_type',['../classnc_1_1_nd_array.html#aed76b0d590eff875e09a6f0d7968e7db',1,'nc::NdArray::value_type()'],['../classnc_1_1_nd_array_column_iterator.html#a7191b7c13b188f2a0abaf8477f0bd2d4',1,'nc::NdArrayColumnIterator::value_type()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3b124e1120c2fb329dcb5d81abe39e1d',1,'nc::NdArrayConstColumnIterator::value_type()'],['../classnc_1_1_nd_array_iterator.html#adeb90525f10a8bf2748dafbb2ea154dc',1,'nc::NdArrayIterator::value_type()'],['../classnc_1_1_nd_array_const_iterator.html#af4d3be6b1470162a26b34cdaa5a2addd',1,'nc::NdArrayConstIterator::value_type()']]], + ['var_1165',['var',['../namespacenc.html#aeefabf8c851def135518ddded2bf5886',1,'nc::var(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a130dfd14b561ed4f0889fd2093f99d5f',1,'nc::var(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], + ['var_2ehpp_1166',['var.hpp',['../var_8hpp.html',1,'']]], + ['vec2_1167',['Vec2',['../classnc_1_1_vec2.html',1,'nc::Vec2'],['../classnc_1_1_vec2.html#ae34b427d1b6560cce898bf61f9524a80',1,'nc::Vec2::Vec2()=default'],['../classnc_1_1_vec2.html#aeb48b0300990a5b77919589488ddfe30',1,'nc::Vec2::Vec2(double inX, double inY) noexcept'],['../classnc_1_1_vec2.html#abfb713c893dbd31d7c94b4741e82530b',1,'nc::Vec2::Vec2(const std::initializer_list< double > &inList)'],['../classnc_1_1_vec2.html#a93a9f0c675265005a60c77179625ddd2',1,'nc::Vec2::Vec2(const NdArray< double > &ndArray)']]], + ['vec2_2ehpp_1168',['Vec2.hpp',['../_vec2_8hpp.html',1,'']]], + ['vec3_1169',['Vec3',['../classnc_1_1_vec3.html',1,'nc::Vec3'],['../classnc_1_1_vec3.html#adb18c9ba29affb8b712bb22a83e38e09',1,'nc::Vec3::Vec3()=default'],['../classnc_1_1_vec3.html#a6b0bc18cc9594a7d81361c518d543130',1,'nc::Vec3::Vec3(double inX, double inY, double inZ) noexcept'],['../classnc_1_1_vec3.html#a4056d1e369726710d6f1049b277486dd',1,'nc::Vec3::Vec3(const std::initializer_list< double > &inList)'],['../classnc_1_1_vec3.html#a4668419f4c870900466d4aa198247767',1,'nc::Vec3::Vec3(const NdArray< double > &ndArray)']]], + ['vec3_2ehpp_1170',['Vec3.hpp',['../_vec3_8hpp.html',1,'']]], + ['vector_2ehpp_1171',['Vector.hpp',['../_vector_8hpp.html',1,'']]], + ['version_1172',['VERSION',['../namespacenc.html#a8fa2b5de82ba40f346d1ba1e3ad0397a',1,'nc']]], + ['version_2ehpp_1173',['Version.hpp',['../_version_8hpp.html',1,'']]], + ['vstack_1174',['vstack',['../namespacenc.html#a5e1694cef7795a5fc4914b17d5272dd0',1,'nc']]], + ['vstack_2ehpp_1175',['vstack.hpp',['../vstack_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_16.html b/docs/doxygen/html/search/all_16.html index 5c2e4c0dc..b19867ad9 100644 --- a/docs/doxygen/html/search/all_16.html +++ b/docs/doxygen/html/search/all_16.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_16.js b/docs/doxygen/html/search/all_16.js index e8bef1144..de0e57d8d 100644 --- a/docs/doxygen/html/search/all_16.js +++ b/docs/doxygen/html/search/all_16.js @@ -1,18 +1,18 @@ var searchData= [ - ['wahbasproblem_1125',['wahbasProblem',['../namespacenc_1_1rotations.html#a6da89864a9512bbe69c848dad18220b4',1,'nc::rotations::wahbasProblem(const NdArray< dtype > &wk, const NdArray< dtype > &vk)'],['../namespacenc_1_1rotations.html#a84a42f4e7f09b7c0e1a9307cb5b6f281',1,'nc::rotations::wahbasProblem(const NdArray< dtype > &wk, const NdArray< dtype > &vk, const NdArray< dtype > &ak)']]], - ['wahbasproblem_2ehpp_1126',['wahbasProblem.hpp',['../wahbas_problem_8hpp.html',1,'']]], - ['weibull_1127',['weibull',['../namespacenc_1_1random.html#af3a48c59aaa59d37bb5177b962d02bde',1,'nc::random::weibull(const Shape &inShape, dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#a3cf0bdb15264c1ace4163042756a4765',1,'nc::random::weibull(dtype inA=1, dtype inB=1)']]], - ['weibull_2ehpp_1128',['weibull.hpp',['../weibull_8hpp.html',1,'']]], - ['where_1129',['where',['../namespacenc.html#ac0af750215d0444ad9f0208620ca206b',1,'nc::where(const NdArray< bool > &inMask, const NdArray< dtype > &inA, const NdArray< dtype > &inB)'],['../namespacenc.html#a7191d45f29de05f27964f56f36c9be94',1,'nc::where(const NdArray< bool > &inMask, const NdArray< dtype > &inA, dtype inB)'],['../namespacenc.html#a446fff289053b687a994f9193941cd3f',1,'nc::where(const NdArray< bool > &inMask, dtype inA, const NdArray< dtype > &inB)'],['../namespacenc.html#a39dbf48fd9094cc969f3d006788f2137',1,'nc::where(const NdArray< bool > &inMask, dtype inA, dtype inB)']]], - ['where_2ehpp_1130',['where.hpp',['../where_8hpp.html',1,'']]], - ['width_1131',['width',['../classnc_1_1image_processing_1_1_cluster.html#accbfd3dbb32016c0f4234614347d74ce',1,'nc::imageProcessing::Cluster']]], - ['windowexceedances_1132',['windowExceedances',['../namespacenc_1_1image_processing.html#a896adf0319f58a2f44cbf3dfaf550fe2',1,'nc::imageProcessing']]], - ['windowexceedances_2ehpp_1133',['windowExceedances.hpp',['../window_exceedances_8hpp.html',1,'']]], - ['withext_1134',['withExt',['../classnc_1_1filesystem_1_1_file.html#adde9dd84b2a023df3bb908e6b1c7030f',1,'nc::filesystem::File']]], - ['wrap_1135',['WRAP',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6ae1c8555fcf0ea2bb648a6fd527d658c0',1,'nc::filter']]], - ['wrap1d_1136',['wrap1d',['../namespacenc_1_1filter_1_1boundary.html#aa318761ec07aeb7764e2e5f0a7ec9e86',1,'nc::filter::boundary']]], - ['wrap1d_2ehpp_1137',['wrap1d.hpp',['../wrap1d_8hpp.html',1,'']]], - ['wrap2d_1138',['wrap2d',['../namespacenc_1_1filter_1_1boundary.html#aeace2e548cf6ecf3aaadbbf000cbead7',1,'nc::filter::boundary']]], - ['wrap2d_2ehpp_1139',['wrap2d.hpp',['../wrap2d_8hpp.html',1,'']]] + ['wahbasproblem_1176',['wahbasProblem',['../namespacenc_1_1rotations.html#a84a42f4e7f09b7c0e1a9307cb5b6f281',1,'nc::rotations::wahbasProblem(const NdArray< dtype > &wk, const NdArray< dtype > &vk, const NdArray< dtype > &ak)'],['../namespacenc_1_1rotations.html#a6da89864a9512bbe69c848dad18220b4',1,'nc::rotations::wahbasProblem(const NdArray< dtype > &wk, const NdArray< dtype > &vk)']]], + ['wahbasproblem_2ehpp_1177',['wahbasProblem.hpp',['../wahbas_problem_8hpp.html',1,'']]], + ['weibull_1178',['weibull',['../namespacenc_1_1random.html#a3cf0bdb15264c1ace4163042756a4765',1,'nc::random::weibull(dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#af3a48c59aaa59d37bb5177b962d02bde',1,'nc::random::weibull(const Shape &inShape, dtype inA=1, dtype inB=1)']]], + ['weibull_2ehpp_1179',['weibull.hpp',['../weibull_8hpp.html',1,'']]], + ['where_1180',['where',['../namespacenc.html#ac0af750215d0444ad9f0208620ca206b',1,'nc::where(const NdArray< bool > &inMask, const NdArray< dtype > &inA, const NdArray< dtype > &inB)'],['../namespacenc.html#a7191d45f29de05f27964f56f36c9be94',1,'nc::where(const NdArray< bool > &inMask, const NdArray< dtype > &inA, dtype inB)'],['../namespacenc.html#a446fff289053b687a994f9193941cd3f',1,'nc::where(const NdArray< bool > &inMask, dtype inA, const NdArray< dtype > &inB)'],['../namespacenc.html#a39dbf48fd9094cc969f3d006788f2137',1,'nc::where(const NdArray< bool > &inMask, dtype inA, dtype inB)']]], + ['where_2ehpp_1181',['where.hpp',['../where_8hpp.html',1,'']]], + ['width_1182',['width',['../classnc_1_1image_processing_1_1_cluster.html#accbfd3dbb32016c0f4234614347d74ce',1,'nc::imageProcessing::Cluster']]], + ['windowexceedances_1183',['windowExceedances',['../namespacenc_1_1image_processing.html#a896adf0319f58a2f44cbf3dfaf550fe2',1,'nc::imageProcessing']]], + ['windowexceedances_2ehpp_1184',['windowExceedances.hpp',['../window_exceedances_8hpp.html',1,'']]], + ['withext_1185',['withExt',['../classnc_1_1filesystem_1_1_file.html#adde9dd84b2a023df3bb908e6b1c7030f',1,'nc::filesystem::File']]], + ['wrap_1186',['WRAP',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6ae1c8555fcf0ea2bb648a6fd527d658c0',1,'nc::filter']]], + ['wrap1d_1187',['wrap1d',['../namespacenc_1_1filter_1_1boundary.html#aa318761ec07aeb7764e2e5f0a7ec9e86',1,'nc::filter::boundary']]], + ['wrap1d_2ehpp_1188',['wrap1d.hpp',['../wrap1d_8hpp.html',1,'']]], + ['wrap2d_1189',['wrap2d',['../namespacenc_1_1filter_1_1boundary.html#aeace2e548cf6ecf3aaadbbf000cbead7',1,'nc::filter::boundary']]], + ['wrap2d_2ehpp_1190',['wrap2d.hpp',['../wrap2d_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_17.html b/docs/doxygen/html/search/all_17.html index 961ea4061..1ad5d34b4 100644 --- a/docs/doxygen/html/search/all_17.html +++ b/docs/doxygen/html/search/all_17.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_17.js b/docs/doxygen/html/search/all_17.js index 8378bccd3..7b2ada22d 100644 --- a/docs/doxygen/html/search/all_17.js +++ b/docs/doxygen/html/search/all_17.js @@ -1,6 +1,6 @@ var searchData= [ - ['x_1140',['x',['../classnc_1_1_vec2.html#a36a67b9395b397e1b8e9364a39a5c458',1,'nc::Vec2::x()'],['../classnc_1_1_vec3.html#a7f71dd08d58a1327739de6041e3362bb',1,'nc::Vec3::x()'],['../classnc_1_1coordinates_1_1_coordinate.html#aded7d56f04931cfbb07488d45d6bfce5',1,'nc::coordinates::Coordinate::x()']]], - ['xrotation_1141',['xRotation',['../classnc_1_1rotations_1_1_d_c_m.html#a7679a0d5443e2abdee0c376ef5f6d1e1',1,'nc::rotations::DCM::xRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#a30fe8031959271e5b0134a0c562713b4',1,'nc::rotations::Quaternion::xRotation()']]], - ['xyz_1142',['xyz',['../classnc_1_1coordinates_1_1_coordinate.html#a01ff982f40caae2429c20d0ba66e4afc',1,'nc::coordinates::Coordinate']]] + ['x_1191',['x',['../classnc_1_1_vec2.html#a36a67b9395b397e1b8e9364a39a5c458',1,'nc::Vec2::x()'],['../classnc_1_1_vec3.html#a7f71dd08d58a1327739de6041e3362bb',1,'nc::Vec3::x()'],['../classnc_1_1coordinates_1_1_coordinate.html#aded7d56f04931cfbb07488d45d6bfce5',1,'nc::coordinates::Coordinate::x()']]], + ['xrotation_1192',['xRotation',['../classnc_1_1rotations_1_1_d_c_m.html#a7679a0d5443e2abdee0c376ef5f6d1e1',1,'nc::rotations::DCM::xRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#a30fe8031959271e5b0134a0c562713b4',1,'nc::rotations::Quaternion::xRotation()']]], + ['xyz_1193',['xyz',['../classnc_1_1coordinates_1_1_coordinate.html#a01ff982f40caae2429c20d0ba66e4afc',1,'nc::coordinates::Coordinate']]] ]; diff --git a/docs/doxygen/html/search/all_18.html b/docs/doxygen/html/search/all_18.html index c81b0f578..507d0f856 100644 --- a/docs/doxygen/html/search/all_18.html +++ b/docs/doxygen/html/search/all_18.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_18.js b/docs/doxygen/html/search/all_18.js index 1cc4861e7..c66c10929 100644 --- a/docs/doxygen/html/search/all_18.js +++ b/docs/doxygen/html/search/all_18.js @@ -1,6 +1,6 @@ var searchData= [ - ['y_1143',['y',['../classnc_1_1_vec2.html#ad7a5bc1612f92f7e49112cf58caeaace',1,'nc::Vec2::y()'],['../classnc_1_1_vec3.html#a969dd1c195f4c78fc3a93292391e29c1',1,'nc::Vec3::y()'],['../classnc_1_1coordinates_1_1_coordinate.html#a624e354f60ca0822c5a60e9ee6432bc6',1,'nc::coordinates::Coordinate::y()']]], - ['yaw_1144',['yaw',['../classnc_1_1rotations_1_1_d_c_m.html#aef0f27b195b93151a94cb86ca9fa21c9',1,'nc::rotations::DCM::yaw()'],['../classnc_1_1rotations_1_1_quaternion.html#a5b5cef534a39badf5d3079ee642e675c',1,'nc::rotations::Quaternion::yaw()']]], - ['yrotation_1145',['yRotation',['../classnc_1_1rotations_1_1_d_c_m.html#a9c495cb1fc84c70042d652d84bcddea4',1,'nc::rotations::DCM::yRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#ab77da90ef63465f79bd79348330ca9a4',1,'nc::rotations::Quaternion::yRotation()']]] + ['y_1194',['y',['../classnc_1_1_vec2.html#ad7a5bc1612f92f7e49112cf58caeaace',1,'nc::Vec2::y()'],['../classnc_1_1_vec3.html#a969dd1c195f4c78fc3a93292391e29c1',1,'nc::Vec3::y()'],['../classnc_1_1coordinates_1_1_coordinate.html#a624e354f60ca0822c5a60e9ee6432bc6',1,'nc::coordinates::Coordinate::y()']]], + ['yaw_1195',['yaw',['../classnc_1_1rotations_1_1_d_c_m.html#aef0f27b195b93151a94cb86ca9fa21c9',1,'nc::rotations::DCM::yaw()'],['../classnc_1_1rotations_1_1_quaternion.html#a5b5cef534a39badf5d3079ee642e675c',1,'nc::rotations::Quaternion::yaw()']]], + ['yrotation_1196',['yRotation',['../classnc_1_1rotations_1_1_d_c_m.html#a9c495cb1fc84c70042d652d84bcddea4',1,'nc::rotations::DCM::yRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#ab77da90ef63465f79bd79348330ca9a4',1,'nc::rotations::Quaternion::yRotation()']]] ]; diff --git a/docs/doxygen/html/search/all_19.html b/docs/doxygen/html/search/all_19.html index 0964e799d..e69289e9b 100644 --- a/docs/doxygen/html/search/all_19.html +++ b/docs/doxygen/html/search/all_19.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_19.js b/docs/doxygen/html/search/all_19.js index b4be66c7a..0c70f3915 100644 --- a/docs/doxygen/html/search/all_19.js +++ b/docs/doxygen/html/search/all_19.js @@ -1,9 +1,9 @@ var searchData= [ - ['z_1146',['z',['../classnc_1_1_vec3.html#a0896ee691f46ce0bd669b869fe6acb41',1,'nc::Vec3::z()'],['../classnc_1_1coordinates_1_1_coordinate.html#a21614cb1e2513d0d8cb553ccb035986e',1,'nc::coordinates::Coordinate::z()']]], - ['zeros_1147',['zeros',['../classnc_1_1_nd_array.html#acac210ad3d3bd973be4bece6e6b625ed',1,'nc::NdArray::zeros()'],['../namespacenc.html#a8fb3ecc9cc7448e4b5d3d422e499b10e',1,'nc::zeros(uint32 inSquareSize)'],['../namespacenc.html#aa78000e997f09d772b82dd4a08783f69',1,'nc::zeros(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a9751f678e096a185122168c1c52edb25',1,'nc::zeros(const Shape &inShape)']]], - ['zeros_2ehpp_1148',['zeros.hpp',['../zeros_8hpp.html',1,'']]], - ['zeros_5flike_1149',['zeros_like',['../namespacenc.html#a497502db462e463196e12005ebf2d395',1,'nc']]], - ['zeros_5flike_2ehpp_1150',['zeros_like.hpp',['../zeros__like_8hpp.html',1,'']]], - ['zrotation_1151',['zRotation',['../classnc_1_1rotations_1_1_d_c_m.html#aa0c71aecc70f9354665b0c81cdf366ce',1,'nc::rotations::DCM::zRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#aaf688fafc4714f1da399e265c8e49a8d',1,'nc::rotations::Quaternion::zRotation()']]] + ['z_1197',['z',['../classnc_1_1_vec3.html#a0896ee691f46ce0bd669b869fe6acb41',1,'nc::Vec3::z()'],['../classnc_1_1coordinates_1_1_coordinate.html#a21614cb1e2513d0d8cb553ccb035986e',1,'nc::coordinates::Coordinate::z()']]], + ['zeros_1198',['zeros',['../classnc_1_1_nd_array.html#acac210ad3d3bd973be4bece6e6b625ed',1,'nc::NdArray::zeros()'],['../namespacenc.html#a8fb3ecc9cc7448e4b5d3d422e499b10e',1,'nc::zeros(uint32 inSquareSize)'],['../namespacenc.html#aa78000e997f09d772b82dd4a08783f69',1,'nc::zeros(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a9751f678e096a185122168c1c52edb25',1,'nc::zeros(const Shape &inShape)']]], + ['zeros_2ehpp_1199',['zeros.hpp',['../zeros_8hpp.html',1,'']]], + ['zeros_5flike_1200',['zeros_like',['../namespacenc.html#a497502db462e463196e12005ebf2d395',1,'nc']]], + ['zeros_5flike_2ehpp_1201',['zeros_like.hpp',['../zeros__like_8hpp.html',1,'']]], + ['zrotation_1202',['zRotation',['../classnc_1_1rotations_1_1_d_c_m.html#aa0c71aecc70f9354665b0c81cdf366ce',1,'nc::rotations::DCM::zRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#aaf688fafc4714f1da399e265c8e49a8d',1,'nc::rotations::Quaternion::zRotation()']]] ]; diff --git a/docs/doxygen/html/search/all_1a.html b/docs/doxygen/html/search/all_1a.html index 65d1029b4..e50f29b1c 100644 --- a/docs/doxygen/html/search/all_1a.html +++ b/docs/doxygen/html/search/all_1a.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_1a.js b/docs/doxygen/html/search/all_1a.js index 1d7658d82..d02246294 100644 --- a/docs/doxygen/html/search/all_1a.js +++ b/docs/doxygen/html/search/all_1a.js @@ -1,10 +1,10 @@ var searchData= [ - ['_7ebisection_1152',['~Bisection',['../classnc_1_1roots_1_1_bisection.html#a5e0d0c67681add5f2feec713901539df',1,'nc::roots::Bisection']]], - ['_7ebrent_1153',['~Brent',['../classnc_1_1roots_1_1_brent.html#ade76ad260d82314f284ebacf885f6884',1,'nc::roots::Brent']]], - ['_7edekker_1154',['~Dekker',['../classnc_1_1roots_1_1_dekker.html#a49413387fbe4d12e20569d175fa7f486',1,'nc::roots::Dekker']]], - ['_7eiteration_1155',['~Iteration',['../classnc_1_1roots_1_1_iteration.html#a44492e4a1849938cd7017154213ec002',1,'nc::roots::Iteration']]], - ['_7endarray_1156',['~NdArray',['../classnc_1_1_nd_array.html#a7ef259d6b54cf8373721700b12c14500',1,'nc::NdArray']]], - ['_7enewton_1157',['~Newton',['../classnc_1_1roots_1_1_newton.html#a25702b087e2e9917af0c31fe1dbdf442',1,'nc::roots::Newton']]], - ['_7esecant_1158',['~Secant',['../classnc_1_1roots_1_1_secant.html#aa5eb3c22ecf2ef92a381b6cf54fb1f83',1,'nc::roots::Secant']]] + ['_7ebisection_1203',['~Bisection',['../classnc_1_1roots_1_1_bisection.html#a5e0d0c67681add5f2feec713901539df',1,'nc::roots::Bisection']]], + ['_7ebrent_1204',['~Brent',['../classnc_1_1roots_1_1_brent.html#ade76ad260d82314f284ebacf885f6884',1,'nc::roots::Brent']]], + ['_7edekker_1205',['~Dekker',['../classnc_1_1roots_1_1_dekker.html#a49413387fbe4d12e20569d175fa7f486',1,'nc::roots::Dekker']]], + ['_7eiteration_1206',['~Iteration',['../classnc_1_1roots_1_1_iteration.html#a44492e4a1849938cd7017154213ec002',1,'nc::roots::Iteration']]], + ['_7endarray_1207',['~NdArray',['../classnc_1_1_nd_array.html#a7ef259d6b54cf8373721700b12c14500',1,'nc::NdArray']]], + ['_7enewton_1208',['~Newton',['../classnc_1_1roots_1_1_newton.html#a25702b087e2e9917af0c31fe1dbdf442',1,'nc::roots::Newton']]], + ['_7esecant_1209',['~Secant',['../classnc_1_1roots_1_1_secant.html#aa5eb3c22ecf2ef92a381b6cf54fb1f83',1,'nc::roots::Secant']]] ]; diff --git a/docs/doxygen/html/search/all_2.html b/docs/doxygen/html/search/all_2.html index 0a5f832e0..02cfffc2e 100644 --- a/docs/doxygen/html/search/all_2.html +++ b/docs/doxygen/html/search/all_2.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_2.js b/docs/doxygen/html/search/all_2.js index 498d2a326..9e8b10859 100644 --- a/docs/doxygen/html/search/all_2.js +++ b/docs/doxygen/html/search/all_2.js @@ -1,128 +1,136 @@ var searchData= [ - ['c_143',['c',['../namespacenc_1_1constants.html#ac3fc62713ed109e451648c67faab7581',1,'nc::constants']]], - ['cauchy_144',['cauchy',['../namespacenc_1_1random.html#aa72b221b82940e126a4c740ee55b269b',1,'nc::random::cauchy(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a61dc9fcfaee6e2a74e3f2e1f0e9c039b',1,'nc::random::cauchy(const Shape &inShape, dtype inMean=0, dtype inSigma=1)']]], - ['cauchy_2ehpp_145',['cauchy.hpp',['../cauchy_8hpp.html',1,'']]], - ['cbegin_146',['cbegin',['../classnc_1_1_nd_array.html#a4a3d1f968c924a4dc74cd8b617d30df6',1,'nc::NdArray::cbegin(size_type inRow) const'],['../classnc_1_1_nd_array.html#a0bee49339bdc4d7edbeb5efa73133cc3',1,'nc::NdArray::cbegin() const noexcept'],['../classnc_1_1_data_cube.html#adee7aa24a04d84f83f4c76ef8dcec974',1,'nc::DataCube::cbegin()']]], - ['cbrt_147',['cbrt',['../namespacenc.html#ae0f91253a3818ac7a12a9d5120ee9a14',1,'nc::cbrt(const NdArray< dtype > &inArray)'],['../namespacenc.html#a21de0caa1ff8e9e7baed8a8a57f7bcab',1,'nc::cbrt(dtype inValue) noexcept']]], - ['cbrt_2ehpp_148',['cbrt.hpp',['../cbrt_8hpp.html',1,'']]], - ['ccolbegin_149',['ccolbegin',['../classnc_1_1_nd_array.html#a1252a696593c510d506c1bca8bd65c51',1,'nc::NdArray::ccolbegin(size_type inCol) const'],['../classnc_1_1_nd_array.html#a25c7145679e41227023ad6de4ab5cd18',1,'nc::NdArray::ccolbegin() const noexcept']]], - ['ccolend_150',['ccolend',['../classnc_1_1_nd_array.html#a4a493445c10ed3c299632bf8c7077cfb',1,'nc::NdArray::ccolend(size_type inCol) const'],['../classnc_1_1_nd_array.html#ad2833ea5479c37de114bf52afff04a20',1,'nc::NdArray::ccolend() const noexcept']]], - ['ceil_151',['ceil',['../namespacenc.html#a375f83bc366e3b26842a03b9688b8a33',1,'nc::ceil(const NdArray< dtype > &inArray)'],['../namespacenc.html#a291189b2c2bc35a608b393ab1c06e84a',1,'nc::ceil(dtype inValue) noexcept']]], - ['ceil_2ehpp_152',['ceil.hpp',['../ceil_8hpp.html',1,'']]], - ['cend_153',['cend',['../classnc_1_1_data_cube.html#aca3c0041f121ed92d47d1f2873f713e4',1,'nc::DataCube::cend()'],['../classnc_1_1_nd_array.html#aa16bc96e4bbafbc8a06743f3e4a10a6a',1,'nc::NdArray::cend() const noexcept'],['../classnc_1_1_nd_array.html#a4da6aaa43b6074a4353328a8047992f6',1,'nc::NdArray::cend(size_type inRow) const']]], - ['centerofmass_154',['centerOfMass',['../namespacenc.html#a830888da11b33ea36bf4fc580d8c4757',1,'nc']]], - ['centerofmass_2ehpp_155',['centerOfMass.hpp',['../center_of_mass_8hpp.html',1,'']]], - ['centroid_156',['Centroid',['../classnc_1_1image_processing_1_1_centroid.html#a3b97e4ddc31b85eb8c3f84b398429a35',1,'nc::imageProcessing::Centroid::Centroid()=default'],['../classnc_1_1image_processing_1_1_centroid.html#a59d0af7acae8d24d29ccb372440aed22',1,'nc::imageProcessing::Centroid::Centroid(const Cluster< dtype > &inCluster)'],['../classnc_1_1image_processing_1_1_centroid.html',1,'nc::imageProcessing::Centroid< dtype >']]], - ['centroid_2ehpp_157',['Centroid.hpp',['../_centroid_8hpp.html',1,'']]], - ['centroidclusters_158',['centroidClusters',['../namespacenc_1_1image_processing.html#adbb987932dd69ec19029228e065c6603',1,'nc::imageProcessing']]], - ['centroidclusters_2ehpp_159',['centroidClusters.hpp',['../centroid_clusters_8hpp.html',1,'']]], - ['chebyshev_5ft_160',['chebyshev_t',['../namespacenc_1_1polynomial.html#afc70c903be3c216cf6215b76c89fecc0',1,'nc::polynomial::chebyshev_t(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#a0ce5634d805736db2082358497bac2f4',1,'nc::polynomial::chebyshev_t(uint32 n, const NdArray< dtype > &inArrayX)']]], - ['chebyshev_5ft_2ehpp_161',['chebyshev_t.hpp',['../chebyshev__t_8hpp.html',1,'']]], - ['chebyshev_5fu_162',['chebyshev_u',['../namespacenc_1_1polynomial.html#a1e0f56b8366b1f83b48e30e7bb04c937',1,'nc::polynomial::chebyshev_u(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#ae03d7859d449ee3fa17f2d09bb2b5638',1,'nc::polynomial::chebyshev_u(uint32 n, const NdArray< dtype > &inArrayX)']]], - ['chebyshev_5fu_2ehpp_163',['chebyshev_u.hpp',['../chebyshev__u_8hpp.html',1,'']]], - ['chisquare_164',['chiSquare',['../namespacenc_1_1random.html#abb480e9a17b71ea09ef0f043c081e9ff',1,'nc::random::chiSquare(dtype inDof)'],['../namespacenc_1_1random.html#a329370aed893f0e10a8050520cf0bbd4',1,'nc::random::chiSquare(const Shape &inShape, dtype inDof)']]], - ['chisquare_2ehpp_165',['chiSquare.hpp',['../chi_square_8hpp.html',1,'']]], - ['choice_166',['choice',['../namespacenc_1_1random.html#a7fcf28e4b1a2b015b1099986c5202877',1,'nc::random::choice(const NdArray< dtype > &inArray, uint32 inNum, bool replace=true)'],['../namespacenc_1_1random.html#ad60ec32743642bd0540fec0076043fed',1,'nc::random::choice(const NdArray< dtype > &inArray)']]], - ['choice_2ehpp_167',['choice.hpp',['../choice_8hpp.html',1,'']]], - ['cholesky_168',['cholesky',['../namespacenc_1_1linalg.html#ac2d27e58dd0f082ef5a422d545699d19',1,'nc::linalg']]], - ['cholesky_2ehpp_169',['cholesky.hpp',['../cholesky_8hpp.html',1,'']]], - ['chronoclock_170',['ChronoClock',['../classnc_1_1_timer.html#a968ad8ca046ae73671e211e644682c8d',1,'nc::Timer']]], - ['clampmagnitude_171',['clampMagnitude',['../classnc_1_1_vec2.html#abb0f6f8cacc680a464425d908e1e55cc',1,'nc::Vec2::clampMagnitude()'],['../classnc_1_1_vec3.html#a4f3cfcbd67a402820cc8e0576dccd2e4',1,'nc::Vec3::clampMagnitude()']]], - ['clip_172',['clip',['../namespacenc.html#a5200696e06dadf4eca2f0d7332ed4af1',1,'nc::clip(dtype inValue, dtype inMinValue, dtype inMaxValue)'],['../namespacenc.html#af82b46f44ea7fad5bbd8ef9acf2499c3',1,'nc::clip(const NdArray< dtype > &inArray, dtype inMinValue, dtype inMaxValue)'],['../classnc_1_1_nd_array.html#a5a7fa82bdf3f34fcd3cc1dd2169c6c6f',1,'nc::NdArray::clip()']]], - ['clip_2ehpp_173',['clip.hpp',['../clip_8hpp.html',1,'']]], - ['cluster_174',['Cluster',['../classnc_1_1image_processing_1_1_cluster.html#a9c84aca9710bec5c721fd6a9f94182c3',1,'nc::imageProcessing::Cluster::Cluster()=default'],['../classnc_1_1image_processing_1_1_cluster.html#a73ce20625b5ca5d9e0d872cc8ad885dc',1,'nc::imageProcessing::Cluster::Cluster(uint32 inClusterId) noexcept'],['../classnc_1_1image_processing_1_1_cluster.html',1,'nc::imageProcessing::Cluster< dtype >']]], - ['cluster_2ehpp_175',['Cluster.hpp',['../_cluster_8hpp.html',1,'']]], - ['clusterid_176',['clusterId',['../classnc_1_1image_processing_1_1_cluster.html#abcc9f76b1d903546a3604ef87795d37e',1,'nc::imageProcessing::Cluster::clusterId()'],['../classnc_1_1image_processing_1_1_pixel.html#ac22936e8b5b80a1c557faaf9722b3183',1,'nc::imageProcessing::Pixel::clusterId()']]], - ['clustermaker_177',['ClusterMaker',['../classnc_1_1image_processing_1_1_cluster_maker.html#a17c7a9f6260f7d6d0aea002b7e5e6ae6',1,'nc::imageProcessing::ClusterMaker::ClusterMaker()'],['../classnc_1_1image_processing_1_1_cluster_maker.html',1,'nc::imageProcessing::ClusterMaker< dtype >']]], - ['clustermaker_2ehpp_178',['ClusterMaker.hpp',['../_cluster_maker_8hpp.html',1,'']]], - ['clusterpixels_179',['clusterPixels',['../namespacenc_1_1image_processing.html#a9b0730e1067dc755ee1fa2ecf280c14f',1,'nc::imageProcessing']]], - ['clusterpixels_2ehpp_180',['clusterPixels.hpp',['../cluster_pixels_8hpp.html',1,'']]], - ['cnr_181',['cnr',['../namespacenc_1_1special.html#a8249c674798e782f98a90942818ab395',1,'nc::special']]], - ['cnr_2ehpp_182',['cnr.hpp',['../cnr_8hpp.html',1,'']]], - ['coefficients_183',['coefficients',['../classnc_1_1polynomial_1_1_poly1d.html#abc31b5e093fd3ce5b2c14eade8d346a9',1,'nc::polynomial::Poly1d']]], - ['col_184',['col',['../classnc_1_1image_processing_1_1_centroid.html#a4ef0e9b2faa4999af5c3597a60140d6c',1,'nc::imageProcessing::Centroid::col()'],['../classnc_1_1image_processing_1_1_pixel.html#a6749c7a5513e2b7ee5c027aef104b269',1,'nc::imageProcessing::Pixel::col()']]], - ['col_185',['COL',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84aa44a065875f5d66d41474bb9bfb0ce05',1,'nc']]], - ['colbegin_186',['colbegin',['../classnc_1_1_nd_array.html#a41f363682d797ed0ed236cf91bd644f1',1,'nc::NdArray::colbegin() noexcept'],['../classnc_1_1_nd_array.html#a3730d4ac599c06e0e25ac7838f53240b',1,'nc::NdArray::colbegin(size_type inCol)'],['../classnc_1_1_nd_array.html#ab6bf02841ec667f5bb4266da569c99fc',1,'nc::NdArray::colbegin() const noexcept'],['../classnc_1_1_nd_array.html#acadf6ded9a6eb2638d975da9dbbfe38c',1,'nc::NdArray::colbegin(size_type inCol) const']]], - ['colend_187',['colend',['../classnc_1_1_nd_array.html#a6501fd771b4dcf1fb49defeee43a47cc',1,'nc::NdArray::colend() noexcept'],['../classnc_1_1_nd_array.html#ae611e2ecc5bae6035d0de4d48f5de239',1,'nc::NdArray::colend(size_type inCol)'],['../classnc_1_1_nd_array.html#ac1297463b545ecfd72d22549ce0db02a',1,'nc::NdArray::colend() const noexcept'],['../classnc_1_1_nd_array.html#a97f4fdf4d1a588662733af2bc7e63aaa',1,'nc::NdArray::colend(size_type inCol) const']]], - ['colmax_188',['colMax',['../classnc_1_1image_processing_1_1_cluster.html#a8c884e5e55d41c09165bca85446edb1f',1,'nc::imageProcessing::Cluster']]], - ['colmin_189',['colMin',['../classnc_1_1image_processing_1_1_cluster.html#a27734d0fa45c7440e3018fa36c6633f9',1,'nc::imageProcessing::Cluster']]], - ['cols_190',['cols',['../classnc_1_1_shape.html#aae1a3c997648aacaefb60d0e6d0bf10d',1,'nc::Shape']]], - ['column_191',['column',['../classnc_1_1_nd_array.html#a4dc9d45ee849274808d850deeba451dd',1,'nc::NdArray']]], - ['column_5fiterator_192',['column_iterator',['../classnc_1_1_nd_array.html#a379e1e1ed2a61de6aa44226679620d47',1,'nc::NdArray']]], - ['column_5fstack_193',['column_stack',['../namespacenc.html#a940bbaf9f760ce2d85119beb4a5c23f2',1,'nc']]], - ['column_5fstack_2ehpp_194',['column_stack.hpp',['../column__stack_8hpp.html',1,'']]], - ['comp_5fellint_5f1_195',['comp_ellint_1',['../namespacenc_1_1special.html#a445930bd5caceb59104bc466c55d479a',1,'nc::special::comp_ellint_1(const NdArray< dtype > &inArrayK)'],['../namespacenc_1_1special.html#a3b24e9dde5d68f19d8a29de419e32024',1,'nc::special::comp_ellint_1(dtype inK)']]], - ['comp_5fellint_5f1_2ehpp_196',['comp_ellint_1.hpp',['../comp__ellint__1_8hpp.html',1,'']]], - ['comp_5fellint_5f2_197',['comp_ellint_2',['../namespacenc_1_1special.html#abb6b67ccb2a8ea054c188d82f3a67013',1,'nc::special::comp_ellint_2(const NdArray< dtype > &inArrayK)'],['../namespacenc_1_1special.html#abfcffce97bdc9114b78a4c6d06956fc5',1,'nc::special::comp_ellint_2(dtype inK)']]], - ['comp_5fellint_5f2_2ehpp_198',['comp_ellint_2.hpp',['../comp__ellint__2_8hpp.html',1,'']]], - ['comp_5fellint_5f3_199',['comp_ellint_3',['../namespacenc_1_1special.html#a40e29e793c7c7ee437f242a8cc7e8e26',1,'nc::special::comp_ellint_3(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayV)'],['../namespacenc_1_1special.html#a8c90b0cd0de06a5e789e3b9f8b0a1243',1,'nc::special::comp_ellint_3(dtype1 inK, dtype2 inV)']]], - ['comp_5fellint_5f3_2ehpp_200',['comp_ellint_3.hpp',['../comp__ellint__3_8hpp.html',1,'']]], - ['compiler_20flags_201',['Compiler Flags',['../md__mnt_c__github__num_cpp_docs_markdown__compiler_flags.html',1,'']]], - ['compilerflags_2emd_202',['CompilerFlags.md',['../_compiler_flags_8md.html',1,'']]], - ['complementarymedianfilter_203',['complementaryMedianFilter',['../namespacenc_1_1filter.html#a2343ac38b1ec7c4cbde82a3fe20b4c21',1,'nc::filter']]], - ['complementarymedianfilter_2ehpp_204',['complementaryMedianFilter.hpp',['../complementary_median_filter_8hpp.html',1,'']]], - ['complementarymedianfilter1d_205',['complementaryMedianFilter1d',['../namespacenc_1_1filter.html#aed171f8ad8a79d99c13158c909ac4017',1,'nc::filter']]], - ['complementarymedianfilter1d_2ehpp_206',['complementaryMedianFilter1d.hpp',['../complementary_median_filter1d_8hpp.html',1,'']]], - ['complex_207',['complex',['../namespacenc.html#a56639fcc468435514861ce0e5059d82f',1,'nc::complex(dtype inReal)'],['../namespacenc.html#a2e653b99a0f26149fe399ebed1fc949e',1,'nc::complex(dtype inReal, dtype inImag)'],['../namespacenc.html#ab84a62b7de04ef6f69870e51f5dd8d00',1,'nc::complex(const NdArray< dtype > &inReal)'],['../namespacenc.html#a1d8b87baeef70163d94b40c96759ecc0',1,'nc::complex(const NdArray< dtype > &inReal, const NdArray< dtype > &inImag)']]], - ['complex_2ehpp_208',['complex.hpp',['../complex_8hpp.html',1,'']]], - ['complex_5fcast_209',['complex_cast',['../namespacenc.html#ad639d68db9e1b3ea9acc08efe4bad20e',1,'nc']]], - ['concatenate_210',['concatenate',['../namespacenc.html#a027070169f1750a74315d07c5bbdfb03',1,'nc']]], - ['concatenate_2ehpp_211',['concatenate.hpp',['../concatenate_8hpp.html',1,'']]], - ['conditional_5fno_5fexcept_212',['CONDITIONAL_NO_EXCEPT',['../_stl_algorithms_8hpp.html#a328745b2b79b264770ec2783aa489f26',1,'StlAlgorithms.hpp']]], - ['conj_213',['conj',['../namespacenc.html#a26e9df3c46d4f782d04c8d35881aad80',1,'nc::conj(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a0387ae5584e72894ae9e690eba21e26b',1,'nc::conj(const std::complex< dtype > &inValue)']]], - ['conj_2ehpp_214',['conj.hpp',['../conj_8hpp.html',1,'']]], - ['conjugate_215',['conjugate',['../classnc_1_1rotations_1_1_quaternion.html#ade406544e8360506bb77102d17b14e61',1,'nc::rotations::Quaternion']]], - ['const_5fcolumn_5fiterator_216',['const_column_iterator',['../classnc_1_1_nd_array.html#a1307cf472f722baa8850200dcb7a3a89',1,'nc::NdArray']]], - ['const_5fiterator_217',['const_iterator',['../classnc_1_1_data_cube.html#a1ea7b9bd30731c3325545fbcd2678761',1,'nc::DataCube::const_iterator()'],['../classnc_1_1image_processing_1_1_cluster.html#a3b344c255dfcfcf18e0fc9f1e84979ae',1,'nc::imageProcessing::Cluster::const_iterator()'],['../classnc_1_1_nd_array.html#a49deeee0db98eae1c16ac6bca6fa6f31',1,'nc::NdArray::const_iterator()'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a870aeb2f713b4efba22a2f978704c215',1,'nc::imageProcessing::ClusterMaker::const_iterator()']]], - ['const_5fpointer_218',['const_pointer',['../classnc_1_1_nd_array.html#a94982f81d8aa8c8a72abe0327f22b4dd',1,'nc::NdArray']]], - ['const_5freference_219',['const_reference',['../classnc_1_1_nd_array.html#a2e9001eb3a7fb5b44f6400b3cc3b3222',1,'nc::NdArray']]], - ['const_5freverse_5fcolumn_5fiterator_220',['const_reverse_column_iterator',['../classnc_1_1_nd_array.html#aa4f80e21b4b0f30ff98d1b90ae4fd70d',1,'nc::NdArray']]], - ['const_5freverse_5fiterator_221',['const_reverse_iterator',['../classnc_1_1_nd_array.html#a6de6f2ef3b2519edd272623a9681b527',1,'nc::NdArray']]], - ['constant_222',['CONSTANT',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6a8d6b5cada83510220f59e00ce86d4d92',1,'nc::filter']]], - ['constant1d_223',['constant1d',['../namespacenc_1_1filter_1_1boundary.html#a09c2e0a7f9ff3c1fbbbee0136d80a2e0',1,'nc::filter::boundary']]], - ['constant1d_2ehpp_224',['constant1d.hpp',['../constant1d_8hpp.html',1,'']]], - ['constant2d_225',['constant2d',['../namespacenc_1_1filter_1_1boundary.html#a0e0bd2ad1d6ac1b1d248175b9bc422f6',1,'nc::filter::boundary']]], - ['constant2d_2ehpp_226',['constant2d.hpp',['../constant2d_8hpp.html',1,'']]], - ['constants_2ehpp_227',['Constants.hpp',['../_constants_8hpp.html',1,'']]], - ['contains_228',['contains',['../namespacenc.html#a89349379637971764e6efe28ad8c1848',1,'nc::contains()'],['../classnc_1_1_nd_array.html#ad0c493a734dbca9f622d0f7ca6dffbf4',1,'nc::NdArray::contains()']]], - ['contains_2ehpp_229',['contains.hpp',['../contains_8hpp.html',1,'']]], - ['convolve_230',['convolve',['../namespacenc_1_1filter.html#abc4c77c759de3cd79f3fc02b7461d971',1,'nc::filter']]], - ['convolve_2ehpp_231',['convolve.hpp',['../convolve_8hpp.html',1,'']]], - ['convolve1d_232',['convolve1d',['../namespacenc_1_1filter.html#a21d48fecf984290cb5a4388d50371b13',1,'nc::filter']]], - ['convolve1d_2ehpp_233',['convolve1d.hpp',['../convolve1d_8hpp.html',1,'']]], - ['coordinate_234',['Coordinate',['../classnc_1_1coordinates_1_1_coordinate.html#a0f541169a4c318a5cf4fd0a50a4c2013',1,'nc::coordinates::Coordinate::Coordinate()=default'],['../classnc_1_1coordinates_1_1_coordinate.html#a983a167d97af973947f76474ab299ab8',1,'nc::coordinates::Coordinate::Coordinate(double inRaDegrees, double inDecDegrees)'],['../classnc_1_1coordinates_1_1_coordinate.html#a68eafc66dfeb8551fa7d8960f116be83',1,'nc::coordinates::Coordinate::Coordinate(uint8 inRaHours, uint8 inRaMinutes, double inRaSeconds, Sign inSign, uint8 inDecDegreesWhole, uint8 inDecMinutes, double inDecSeconds)'],['../classnc_1_1coordinates_1_1_coordinate.html#a7cf9e8138023ced7cfcb071299018fd5',1,'nc::coordinates::Coordinate::Coordinate(const RA &inRA, const Dec &inDec) noexcept'],['../classnc_1_1coordinates_1_1_coordinate.html#aa023b8b0e74159909e99aabcf778c57f',1,'nc::coordinates::Coordinate::Coordinate(double inX, double inY, double inZ) noexcept'],['../classnc_1_1coordinates_1_1_coordinate.html#a35b32fa280c920d0b528472f7726a03d',1,'nc::coordinates::Coordinate::Coordinate(const NdArray< double > &inCartesianVector)'],['../classnc_1_1coordinates_1_1_coordinate.html',1,'nc::coordinates::Coordinate']]], - ['coordinate_2ehpp_235',['Coordinate.hpp',['../_coordinate_8hpp.html',1,'']]], - ['coordinates_2ehpp_236',['Coordinates.hpp',['../_coordinates_8hpp.html',1,'']]], - ['copy_237',['copy',['../classnc_1_1_nd_array.html#a1f2d2aacc254129f36b0557a661e6664',1,'nc::NdArray::copy()'],['../namespacenc.html#a9bbe10d41fdbd74a6254bad44c7c7cf6',1,'nc::copy()'],['../namespacenc_1_1stl__algorithms.html#ae62a4e197ec640aacea520220bd27cef',1,'nc::stl_algorithms::copy()']]], - ['copy_2ehpp_238',['copy.hpp',['../copy_8hpp.html',1,'']]], - ['copysign_239',['copySign',['../namespacenc.html#a9e08e770fd2283734390ab631edc250d',1,'nc']]], - ['copysign_2ehpp_240',['copySign.hpp',['../copy_sign_8hpp.html',1,'']]], - ['copyto_241',['copyto',['../namespacenc.html#af8eca852439098c1fff96384d88d82dd',1,'nc']]], - ['copyto_2ehpp_242',['copyto.hpp',['../copyto_8hpp.html',1,'']]], - ['core_2ehpp_243',['Core.hpp',['../_core_8hpp.html',1,'']]], - ['cos_244',['cos',['../namespacenc.html#af208ae28fe0df17392ca128188cbcd73',1,'nc::cos(const NdArray< dtype > &inArray)'],['../namespacenc.html#a736de91eb8f79bfaf4dc92d7161f1c87',1,'nc::cos(dtype inValue) noexcept']]], - ['cos_2ehpp_245',['cos.hpp',['../cos_8hpp.html',1,'']]], - ['cosh_246',['cosh',['../namespacenc.html#a520e0290bb667b43a9f494b3858b5f17',1,'nc::cosh(const NdArray< dtype > &inArray)'],['../namespacenc.html#abb07133a1f54b24a4a4986eefb5eda85',1,'nc::cosh(dtype inValue) noexcept']]], - ['cosh_2ehpp_247',['cosh.hpp',['../cosh_8hpp.html',1,'']]], - ['count_248',['count',['../namespacenc_1_1stl__algorithms.html#a1fa02155befc0c39a853e66f6df26745',1,'nc::stl_algorithms']]], - ['count_5fnonzero_249',['count_nonzero',['../namespacenc.html#aebb0dfe3637c07f6a9f6e4f08cacf515',1,'nc']]], - ['count_5fnonzero_2ehpp_250',['count_nonzero.hpp',['../count__nonzero_8hpp.html',1,'']]], - ['crbegin_251',['crbegin',['../classnc_1_1_nd_array.html#a95cbc4440ac1e139642a08cbd075dafc',1,'nc::NdArray::crbegin() const noexcept'],['../classnc_1_1_nd_array.html#af6b2581fae90a5c67e87df6a82ea13c5',1,'nc::NdArray::crbegin(size_type inRow) const']]], - ['crcolbegin_252',['crcolbegin',['../classnc_1_1_nd_array.html#a35883ec844477b9bca2597939dd99c2a',1,'nc::NdArray::crcolbegin() const noexcept'],['../classnc_1_1_nd_array.html#a8afdb68c11124e1fe0309204f3996435',1,'nc::NdArray::crcolbegin(size_type inCol) const']]], - ['crcolend_253',['crcolend',['../classnc_1_1_nd_array.html#a55e5d41795f14f7f2aa256ba0f4bb676',1,'nc::NdArray::crcolend() const noexcept'],['../classnc_1_1_nd_array.html#a35b66f060b1ed99a6fb5247581fcb8fc',1,'nc::NdArray::crcolend(size_type inCol) const']]], - ['crend_254',['crend',['../classnc_1_1_nd_array.html#ac5d1c900c4db4263d1bf799ac3551ed6',1,'nc::NdArray::crend() const noexcept'],['../classnc_1_1_nd_array.html#af3b4c48e3328a8dd22eedd27c225aeb5',1,'nc::NdArray::crend(size_type inRow) const']]], - ['cross_255',['cross',['../namespacenc.html#a4d1ed581965ed53090824290def38565',1,'nc::cross()'],['../classnc_1_1_vec3.html#af8173f6e61e9a63beae3092fd8dc4378',1,'nc::Vec3::cross()']]], - ['cross_2ehpp_256',['cross.hpp',['../cross_8hpp.html',1,'']]], - ['cslice_257',['cSlice',['../classnc_1_1_nd_array.html#a29eabba849b35a3095cd341fa1c7b123',1,'nc::NdArray']]], - ['cube_258',['cube',['../namespacenc.html#a5899ccef8410243438debea3d8296df6',1,'nc::cube(dtype inValue) noexcept'],['../namespacenc.html#a224d96b41af957c782c02f1cb25e66fd',1,'nc::cube(const NdArray< dtype > &inArray)'],['../namespacenc_1_1utils.html#a46e88717d4d32003bb449fd5cefd401c',1,'nc::utils::cube()']]], - ['cumprod_259',['cumprod',['../classnc_1_1_nd_array.html#a75a231dec87e18370e9731214983858e',1,'nc::NdArray::cumprod()'],['../namespacenc.html#aafc4846f2f7956841d356060c9689cba',1,'nc::cumprod()']]], - ['cumprod_2ehpp_260',['cumprod.hpp',['../cumprod_8hpp.html',1,'']]], - ['cumsum_261',['cumsum',['../classnc_1_1_nd_array.html#a4baa93f2a125d7665f3cdfd8d96d3acc',1,'nc::NdArray::cumsum()'],['../namespacenc.html#a2abc8c4a18823234e3baec64d10c0dcd',1,'nc::cumsum()']]], - ['cumsum_2ehpp_262',['cumsum.hpp',['../cumsum_8hpp.html',1,'']]], - ['cyclic_5fhankel_5f1_263',['cyclic_hankel_1',['../namespacenc_1_1special.html#af5dd42de33ec77dda47dd089561895d5',1,'nc::special::cyclic_hankel_1(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#ae7053cd6eafb59a62ba6ede63aac6f90',1,'nc::special::cyclic_hankel_1(dtype1 inV, const NdArray< dtype2 > &inX)']]], - ['cyclic_5fhankel_5f1_2ehpp_264',['cyclic_hankel_1.hpp',['../cyclic__hankel__1_8hpp.html',1,'']]], - ['cyclic_5fhankel_5f2_265',['cyclic_hankel_2',['../namespacenc_1_1special.html#a388472a49e89f21b3eb144368fe55664',1,'nc::special::cyclic_hankel_2(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a8e3b27238d1cae20e4ee071766549c5d',1,'nc::special::cyclic_hankel_2(dtype1 inV, const NdArray< dtype2 > &inX)']]], - ['cyclic_5fhankel_5f2_2ehpp_266',['cyclic_hankel_2.hpp',['../cyclic__hankel__2_8hpp.html',1,'']]], - ['shape_2ehpp_267',['Shape.hpp',['../_core_2_shape_8hpp.html',1,'']]] + ['c_147',['c',['../namespacenc_1_1constants.html#ac3fc62713ed109e451648c67faab7581',1,'nc::constants']]], + ['calculateparity_148',['calculateParity',['../namespacenc_1_1edac_1_1detail.html#ad3215e8486eb3a544a483e5234c856d7',1,'nc::edac::detail::calculateParity(const std::bitset< DataBits > &data) noexcept'],['../namespacenc_1_1edac_1_1detail.html#abde37c852253de171988da5e4b775273',1,'nc::edac::detail::calculateParity(const boost::dynamic_bitset<> &data) noexcept'],['../namespacenc_1_1edac_1_1detail.html#aea349d7b4d28ca91b85bcb3a2823c145',1,'nc::edac::detail::calculateParity(const std::bitset< DataBits > &data, IntType parityBit)']]], + ['cauchy_149',['cauchy',['../namespacenc_1_1random.html#aa72b221b82940e126a4c740ee55b269b',1,'nc::random::cauchy(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a61dc9fcfaee6e2a74e3f2e1f0e9c039b',1,'nc::random::cauchy(const Shape &inShape, dtype inMean=0, dtype inSigma=1)']]], + ['cauchy_2ehpp_150',['cauchy.hpp',['../cauchy_8hpp.html',1,'']]], + ['cbegin_151',['cbegin',['../classnc_1_1_data_cube.html#adee7aa24a04d84f83f4c76ef8dcec974',1,'nc::DataCube::cbegin()'],['../classnc_1_1_nd_array.html#a4a3d1f968c924a4dc74cd8b617d30df6',1,'nc::NdArray::cbegin(size_type inRow) const'],['../classnc_1_1_nd_array.html#a0bee49339bdc4d7edbeb5efa73133cc3',1,'nc::NdArray::cbegin() const noexcept']]], + ['cbrt_152',['cbrt',['../namespacenc.html#ae0f91253a3818ac7a12a9d5120ee9a14',1,'nc::cbrt(const NdArray< dtype > &inArray)'],['../namespacenc.html#a21de0caa1ff8e9e7baed8a8a57f7bcab',1,'nc::cbrt(dtype inValue) noexcept']]], + ['cbrt_2ehpp_153',['cbrt.hpp',['../cbrt_8hpp.html',1,'']]], + ['ccolbegin_154',['ccolbegin',['../classnc_1_1_nd_array.html#a25c7145679e41227023ad6de4ab5cd18',1,'nc::NdArray::ccolbegin() const noexcept'],['../classnc_1_1_nd_array.html#a1252a696593c510d506c1bca8bd65c51',1,'nc::NdArray::ccolbegin(size_type inCol) const']]], + ['ccolend_155',['ccolend',['../classnc_1_1_nd_array.html#a4a493445c10ed3c299632bf8c7077cfb',1,'nc::NdArray::ccolend(size_type inCol) const'],['../classnc_1_1_nd_array.html#ad2833ea5479c37de114bf52afff04a20',1,'nc::NdArray::ccolend() const noexcept']]], + ['ceil_156',['ceil',['../namespacenc.html#a375f83bc366e3b26842a03b9688b8a33',1,'nc::ceil(const NdArray< dtype > &inArray)'],['../namespacenc.html#a291189b2c2bc35a608b393ab1c06e84a',1,'nc::ceil(dtype inValue) noexcept']]], + ['ceil_2ehpp_157',['ceil.hpp',['../ceil_8hpp.html',1,'']]], + ['cend_158',['cend',['../classnc_1_1_nd_array.html#a4da6aaa43b6074a4353328a8047992f6',1,'nc::NdArray::cend(size_type inRow) const'],['../classnc_1_1_nd_array.html#aa16bc96e4bbafbc8a06743f3e4a10a6a',1,'nc::NdArray::cend() const noexcept'],['../classnc_1_1_data_cube.html#aca3c0041f121ed92d47d1f2873f713e4',1,'nc::DataCube::cend()']]], + ['centerofmass_159',['centerOfMass',['../namespacenc.html#a830888da11b33ea36bf4fc580d8c4757',1,'nc']]], + ['centerofmass_2ehpp_160',['centerOfMass.hpp',['../center_of_mass_8hpp.html',1,'']]], + ['centroid_161',['Centroid',['../classnc_1_1image_processing_1_1_centroid.html#a59d0af7acae8d24d29ccb372440aed22',1,'nc::imageProcessing::Centroid::Centroid(const Cluster< dtype > &inCluster)'],['../classnc_1_1image_processing_1_1_centroid.html#a3b97e4ddc31b85eb8c3f84b398429a35',1,'nc::imageProcessing::Centroid::Centroid()=default'],['../classnc_1_1image_processing_1_1_centroid.html',1,'nc::imageProcessing::Centroid< dtype >']]], + ['centroid_2ehpp_162',['Centroid.hpp',['../_centroid_8hpp.html',1,'']]], + ['centroidclusters_163',['centroidClusters',['../namespacenc_1_1image_processing.html#adbb987932dd69ec19029228e065c6603',1,'nc::imageProcessing']]], + ['centroidclusters_2ehpp_164',['centroidClusters.hpp',['../centroid_clusters_8hpp.html',1,'']]], + ['chebyshev_5ft_165',['chebyshev_t',['../namespacenc_1_1polynomial.html#a0ce5634d805736db2082358497bac2f4',1,'nc::polynomial::chebyshev_t(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#afc70c903be3c216cf6215b76c89fecc0',1,'nc::polynomial::chebyshev_t(uint32 n, dtype x)']]], + ['chebyshev_5ft_2ehpp_166',['chebyshev_t.hpp',['../chebyshev__t_8hpp.html',1,'']]], + ['chebyshev_5fu_167',['chebyshev_u',['../namespacenc_1_1polynomial.html#ae03d7859d449ee3fa17f2d09bb2b5638',1,'nc::polynomial::chebyshev_u(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a1e0f56b8366b1f83b48e30e7bb04c937',1,'nc::polynomial::chebyshev_u(uint32 n, dtype x)']]], + ['chebyshev_5fu_2ehpp_168',['chebyshev_u.hpp',['../chebyshev__u_8hpp.html',1,'']]], + ['checkbitsconsistent_169',['checkBitsConsistent',['../namespacenc_1_1edac_1_1detail.html#af386b23445a4942453c69cff80ee0e20',1,'nc::edac::detail']]], + ['chisquare_170',['chiSquare',['../namespacenc_1_1random.html#abb480e9a17b71ea09ef0f043c081e9ff',1,'nc::random::chiSquare(dtype inDof)'],['../namespacenc_1_1random.html#a329370aed893f0e10a8050520cf0bbd4',1,'nc::random::chiSquare(const Shape &inShape, dtype inDof)']]], + ['chisquare_2ehpp_171',['chiSquare.hpp',['../chi_square_8hpp.html',1,'']]], + ['choice_172',['choice',['../namespacenc_1_1random.html#ad60ec32743642bd0540fec0076043fed',1,'nc::random::choice(const NdArray< dtype > &inArray)'],['../namespacenc_1_1random.html#a7fcf28e4b1a2b015b1099986c5202877',1,'nc::random::choice(const NdArray< dtype > &inArray, uint32 inNum, bool replace=true)']]], + ['choice_2ehpp_173',['choice.hpp',['../choice_8hpp.html',1,'']]], + ['cholesky_174',['cholesky',['../namespacenc_1_1linalg.html#ac2d27e58dd0f082ef5a422d545699d19',1,'nc::linalg']]], + ['cholesky_2ehpp_175',['cholesky.hpp',['../cholesky_8hpp.html',1,'']]], + ['chronoclock_176',['ChronoClock',['../classnc_1_1_timer.html#a968ad8ca046ae73671e211e644682c8d',1,'nc::Timer']]], + ['clampmagnitude_177',['clampMagnitude',['../classnc_1_1_vec3.html#a4f3cfcbd67a402820cc8e0576dccd2e4',1,'nc::Vec3::clampMagnitude()'],['../classnc_1_1_vec2.html#abb0f6f8cacc680a464425d908e1e55cc',1,'nc::Vec2::clampMagnitude()']]], + ['clip_178',['clip',['../namespacenc.html#a5200696e06dadf4eca2f0d7332ed4af1',1,'nc::clip(dtype inValue, dtype inMinValue, dtype inMaxValue)'],['../namespacenc.html#af82b46f44ea7fad5bbd8ef9acf2499c3',1,'nc::clip(const NdArray< dtype > &inArray, dtype inMinValue, dtype inMaxValue)'],['../classnc_1_1_nd_array.html#a5a7fa82bdf3f34fcd3cc1dd2169c6c6f',1,'nc::NdArray::clip()']]], + ['clip_2ehpp_179',['clip.hpp',['../clip_8hpp.html',1,'']]], + ['cluster_180',['Cluster',['../classnc_1_1image_processing_1_1_cluster.html#a73ce20625b5ca5d9e0d872cc8ad885dc',1,'nc::imageProcessing::Cluster::Cluster(uint32 inClusterId) noexcept'],['../classnc_1_1image_processing_1_1_cluster.html#a9c84aca9710bec5c721fd6a9f94182c3',1,'nc::imageProcessing::Cluster::Cluster()=default'],['../classnc_1_1image_processing_1_1_cluster.html',1,'nc::imageProcessing::Cluster< dtype >']]], + ['cluster_2ehpp_181',['Cluster.hpp',['../_cluster_8hpp.html',1,'']]], + ['clusterid_182',['clusterId',['../classnc_1_1image_processing_1_1_cluster.html#abcc9f76b1d903546a3604ef87795d37e',1,'nc::imageProcessing::Cluster::clusterId()'],['../classnc_1_1image_processing_1_1_pixel.html#ac22936e8b5b80a1c557faaf9722b3183',1,'nc::imageProcessing::Pixel::clusterId()']]], + ['clustermaker_183',['ClusterMaker',['../classnc_1_1image_processing_1_1_cluster_maker.html#a17c7a9f6260f7d6d0aea002b7e5e6ae6',1,'nc::imageProcessing::ClusterMaker::ClusterMaker()'],['../classnc_1_1image_processing_1_1_cluster_maker.html',1,'nc::imageProcessing::ClusterMaker< dtype >']]], + ['clustermaker_2ehpp_184',['ClusterMaker.hpp',['../_cluster_maker_8hpp.html',1,'']]], + ['clusterpixels_185',['clusterPixels',['../namespacenc_1_1image_processing.html#a9b0730e1067dc755ee1fa2ecf280c14f',1,'nc::imageProcessing']]], + ['clusterpixels_2ehpp_186',['clusterPixels.hpp',['../cluster_pixels_8hpp.html',1,'']]], + ['cnr_187',['cnr',['../namespacenc_1_1special.html#a8249c674798e782f98a90942818ab395',1,'nc::special']]], + ['cnr_2ehpp_188',['cnr.hpp',['../cnr_8hpp.html',1,'']]], + ['coefficients_189',['coefficients',['../classnc_1_1polynomial_1_1_poly1d.html#abc31b5e093fd3ce5b2c14eade8d346a9',1,'nc::polynomial::Poly1d']]], + ['col_190',['COL',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84aa44a065875f5d66d41474bb9bfb0ce05',1,'nc']]], + ['col_191',['col',['../classnc_1_1image_processing_1_1_pixel.html#a6749c7a5513e2b7ee5c027aef104b269',1,'nc::imageProcessing::Pixel::col()'],['../classnc_1_1image_processing_1_1_centroid.html#a4ef0e9b2faa4999af5c3597a60140d6c',1,'nc::imageProcessing::Centroid::col()']]], + ['colbegin_192',['colbegin',['../classnc_1_1_nd_array.html#a41f363682d797ed0ed236cf91bd644f1',1,'nc::NdArray::colbegin() noexcept'],['../classnc_1_1_nd_array.html#a3730d4ac599c06e0e25ac7838f53240b',1,'nc::NdArray::colbegin(size_type inCol)'],['../classnc_1_1_nd_array.html#ab6bf02841ec667f5bb4266da569c99fc',1,'nc::NdArray::colbegin() const noexcept'],['../classnc_1_1_nd_array.html#acadf6ded9a6eb2638d975da9dbbfe38c',1,'nc::NdArray::colbegin(size_type inCol) const']]], + ['colend_193',['colend',['../classnc_1_1_nd_array.html#ae611e2ecc5bae6035d0de4d48f5de239',1,'nc::NdArray::colend(size_type inCol)'],['../classnc_1_1_nd_array.html#ac1297463b545ecfd72d22549ce0db02a',1,'nc::NdArray::colend() const noexcept'],['../classnc_1_1_nd_array.html#a97f4fdf4d1a588662733af2bc7e63aaa',1,'nc::NdArray::colend(size_type inCol) const'],['../classnc_1_1_nd_array.html#a6501fd771b4dcf1fb49defeee43a47cc',1,'nc::NdArray::colend() noexcept']]], + ['colmax_194',['colMax',['../classnc_1_1image_processing_1_1_cluster.html#a8c884e5e55d41c09165bca85446edb1f',1,'nc::imageProcessing::Cluster']]], + ['colmin_195',['colMin',['../classnc_1_1image_processing_1_1_cluster.html#a27734d0fa45c7440e3018fa36c6633f9',1,'nc::imageProcessing::Cluster']]], + ['cols_196',['cols',['../classnc_1_1_shape.html#aae1a3c997648aacaefb60d0e6d0bf10d',1,'nc::Shape']]], + ['column_197',['column',['../classnc_1_1_nd_array.html#a4dc9d45ee849274808d850deeba451dd',1,'nc::NdArray']]], + ['column_5fiterator_198',['column_iterator',['../classnc_1_1_nd_array.html#a379e1e1ed2a61de6aa44226679620d47',1,'nc::NdArray']]], + ['column_5fstack_199',['column_stack',['../namespacenc.html#a940bbaf9f760ce2d85119beb4a5c23f2',1,'nc']]], + ['column_5fstack_2ehpp_200',['column_stack.hpp',['../column__stack_8hpp.html',1,'']]], + ['comp_5fellint_5f1_201',['comp_ellint_1',['../namespacenc_1_1special.html#a445930bd5caceb59104bc466c55d479a',1,'nc::special::comp_ellint_1(const NdArray< dtype > &inArrayK)'],['../namespacenc_1_1special.html#a3b24e9dde5d68f19d8a29de419e32024',1,'nc::special::comp_ellint_1(dtype inK)']]], + ['comp_5fellint_5f1_2ehpp_202',['comp_ellint_1.hpp',['../comp__ellint__1_8hpp.html',1,'']]], + ['comp_5fellint_5f2_203',['comp_ellint_2',['../namespacenc_1_1special.html#abb6b67ccb2a8ea054c188d82f3a67013',1,'nc::special::comp_ellint_2(const NdArray< dtype > &inArrayK)'],['../namespacenc_1_1special.html#abfcffce97bdc9114b78a4c6d06956fc5',1,'nc::special::comp_ellint_2(dtype inK)']]], + ['comp_5fellint_5f2_2ehpp_204',['comp_ellint_2.hpp',['../comp__ellint__2_8hpp.html',1,'']]], + ['comp_5fellint_5f3_205',['comp_ellint_3',['../namespacenc_1_1special.html#a8c90b0cd0de06a5e789e3b9f8b0a1243',1,'nc::special::comp_ellint_3(dtype1 inK, dtype2 inV)'],['../namespacenc_1_1special.html#a40e29e793c7c7ee437f242a8cc7e8e26',1,'nc::special::comp_ellint_3(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayV)']]], + ['comp_5fellint_5f3_2ehpp_206',['comp_ellint_3.hpp',['../comp__ellint__3_8hpp.html',1,'']]], + ['compiler_20flags_207',['Compiler Flags',['../md__c___github__num_cpp_docs_markdown__compiler_flags.html',1,'']]], + ['compilerflags_2emd_208',['CompilerFlags.md',['../_compiler_flags_8md.html',1,'']]], + ['complementarymedianfilter_209',['complementaryMedianFilter',['../namespacenc_1_1filter.html#a2343ac38b1ec7c4cbde82a3fe20b4c21',1,'nc::filter']]], + ['complementarymedianfilter_2ehpp_210',['complementaryMedianFilter.hpp',['../complementary_median_filter_8hpp.html',1,'']]], + ['complementarymedianfilter1d_211',['complementaryMedianFilter1d',['../namespacenc_1_1filter.html#aed171f8ad8a79d99c13158c909ac4017',1,'nc::filter']]], + ['complementarymedianfilter1d_2ehpp_212',['complementaryMedianFilter1d.hpp',['../complementary_median_filter1d_8hpp.html',1,'']]], + ['complex_213',['complex',['../namespacenc.html#a2e653b99a0f26149fe399ebed1fc949e',1,'nc::complex(dtype inReal, dtype inImag)'],['../namespacenc.html#a56639fcc468435514861ce0e5059d82f',1,'nc::complex(dtype inReal)'],['../namespacenc.html#ab84a62b7de04ef6f69870e51f5dd8d00',1,'nc::complex(const NdArray< dtype > &inReal)'],['../namespacenc.html#a1d8b87baeef70163d94b40c96759ecc0',1,'nc::complex(const NdArray< dtype > &inReal, const NdArray< dtype > &inImag)']]], + ['complex_2ehpp_214',['complex.hpp',['../complex_8hpp.html',1,'']]], + ['complex_5fcast_215',['complex_cast',['../namespacenc.html#ad639d68db9e1b3ea9acc08efe4bad20e',1,'nc']]], + ['concatenate_216',['concatenate',['../namespacenc.html#a027070169f1750a74315d07c5bbdfb03',1,'nc']]], + ['concatenate_2ehpp_217',['concatenate.hpp',['../concatenate_8hpp.html',1,'']]], + ['conditional_5fno_5fexcept_218',['CONDITIONAL_NO_EXCEPT',['../_stl_algorithms_8hpp.html#a328745b2b79b264770ec2783aa489f26',1,'StlAlgorithms.hpp']]], + ['conj_219',['conj',['../namespacenc.html#a0387ae5584e72894ae9e690eba21e26b',1,'nc::conj(const std::complex< dtype > &inValue)'],['../namespacenc.html#a26e9df3c46d4f782d04c8d35881aad80',1,'nc::conj(const NdArray< std::complex< dtype >> &inArray)']]], + ['conj_2ehpp_220',['conj.hpp',['../conj_8hpp.html',1,'']]], + ['conjugate_221',['conjugate',['../classnc_1_1rotations_1_1_quaternion.html#ade406544e8360506bb77102d17b14e61',1,'nc::rotations::Quaternion']]], + ['const_5fcolumn_5fiterator_222',['const_column_iterator',['../classnc_1_1_nd_array.html#a1307cf472f722baa8850200dcb7a3a89',1,'nc::NdArray']]], + ['const_5fiterator_223',['const_iterator',['../classnc_1_1_nd_array.html#a49deeee0db98eae1c16ac6bca6fa6f31',1,'nc::NdArray::const_iterator()'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a870aeb2f713b4efba22a2f978704c215',1,'nc::imageProcessing::ClusterMaker::const_iterator()'],['../classnc_1_1image_processing_1_1_cluster.html#a3b344c255dfcfcf18e0fc9f1e84979ae',1,'nc::imageProcessing::Cluster::const_iterator()'],['../classnc_1_1_data_cube.html#a1ea7b9bd30731c3325545fbcd2678761',1,'nc::DataCube::const_iterator()']]], + ['const_5fpointer_224',['const_pointer',['../classnc_1_1_nd_array.html#a94982f81d8aa8c8a72abe0327f22b4dd',1,'nc::NdArray']]], + ['const_5freference_225',['const_reference',['../classnc_1_1_nd_array.html#a2e9001eb3a7fb5b44f6400b3cc3b3222',1,'nc::NdArray']]], + ['const_5freverse_5fcolumn_5fiterator_226',['const_reverse_column_iterator',['../classnc_1_1_nd_array.html#aa4f80e21b4b0f30ff98d1b90ae4fd70d',1,'nc::NdArray']]], + ['const_5freverse_5fiterator_227',['const_reverse_iterator',['../classnc_1_1_nd_array.html#a6de6f2ef3b2519edd272623a9681b527',1,'nc::NdArray']]], + ['constant_228',['CONSTANT',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6a8d6b5cada83510220f59e00ce86d4d92',1,'nc::filter']]], + ['constant1d_229',['constant1d',['../namespacenc_1_1filter_1_1boundary.html#a09c2e0a7f9ff3c1fbbbee0136d80a2e0',1,'nc::filter::boundary']]], + ['constant1d_2ehpp_230',['constant1d.hpp',['../constant1d_8hpp.html',1,'']]], + ['constant2d_231',['constant2d',['../namespacenc_1_1filter_1_1boundary.html#a0e0bd2ad1d6ac1b1d248175b9bc422f6',1,'nc::filter::boundary']]], + ['constant2d_2ehpp_232',['constant2d.hpp',['../constant2d_8hpp.html',1,'']]], + ['constants_2ehpp_233',['Constants.hpp',['../_constants_8hpp.html',1,'']]], + ['contains_234',['contains',['../classnc_1_1_nd_array.html#ad0c493a734dbca9f622d0f7ca6dffbf4',1,'nc::NdArray::contains()'],['../namespacenc.html#a89349379637971764e6efe28ad8c1848',1,'nc::contains()']]], + ['contains_2ehpp_235',['contains.hpp',['../contains_8hpp.html',1,'']]], + ['convolve_236',['convolve',['../namespacenc_1_1filter.html#abc4c77c759de3cd79f3fc02b7461d971',1,'nc::filter']]], + ['convolve_2ehpp_237',['convolve.hpp',['../convolve_8hpp.html',1,'']]], + ['convolve1d_238',['convolve1d',['../namespacenc_1_1filter.html#a21d48fecf984290cb5a4388d50371b13',1,'nc::filter']]], + ['convolve1d_2ehpp_239',['convolve1d.hpp',['../convolve1d_8hpp.html',1,'']]], + ['coordinate_240',['Coordinate',['../classnc_1_1coordinates_1_1_coordinate.html#a0f541169a4c318a5cf4fd0a50a4c2013',1,'nc::coordinates::Coordinate::Coordinate()=default'],['../classnc_1_1coordinates_1_1_coordinate.html#a983a167d97af973947f76474ab299ab8',1,'nc::coordinates::Coordinate::Coordinate(double inRaDegrees, double inDecDegrees)'],['../classnc_1_1coordinates_1_1_coordinate.html#a35b32fa280c920d0b528472f7726a03d',1,'nc::coordinates::Coordinate::Coordinate(const NdArray< double > &inCartesianVector)'],['../classnc_1_1coordinates_1_1_coordinate.html#aa023b8b0e74159909e99aabcf778c57f',1,'nc::coordinates::Coordinate::Coordinate(double inX, double inY, double inZ) noexcept'],['../classnc_1_1coordinates_1_1_coordinate.html#a7cf9e8138023ced7cfcb071299018fd5',1,'nc::coordinates::Coordinate::Coordinate(const RA &inRA, const Dec &inDec) noexcept'],['../classnc_1_1coordinates_1_1_coordinate.html#a68eafc66dfeb8551fa7d8960f116be83',1,'nc::coordinates::Coordinate::Coordinate(uint8 inRaHours, uint8 inRaMinutes, double inRaSeconds, Sign inSign, uint8 inDecDegreesWhole, uint8 inDecMinutes, double inDecSeconds)'],['../classnc_1_1coordinates_1_1_coordinate.html',1,'nc::coordinates::Coordinate']]], + ['coordinate_2ehpp_241',['Coordinate.hpp',['../_coordinate_8hpp.html',1,'']]], + ['coordinates_2ehpp_242',['Coordinates.hpp',['../_coordinates_8hpp.html',1,'']]], + ['copy_243',['copy',['../classnc_1_1_nd_array.html#a1f2d2aacc254129f36b0557a661e6664',1,'nc::NdArray::copy()'],['../namespacenc.html#a9bbe10d41fdbd74a6254bad44c7c7cf6',1,'nc::copy()'],['../namespacenc_1_1stl__algorithms.html#ae62a4e197ec640aacea520220bd27cef',1,'nc::stl_algorithms::copy()']]], + ['copy_2ehpp_244',['copy.hpp',['../copy_8hpp.html',1,'']]], + ['copysign_245',['copySign',['../namespacenc.html#a9e08e770fd2283734390ab631edc250d',1,'nc']]], + ['copysign_2ehpp_246',['copySign.hpp',['../copy_sign_8hpp.html',1,'']]], + ['copyto_247',['copyto',['../namespacenc.html#af8eca852439098c1fff96384d88d82dd',1,'nc']]], + ['copyto_2ehpp_248',['copyto.hpp',['../copyto_8hpp.html',1,'']]], + ['core_2ehpp_249',['Core.hpp',['../_core_8hpp.html',1,'']]], + ['corrcoef_250',['corrcoef',['../namespacenc.html#a2232014b014afca61e5ebe93c5ba2c0c',1,'nc']]], + ['corrcoef_2ehpp_251',['corrcoef.hpp',['../corrcoef_8hpp.html',1,'']]], + ['cos_252',['cos',['../namespacenc.html#a736de91eb8f79bfaf4dc92d7161f1c87',1,'nc::cos(dtype inValue) noexcept'],['../namespacenc.html#af208ae28fe0df17392ca128188cbcd73',1,'nc::cos(const NdArray< dtype > &inArray)']]], + ['cos_2ehpp_253',['cos.hpp',['../cos_8hpp.html',1,'']]], + ['cosh_254',['cosh',['../namespacenc.html#a520e0290bb667b43a9f494b3858b5f17',1,'nc::cosh(const NdArray< dtype > &inArray)'],['../namespacenc.html#abb07133a1f54b24a4a4986eefb5eda85',1,'nc::cosh(dtype inValue) noexcept']]], + ['cosh_2ehpp_255',['cosh.hpp',['../cosh_8hpp.html',1,'']]], + ['count_256',['count',['../namespacenc_1_1stl__algorithms.html#a1fa02155befc0c39a853e66f6df26745',1,'nc::stl_algorithms']]], + ['count_5fnonzero_257',['count_nonzero',['../namespacenc.html#aebb0dfe3637c07f6a9f6e4f08cacf515',1,'nc']]], + ['count_5fnonzero_2ehpp_258',['count_nonzero.hpp',['../count__nonzero_8hpp.html',1,'']]], + ['cov_259',['cov',['../namespacenc.html#a61dbb6e2f778525a305dc235a9a43c76',1,'nc']]], + ['cov_2ehpp_260',['cov.hpp',['../cov_8hpp.html',1,'']]], + ['cov_5finv_261',['cov_inv',['../namespacenc.html#a2a45ff9db0b44932844a5d9cb13b2d38',1,'nc']]], + ['cov_5finv_2ehpp_262',['cov_inv.hpp',['../cov__inv_8hpp.html',1,'']]], + ['crbegin_263',['crbegin',['../classnc_1_1_nd_array.html#a95cbc4440ac1e139642a08cbd075dafc',1,'nc::NdArray::crbegin() const noexcept'],['../classnc_1_1_nd_array.html#af6b2581fae90a5c67e87df6a82ea13c5',1,'nc::NdArray::crbegin(size_type inRow) const']]], + ['crcolbegin_264',['crcolbegin',['../classnc_1_1_nd_array.html#a35883ec844477b9bca2597939dd99c2a',1,'nc::NdArray::crcolbegin() const noexcept'],['../classnc_1_1_nd_array.html#a8afdb68c11124e1fe0309204f3996435',1,'nc::NdArray::crcolbegin(size_type inCol) const']]], + ['crcolend_265',['crcolend',['../classnc_1_1_nd_array.html#a55e5d41795f14f7f2aa256ba0f4bb676',1,'nc::NdArray::crcolend() const noexcept'],['../classnc_1_1_nd_array.html#a35b66f060b1ed99a6fb5247581fcb8fc',1,'nc::NdArray::crcolend(size_type inCol) const']]], + ['crend_266',['crend',['../classnc_1_1_nd_array.html#ac5d1c900c4db4263d1bf799ac3551ed6',1,'nc::NdArray::crend() const noexcept'],['../classnc_1_1_nd_array.html#af3b4c48e3328a8dd22eedd27c225aeb5',1,'nc::NdArray::crend(size_type inRow) const']]], + ['cross_267',['cross',['../classnc_1_1_vec3.html#af8173f6e61e9a63beae3092fd8dc4378',1,'nc::Vec3::cross()'],['../namespacenc.html#a4d1ed581965ed53090824290def38565',1,'nc::cross()']]], + ['cross_2ehpp_268',['cross.hpp',['../cross_8hpp.html',1,'']]], + ['cslice_269',['cSlice',['../classnc_1_1_nd_array.html#a29eabba849b35a3095cd341fa1c7b123',1,'nc::NdArray']]], + ['cube_270',['cube',['../namespacenc.html#a5899ccef8410243438debea3d8296df6',1,'nc::cube(dtype inValue) noexcept'],['../namespacenc.html#a224d96b41af957c782c02f1cb25e66fd',1,'nc::cube(const NdArray< dtype > &inArray)'],['../namespacenc_1_1utils.html#a46e88717d4d32003bb449fd5cefd401c',1,'nc::utils::cube()']]], + ['cumprod_271',['cumprod',['../classnc_1_1_nd_array.html#a75a231dec87e18370e9731214983858e',1,'nc::NdArray::cumprod()'],['../namespacenc.html#aafc4846f2f7956841d356060c9689cba',1,'nc::cumprod()']]], + ['cumprod_2ehpp_272',['cumprod.hpp',['../cumprod_8hpp.html',1,'']]], + ['cumsum_273',['cumsum',['../classnc_1_1_nd_array.html#a4baa93f2a125d7665f3cdfd8d96d3acc',1,'nc::NdArray::cumsum()'],['../namespacenc.html#a2abc8c4a18823234e3baec64d10c0dcd',1,'nc::cumsum()']]], + ['cumsum_2ehpp_274',['cumsum.hpp',['../cumsum_8hpp.html',1,'']]], + ['cyclic_5fhankel_5f1_275',['cyclic_hankel_1',['../namespacenc_1_1special.html#af5dd42de33ec77dda47dd089561895d5',1,'nc::special::cyclic_hankel_1(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#ae7053cd6eafb59a62ba6ede63aac6f90',1,'nc::special::cyclic_hankel_1(dtype1 inV, const NdArray< dtype2 > &inX)']]], + ['cyclic_5fhankel_5f1_2ehpp_276',['cyclic_hankel_1.hpp',['../cyclic__hankel__1_8hpp.html',1,'']]], + ['cyclic_5fhankel_5f2_277',['cyclic_hankel_2',['../namespacenc_1_1special.html#a388472a49e89f21b3eb144368fe55664',1,'nc::special::cyclic_hankel_2(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a8e3b27238d1cae20e4ee071766549c5d',1,'nc::special::cyclic_hankel_2(dtype1 inV, const NdArray< dtype2 > &inX)']]], + ['cyclic_5fhankel_5f2_2ehpp_278',['cyclic_hankel_2.hpp',['../cyclic__hankel__2_8hpp.html',1,'']]], + ['shape_2ehpp_279',['Shape.hpp',['../_core_2_shape_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_3.html b/docs/doxygen/html/search/all_3.html index 93567f1e0..39767b85b 100644 --- a/docs/doxygen/html/search/all_3.html +++ b/docs/doxygen/html/search/all_3.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_3.js b/docs/doxygen/html/search/all_3.js index a3a187238..2a0d800b1 100644 --- a/docs/doxygen/html/search/all_3.js +++ b/docs/doxygen/html/search/all_3.js @@ -1,52 +1,54 @@ var searchData= [ - ['data_268',['data',['../classnc_1_1_nd_array.html#a14e4541ae1e02ee5acdc01e18337d546',1,'nc::NdArray::data() const noexcept'],['../classnc_1_1_nd_array.html#a3df9d88c710b83f211f67dd4511b4f49',1,'nc::NdArray::data() noexcept']]], - ['datacube_269',['DataCube',['../classnc_1_1_data_cube.html#a7ae08af82b0553d2b294286bdf06703b',1,'nc::DataCube::DataCube(uint32 inSize)'],['../classnc_1_1_data_cube.html#a8224b613a7c87a16e06ef08d6f90926e',1,'nc::DataCube::DataCube()=default'],['../classnc_1_1_data_cube.html',1,'nc::DataCube< dtype >']]], - ['datacube_2ehpp_270',['DataCube.hpp',['../_data_cube_8hpp.html',1,'']]], - ['datarelease_271',['dataRelease',['../classnc_1_1_nd_array.html#ade07629d4094244f1dfca863af67e7c0',1,'nc::NdArray']]], - ['days_5fper_5fweek_272',['DAYS_PER_WEEK',['../namespacenc_1_1constants.html#a2c11c386e1a07a17f95122fc4630cbe9',1,'nc::constants']]], - ['dcm_273',['DCM',['../classnc_1_1rotations_1_1_d_c_m.html',1,'nc::rotations']]], - ['dcm_2ehpp_274',['DCM.hpp',['../_d_c_m_8hpp.html',1,'']]], - ['dec_275',['Dec',['../classnc_1_1coordinates_1_1_dec.html#af462329adb3a1bdb1f6b724e7a92a442',1,'nc::coordinates::Dec::Dec(Sign inSign, uint8 inDegrees, uint8 inMinutes, double inSeconds) noexcept'],['../classnc_1_1coordinates_1_1_dec.html#a63de0ff17c7f842866893fdfacd0edb7',1,'nc::coordinates::Dec::Dec(double inDegrees)'],['../classnc_1_1coordinates_1_1_dec.html#af821e7394e5de4c396dd2c60aa7c0eca',1,'nc::coordinates::Dec::Dec()=default']]], - ['dec_276',['dec',['../classnc_1_1coordinates_1_1_coordinate.html#ab5502c231ff400b90fc9ede39a524eed',1,'nc::coordinates::Coordinate']]], - ['dec_277',['Dec',['../classnc_1_1coordinates_1_1_dec.html',1,'nc::coordinates']]], - ['dec_2ehpp_278',['Dec.hpp',['../_dec_8hpp.html',1,'']]], - ['deg2rad_279',['deg2rad',['../namespacenc.html#a2cdc1c791ab98eb708ba5662ffb82b39',1,'nc::deg2rad(dtype inValue) noexcept'],['../namespacenc.html#a828388cb973b4e28e0b7060694e2604a',1,'nc::deg2rad(const NdArray< dtype > &inArray)']]], - ['deg2rad_2ehpp_280',['deg2rad.hpp',['../deg2rad_8hpp.html',1,'']]], - ['degrees_281',['degrees',['../namespacenc.html#a75c2b6b4713a5695a4738da25cf9d262',1,'nc::degrees(dtype inValue) noexcept'],['../namespacenc.html#aab0d24a5ffaf73330854bbcfc47d2fee',1,'nc::degrees(const NdArray< dtype > &inArray)'],['../classnc_1_1coordinates_1_1_r_a.html#aaf73bcb5e2afd0e075c452148f67a3bd',1,'nc::coordinates::RA::degrees()'],['../classnc_1_1coordinates_1_1_dec.html#ad2e47ff7298e1b88bb1b77940c241c8f',1,'nc::coordinates::Dec::degrees()']]], - ['degrees_2ehpp_282',['degrees.hpp',['../degrees_8hpp.html',1,'']]], - ['degreeseperation_283',['degreeSeperation',['../namespacenc_1_1coordinates.html#a06135e21507cfe2aa1cb4154fe1702bf',1,'nc::coordinates::degreeSeperation(const Coordinate &inCoordinate1, const Coordinate &inCoordinate2)'],['../namespacenc_1_1coordinates.html#abc47b2d64d107bcb19ff696ecff89edf',1,'nc::coordinates::degreeSeperation(const NdArray< double > &inVector1, const NdArray< double > &inVector2)'],['../classnc_1_1coordinates_1_1_coordinate.html#a223ae10750fed3706997220e76f25c0d',1,'nc::coordinates::Coordinate::degreeSeperation(const NdArray< double > &inVector) const'],['../classnc_1_1coordinates_1_1_coordinate.html#a9fd37a2cb2c3b45aee933e4e5f95d074',1,'nc::coordinates::Coordinate::degreeSeperation(const Coordinate &inOtherCoordinate) const']]], - ['degreeseperation_2ehpp_284',['degreeSeperation.hpp',['../degree_seperation_8hpp.html',1,'']]], - ['degreeswhole_285',['degreesWhole',['../classnc_1_1coordinates_1_1_dec.html#abe36c8e081efa41452dc10ddd7ffcda7',1,'nc::coordinates::Dec']]], - ['dekker_286',['Dekker',['../classnc_1_1roots_1_1_dekker.html#ab0a5db20e82cfd3ef95810ccb7d8c4e6',1,'nc::roots::Dekker::Dekker(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_dekker.html#a77b88bb369da2d03d34717b7d8e0a2ab',1,'nc::roots::Dekker::Dekker(const double epsilon, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_dekker.html',1,'nc::roots::Dekker']]], - ['dekker_2ehpp_287',['Dekker.hpp',['../_dekker_8hpp.html',1,'']]], - ['deleteindices_288',['deleteIndices',['../namespacenc.html#a7c33539e037218ba9b0b11acfae38363',1,'nc::deleteIndices(const NdArray< dtype > &inArray, const Slice &inIndicesSlice, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a53ddac04b49358cb41736640871bcea2',1,'nc::deleteIndices(const NdArray< dtype > &inArray, uint32 inIndex, Axis inAxis=Axis::NONE)'],['../namespacenc.html#ae59479b36cd7991d9dfc2d836b4d838c',1,'nc::deleteIndices(const NdArray< dtype > &inArray, const NdArray< uint32 > &inArrayIdxs, Axis inAxis=Axis::NONE)']]], - ['deleteindices_2ehpp_289',['deleteIndices.hpp',['../delete_indices_8hpp.html',1,'']]], - ['deriv_290',['deriv',['../classnc_1_1polynomial_1_1_poly1d.html#a06b9fb8a31de37a067c9ed54af6295d2',1,'nc::polynomial::Poly1d']]], - ['det_291',['det',['../namespacenc_1_1linalg.html#a55bafcebbc897458164e8dc511b6119c',1,'nc::linalg']]], - ['det_2ehpp_292',['det.hpp',['../det_8hpp.html',1,'']]], - ['diag_293',['diag',['../namespacenc.html#a8c80cee3e4853bc79290c995cf9d69dc',1,'nc']]], - ['diag_2ehpp_294',['diag.hpp',['../diag_8hpp.html',1,'']]], - ['diagflat_295',['diagflat',['../namespacenc.html#af3ab63d17fa40b3c3880a9065a95e47f',1,'nc']]], - ['diagflat_2ehpp_296',['diagflat.hpp',['../diagflat_8hpp.html',1,'']]], - ['diagonal_297',['diagonal',['../namespacenc.html#a8eeb67e5ad2a5b0567570a774b7fb1f3',1,'nc::diagonal()'],['../classnc_1_1_nd_array.html#aae6a8845bf3654a27265ecffee163628',1,'nc::NdArray::diagonal()']]], - ['diagonal_2ehpp_298',['diagonal.hpp',['../diagonal_8hpp.html',1,'']]], - ['diff_299',['diff',['../namespacenc.html#a94701ce8e9c8a4bb6dd162da5d07eadd',1,'nc']]], - ['diff_2ehpp_300',['diff.hpp',['../diff_8hpp.html',1,'']]], - ['difference_5ftype_301',['difference_type',['../classnc_1_1_nd_array_const_iterator.html#a16aa191e5615d641693ff077b56771ad',1,'nc::NdArrayConstIterator::difference_type()'],['../classnc_1_1_nd_array.html#a612cdd532e56b711ebb9c2478971c04f',1,'nc::NdArray::difference_type()'],['../classnc_1_1_nd_array_iterator.html#a871a849294da1c7e7b99250008471138',1,'nc::NdArrayIterator::difference_type()'],['../classnc_1_1_nd_array_const_column_iterator.html#ad4e9c4a6df66608a4d6ea6e7608337ce',1,'nc::NdArrayConstColumnIterator::difference_type()'],['../classnc_1_1_nd_array_column_iterator.html#addc363984d95db8bed56843682372e44',1,'nc::NdArrayColumnIterator::difference_type()']]], - ['digamma_302',['digamma',['../namespacenc_1_1special.html#a78dead2375df379d1976ff87f62fbade',1,'nc::special::digamma(dtype inValue)'],['../namespacenc_1_1special.html#a6419633142287d898c551f99cd7c589d',1,'nc::special::digamma(const NdArray< dtype > &inArray)']]], - ['digamma_2ehpp_303',['digamma.hpp',['../digamma_8hpp.html',1,'']]], - ['discrete_304',['discrete',['../namespacenc_1_1random.html#ae5367b53538e888028853607e1c522a4',1,'nc::random::discrete(const Shape &inShape, const NdArray< double > &inWeights)'],['../namespacenc_1_1random.html#a2ea5db9ee73d9f7a633e5899e4be2c94',1,'nc::random::discrete(const NdArray< double > &inWeights)']]], - ['discrete_2ehpp_305',['discrete.hpp',['../discrete_8hpp.html',1,'']]], - ['distance_306',['distance',['../classnc_1_1_vec3.html#a301f3edcb8cb17e7e3e5dbdd5255bdd2',1,'nc::Vec3::distance()'],['../classnc_1_1_vec2.html#a63c2b2b7a16828af770d38176b6cb3aa',1,'nc::Vec2::distance()']]], - ['divide_307',['divide',['../namespacenc.html#aad734f111f1fc140c2c3c8fc84f398b5',1,'nc::divide(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#aed2d517035fdd5539971fa0c1dcb61df',1,'nc::divide(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#ade8f0271af8c94c0a0e1166aba83a619',1,'nc::divide(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a2389581759aa0446030642193638ef63',1,'nc::divide(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a7d83e88182dd99da3ad09e76bb916a35',1,'nc::divide(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a85d01a50833bff37f13437cdd3e1a1a0',1,'nc::divide(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#a48c5c456736ced98b946e89b573c204e',1,'nc::divide(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a130f8bc6ccdb70da4cfb245659bc61af',1,'nc::divide(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#a9b10ead8c068b9b473023c993dc25d7c',1,'nc::divide(dtype value, const NdArray< std::complex< dtype >> &inArray)']]], - ['divide_2ehpp_308',['divide.hpp',['../divide_8hpp.html',1,'']]], - ['dot_309',['dot',['../classnc_1_1_vec2.html#a231781cc06b8f005a1dda5003498ec99',1,'nc::Vec2::dot()'],['../namespacenc.html#a2c9414f356ae2025a7cde3a192d6d67d',1,'nc::dot()'],['../classnc_1_1_nd_array.html#acca065e13f826c504493a2eae31f5d0e',1,'nc::NdArray::dot()'],['../namespacenc.html#abfdbde62bdc084a9b8f9a894fa173c40',1,'nc::dot(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a6ab78d4355c57b053b6e44f710d60528',1,'nc::dot(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../classnc_1_1_vec3.html#ac9f2bf549a4b800f140de060a0281a7e',1,'nc::Vec3::dot()']]], - ['dot_2ehpp_310',['dot.hpp',['../dot_8hpp.html',1,'']]], - ['down_311',['down',['../classnc_1_1_vec3.html#a4ea0c82948117391c6c42a99e3093f91',1,'nc::Vec3::down()'],['../classnc_1_1_vec2.html#a265ae124776dd84b657c4ff6d7677352',1,'nc::Vec2::down()']]], - ['dtypeinfo_312',['DtypeInfo',['../classnc_1_1_dtype_info.html',1,'nc']]], - ['dtypeinfo_2ehpp_313',['DtypeInfo.hpp',['../_dtype_info_8hpp.html',1,'']]], - ['dtypeinfo_3c_20std_3a_3acomplex_3c_20dtype_20_3e_20_3e_314',['DtypeInfo< std::complex< dtype > >',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html',1,'nc']]], - ['dump_315',['dump',['../classnc_1_1_nd_array.html#ada776db2a3c9ffef3dd7bf656cf75f08',1,'nc::NdArray::dump()'],['../classnc_1_1_data_cube.html#abbaa9ebba302183cae3563c9eb371ee3',1,'nc::DataCube::dump()'],['../namespacenc.html#af6e71bd96dbc78f9ca018d2da0a7e653',1,'nc::dump()']]], - ['dump_2ehpp_316',['dump.hpp',['../dump_8hpp.html',1,'']]] + ['data_280',['data',['../classnc_1_1_nd_array.html#a3df9d88c710b83f211f67dd4511b4f49',1,'nc::NdArray::data() noexcept'],['../classnc_1_1_nd_array.html#a14e4541ae1e02ee5acdc01e18337d546',1,'nc::NdArray::data() const noexcept']]], + ['databitscovered_281',['dataBitsCovered',['../namespacenc_1_1edac_1_1detail.html#aa8a14d5fd872ed0292631e57f5afe618',1,'nc::edac::detail']]], + ['datacube_282',['DataCube',['../classnc_1_1_data_cube.html#a7ae08af82b0553d2b294286bdf06703b',1,'nc::DataCube::DataCube(uint32 inSize)'],['../classnc_1_1_data_cube.html#a8224b613a7c87a16e06ef08d6f90926e',1,'nc::DataCube::DataCube()=default'],['../classnc_1_1_data_cube.html',1,'nc::DataCube< dtype >']]], + ['datacube_2ehpp_283',['DataCube.hpp',['../_data_cube_8hpp.html',1,'']]], + ['datarelease_284',['dataRelease',['../classnc_1_1_nd_array.html#ade07629d4094244f1dfca863af67e7c0',1,'nc::NdArray']]], + ['days_5fper_5fweek_285',['DAYS_PER_WEEK',['../namespacenc_1_1constants.html#a2c11c386e1a07a17f95122fc4630cbe9',1,'nc::constants']]], + ['dcm_286',['DCM',['../classnc_1_1rotations_1_1_d_c_m.html',1,'nc::rotations']]], + ['dcm_2ehpp_287',['DCM.hpp',['../_d_c_m_8hpp.html',1,'']]], + ['dec_288',['Dec',['../classnc_1_1coordinates_1_1_dec.html#af462329adb3a1bdb1f6b724e7a92a442',1,'nc::coordinates::Dec::Dec(Sign inSign, uint8 inDegrees, uint8 inMinutes, double inSeconds) noexcept'],['../classnc_1_1coordinates_1_1_dec.html#af821e7394e5de4c396dd2c60aa7c0eca',1,'nc::coordinates::Dec::Dec()=default'],['../classnc_1_1coordinates_1_1_dec.html#a63de0ff17c7f842866893fdfacd0edb7',1,'nc::coordinates::Dec::Dec(double inDegrees)']]], + ['dec_289',['dec',['../classnc_1_1coordinates_1_1_coordinate.html#ab5502c231ff400b90fc9ede39a524eed',1,'nc::coordinates::Coordinate']]], + ['dec_290',['Dec',['../classnc_1_1coordinates_1_1_dec.html',1,'nc::coordinates']]], + ['dec_2ehpp_291',['Dec.hpp',['../_dec_8hpp.html',1,'']]], + ['decode_292',['decode',['../namespacenc_1_1edac.html#aa24d4f99fd0739df7480845e96668e0f',1,'nc::edac']]], + ['deg2rad_293',['deg2rad',['../namespacenc.html#a2cdc1c791ab98eb708ba5662ffb82b39',1,'nc::deg2rad(dtype inValue) noexcept'],['../namespacenc.html#a828388cb973b4e28e0b7060694e2604a',1,'nc::deg2rad(const NdArray< dtype > &inArray)']]], + ['deg2rad_2ehpp_294',['deg2rad.hpp',['../deg2rad_8hpp.html',1,'']]], + ['degrees_295',['degrees',['../classnc_1_1coordinates_1_1_dec.html#ad2e47ff7298e1b88bb1b77940c241c8f',1,'nc::coordinates::Dec::degrees()'],['../namespacenc.html#aab0d24a5ffaf73330854bbcfc47d2fee',1,'nc::degrees()'],['../classnc_1_1coordinates_1_1_r_a.html#aaf73bcb5e2afd0e075c452148f67a3bd',1,'nc::coordinates::RA::degrees()'],['../namespacenc.html#a75c2b6b4713a5695a4738da25cf9d262',1,'nc::degrees()']]], + ['degrees_2ehpp_296',['degrees.hpp',['../degrees_8hpp.html',1,'']]], + ['degreeseperation_297',['degreeSeperation',['../namespacenc_1_1coordinates.html#a06135e21507cfe2aa1cb4154fe1702bf',1,'nc::coordinates::degreeSeperation()'],['../classnc_1_1coordinates_1_1_coordinate.html#a9fd37a2cb2c3b45aee933e4e5f95d074',1,'nc::coordinates::Coordinate::degreeSeperation(const Coordinate &inOtherCoordinate) const'],['../classnc_1_1coordinates_1_1_coordinate.html#a223ae10750fed3706997220e76f25c0d',1,'nc::coordinates::Coordinate::degreeSeperation(const NdArray< double > &inVector) const'],['../namespacenc_1_1coordinates.html#abc47b2d64d107bcb19ff696ecff89edf',1,'nc::coordinates::degreeSeperation()']]], + ['degreeseperation_2ehpp_298',['degreeSeperation.hpp',['../degree_seperation_8hpp.html',1,'']]], + ['degreeswhole_299',['degreesWhole',['../classnc_1_1coordinates_1_1_dec.html#abe36c8e081efa41452dc10ddd7ffcda7',1,'nc::coordinates::Dec']]], + ['dekker_300',['Dekker',['../classnc_1_1roots_1_1_dekker.html#a77b88bb369da2d03d34717b7d8e0a2ab',1,'nc::roots::Dekker::Dekker(const double epsilon, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_dekker.html#ab0a5db20e82cfd3ef95810ccb7d8c4e6',1,'nc::roots::Dekker::Dekker(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_dekker.html',1,'nc::roots::Dekker']]], + ['dekker_2ehpp_301',['Dekker.hpp',['../_dekker_8hpp.html',1,'']]], + ['deleteindices_302',['deleteIndices',['../namespacenc.html#ae59479b36cd7991d9dfc2d836b4d838c',1,'nc::deleteIndices(const NdArray< dtype > &inArray, const NdArray< uint32 > &inArrayIdxs, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a7c33539e037218ba9b0b11acfae38363',1,'nc::deleteIndices(const NdArray< dtype > &inArray, const Slice &inIndicesSlice, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a53ddac04b49358cb41736640871bcea2',1,'nc::deleteIndices(const NdArray< dtype > &inArray, uint32 inIndex, Axis inAxis=Axis::NONE)']]], + ['deleteindices_2ehpp_303',['deleteIndices.hpp',['../delete_indices_8hpp.html',1,'']]], + ['deriv_304',['deriv',['../classnc_1_1polynomial_1_1_poly1d.html#a06b9fb8a31de37a067c9ed54af6295d2',1,'nc::polynomial::Poly1d']]], + ['det_305',['det',['../namespacenc_1_1linalg.html#a55bafcebbc897458164e8dc511b6119c',1,'nc::linalg']]], + ['det_2ehpp_306',['det.hpp',['../det_8hpp.html',1,'']]], + ['diag_307',['diag',['../namespacenc.html#a8c80cee3e4853bc79290c995cf9d69dc',1,'nc']]], + ['diag_2ehpp_308',['diag.hpp',['../diag_8hpp.html',1,'']]], + ['diagflat_309',['diagflat',['../namespacenc.html#af3ab63d17fa40b3c3880a9065a95e47f',1,'nc']]], + ['diagflat_2ehpp_310',['diagflat.hpp',['../diagflat_8hpp.html',1,'']]], + ['diagonal_311',['diagonal',['../classnc_1_1_nd_array.html#aae6a8845bf3654a27265ecffee163628',1,'nc::NdArray::diagonal()'],['../namespacenc.html#a8eeb67e5ad2a5b0567570a774b7fb1f3',1,'nc::diagonal()']]], + ['diagonal_2ehpp_312',['diagonal.hpp',['../diagonal_8hpp.html',1,'']]], + ['diff_313',['diff',['../namespacenc.html#a94701ce8e9c8a4bb6dd162da5d07eadd',1,'nc']]], + ['diff_2ehpp_314',['diff.hpp',['../diff_8hpp.html',1,'']]], + ['difference_5ftype_315',['difference_type',['../classnc_1_1_nd_array_column_iterator.html#addc363984d95db8bed56843682372e44',1,'nc::NdArrayColumnIterator::difference_type()'],['../classnc_1_1_nd_array.html#a612cdd532e56b711ebb9c2478971c04f',1,'nc::NdArray::difference_type()'],['../classnc_1_1_nd_array_const_iterator.html#a16aa191e5615d641693ff077b56771ad',1,'nc::NdArrayConstIterator::difference_type()'],['../classnc_1_1_nd_array_iterator.html#a871a849294da1c7e7b99250008471138',1,'nc::NdArrayIterator::difference_type()'],['../classnc_1_1_nd_array_const_column_iterator.html#ad4e9c4a6df66608a4d6ea6e7608337ce',1,'nc::NdArrayConstColumnIterator::difference_type()']]], + ['digamma_316',['digamma',['../namespacenc_1_1special.html#a78dead2375df379d1976ff87f62fbade',1,'nc::special::digamma(dtype inValue)'],['../namespacenc_1_1special.html#a6419633142287d898c551f99cd7c589d',1,'nc::special::digamma(const NdArray< dtype > &inArray)']]], + ['digamma_2ehpp_317',['digamma.hpp',['../digamma_8hpp.html',1,'']]], + ['discrete_318',['discrete',['../namespacenc_1_1random.html#a2ea5db9ee73d9f7a633e5899e4be2c94',1,'nc::random::discrete(const NdArray< double > &inWeights)'],['../namespacenc_1_1random.html#ae5367b53538e888028853607e1c522a4',1,'nc::random::discrete(const Shape &inShape, const NdArray< double > &inWeights)']]], + ['discrete_2ehpp_319',['discrete.hpp',['../discrete_8hpp.html',1,'']]], + ['distance_320',['distance',['../classnc_1_1_vec2.html#a63c2b2b7a16828af770d38176b6cb3aa',1,'nc::Vec2::distance()'],['../classnc_1_1_vec3.html#a301f3edcb8cb17e7e3e5dbdd5255bdd2',1,'nc::Vec3::distance()']]], + ['divide_321',['divide',['../namespacenc.html#a48c5c456736ced98b946e89b573c204e',1,'nc::divide(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a85d01a50833bff37f13437cdd3e1a1a0',1,'nc::divide(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#aad734f111f1fc140c2c3c8fc84f398b5',1,'nc::divide(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#aed2d517035fdd5539971fa0c1dcb61df',1,'nc::divide(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#ade8f0271af8c94c0a0e1166aba83a619',1,'nc::divide(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a2389581759aa0446030642193638ef63',1,'nc::divide(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a7d83e88182dd99da3ad09e76bb916a35',1,'nc::divide(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a130f8bc6ccdb70da4cfb245659bc61af',1,'nc::divide(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#a9b10ead8c068b9b473023c993dc25d7c',1,'nc::divide(dtype value, const NdArray< std::complex< dtype >> &inArray)']]], + ['divide_2ehpp_322',['divide.hpp',['../divide_8hpp.html',1,'']]], + ['dot_323',['dot',['../classnc_1_1_nd_array.html#acca065e13f826c504493a2eae31f5d0e',1,'nc::NdArray::dot()'],['../classnc_1_1_vec2.html#a231781cc06b8f005a1dda5003498ec99',1,'nc::Vec2::dot()'],['../classnc_1_1_vec3.html#ac9f2bf549a4b800f140de060a0281a7e',1,'nc::Vec3::dot()'],['../namespacenc.html#a2c9414f356ae2025a7cde3a192d6d67d',1,'nc::dot(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#abfdbde62bdc084a9b8f9a894fa173c40',1,'nc::dot(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a6ab78d4355c57b053b6e44f710d60528',1,'nc::dot(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)']]], + ['dot_2ehpp_324',['dot.hpp',['../dot_8hpp.html',1,'']]], + ['down_325',['down',['../classnc_1_1_vec2.html#a265ae124776dd84b657c4ff6d7677352',1,'nc::Vec2::down()'],['../classnc_1_1_vec3.html#a4ea0c82948117391c6c42a99e3093f91',1,'nc::Vec3::down()']]], + ['dtypeinfo_326',['DtypeInfo',['../classnc_1_1_dtype_info.html',1,'nc']]], + ['dtypeinfo_2ehpp_327',['DtypeInfo.hpp',['../_dtype_info_8hpp.html',1,'']]], + ['dtypeinfo_3c_20std_3a_3acomplex_3c_20dtype_20_3e_20_3e_328',['DtypeInfo< std::complex< dtype > >',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html',1,'nc']]], + ['dump_329',['dump',['../classnc_1_1_data_cube.html#abbaa9ebba302183cae3563c9eb371ee3',1,'nc::DataCube::dump()'],['../classnc_1_1_nd_array.html#ada776db2a3c9ffef3dd7bf656cf75f08',1,'nc::NdArray::dump()'],['../namespacenc.html#af6e71bd96dbc78f9ca018d2da0a7e653',1,'nc::dump()']]], + ['dump_2ehpp_330',['dump.hpp',['../dump_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_4.html b/docs/doxygen/html/search/all_4.html index 9fab82fad..fc40463c8 100644 --- a/docs/doxygen/html/search/all_4.html +++ b/docs/doxygen/html/search/all_4.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_4.js b/docs/doxygen/html/search/all_4.js index fb72d99b6..3c3c34d2a 100644 --- a/docs/doxygen/html/search/all_4.js +++ b/docs/doxygen/html/search/all_4.js @@ -1,54 +1,58 @@ var searchData= [ - ['e_317',['e',['../namespacenc_1_1constants.html#aebabe96d6c2be3df3d71922b399e24c7',1,'nc::constants']]], - ['ellint_5f1_318',['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_319',['ellint_1.hpp',['../ellint__1_8hpp.html',1,'']]], - ['ellint_5f2_320',['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_5f2_2ehpp_321',['ellint_2.hpp',['../ellint__2_8hpp.html',1,'']]], - ['ellint_5f3_322',['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_323',['ellint_3.hpp',['../ellint__3_8hpp.html',1,'']]], - ['empty_324',['empty',['../namespacenc.html#a47dcd15b30a7fd2b977377ebb37cbdb6',1,'nc::empty(const Shape &inShape)'],['../namespacenc.html#a3da6e6c01236f9c2af8591a890f7d717',1,'nc::empty(uint32 inNumRows, uint32 inNumCols)']]], - ['empty_2ehpp_325',['empty.hpp',['../empty_8hpp.html',1,'']]], - ['empty_5flike_326',['empty_like',['../namespacenc.html#ad03bf017e6cc91a4169134de885bb9ad',1,'nc']]], - ['empty_5flike_2ehpp_327',['empty_like.hpp',['../empty__like_8hpp.html',1,'']]], - ['enable_5fif_5ft_328',['enable_if_t',['../namespacenc.html#ae6f8d4a50bd2b4254f00085e7f17ce01',1,'nc']]], - ['end_329',['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_nd_array.html#a153d3032d72c24d233407a351d0f8174',1,'nc::NdArray::end() noexcept'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a7d5ceccddb2db3b143c772ec9d66460a',1,'nc::imageProcessing::ClusterMaker::end()'],['../classnc_1_1image_processing_1_1_cluster.html#afc8b5d168cf1d611be9f5226ec7efd55',1,'nc::imageProcessing::Cluster::end()'],['../classnc_1_1_data_cube.html#a9aeac78f9aec9b69b9673c1e56778b1b',1,'nc::DataCube::end()']]], - ['endian_330',['Endian',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152',1,'nc']]], - ['endian_2ehpp_331',['Endian.hpp',['../_endian_8hpp.html',1,'']]], - ['endianess_332',['endianess',['../namespacenc.html#a6d1bce5e0cf3f24f84a50b945eec7a26',1,'nc::endianess()'],['../classnc_1_1_nd_array.html#a349b83beffbfb0a631799f921f13f7ad',1,'nc::NdArray::endianess()']]], - ['endianess_2ehpp_333',['endianess.hpp',['../endianess_8hpp.html',1,'']]], - ['eod_334',['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_335',['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#a01e23e6687e74de38a9799934aa94d69',1,'nc::DtypeInfo< std::complex< dtype > >::epsilon()']]], - ['epsilon_5f_336',['epsilon_',['../classnc_1_1roots_1_1_iteration.html#a5eafe219bb90f82da4ece84f012a411a',1,'nc::roots::Iteration']]], - ['equal_337',['equal',['../namespacenc_1_1stl__algorithms.html#ab200b92040bf3da8ee4325f5a994e73d',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2) noexcept'],['../namespacenc_1_1stl__algorithms.html#a684d1011b375da4078afb4474a36b0e6',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2, BinaryPredicate p) noexcept'],['../namespacenc.html#a7440518ae70823ac15ea1711d8df7bfc',1,'nc::equal()']]], - ['equal_2ehpp_338',['equal.hpp',['../equal_8hpp.html',1,'']]], - ['erf_339',['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_340',['erf.hpp',['../erf_8hpp.html',1,'']]], - ['erf_5finv_341',['erf_inv',['../namespacenc_1_1special.html#abab69146b99ff384c6de4a24da69a780',1,'nc::special::erf_inv(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#a0f66785ec1e2643dd4c932ff7cae61a4',1,'nc::special::erf_inv(dtype inValue)']]], - ['erf_5finv_2ehpp_342',['erf_inv.hpp',['../erf__inv_8hpp.html',1,'']]], - ['erfc_343',['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_344',['erfc.hpp',['../erfc_8hpp.html',1,'']]], - ['erfc_5finv_345',['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_346',['erfc_inv.hpp',['../erfc__inv_8hpp.html',1,'']]], - ['error_2ehpp_347',['Error.hpp',['../_error_8hpp.html',1,'']]], - ['essentiallyequal_348',['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']]], - ['essentiallyequal_2ehpp_349',['essentiallyEqual.hpp',['../essentially_equal_8hpp.html',1,'']]], - ['eulerangles_350',['eulerAngles',['../classnc_1_1rotations_1_1_d_c_m.html#a75a392cc2db9f9fdcfd8e212d152c9ff',1,'nc::rotations::DCM::eulerAngles(double roll, double pitch, double yaw)'],['../classnc_1_1rotations_1_1_d_c_m.html#a7ad5acfeac4205b7ee348332cb7aeadd',1,'nc::rotations::DCM::eulerAngles(const NdArray< double > &angles)']]], - ['euleraxisangle_351',['eulerAxisAngle',['../classnc_1_1rotations_1_1_d_c_m.html#aeb6400855cfc4163e09f03b101fe2d92',1,'nc::rotations::DCM::eulerAxisAngle(const NdArray< double > &inAxis, double inAngle)'],['../classnc_1_1rotations_1_1_d_c_m.html#a4da503d407f8ad563ec41364ff5b3b43',1,'nc::rotations::DCM::eulerAxisAngle(const Vec3 &inAxis, double inAngle)']]], - ['exists_352',['exists',['../classnc_1_1filesystem_1_1_file.html#a9a9b7d3f9505b025038e16a469553515',1,'nc::filesystem::File']]], - ['exp_353',['exp',['../namespacenc.html#a4069791fefff15148813bbbbadf064b1',1,'nc::exp(const NdArray< dtype > &inArray)'],['../namespacenc.html#ad7e555d480465930a7ac44f4ab39eea7',1,'nc::exp(dtype inValue) noexcept']]], - ['exp_2ehpp_354',['exp.hpp',['../exp_8hpp.html',1,'']]], - ['exp2_355',['exp2',['../namespacenc.html#a0595c87603ad5c35ddc78eab15148db7',1,'nc::exp2(const NdArray< dtype > &inArray)'],['../namespacenc.html#aafbab1d2bd67c753fb1656e037bd8b1d',1,'nc::exp2(dtype inValue) noexcept']]], - ['exp2_2ehpp_356',['exp2.hpp',['../exp2_8hpp.html',1,'']]], - ['expint_357',['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)']]], - ['expint_2ehpp_358',['expint.hpp',['../expint_8hpp.html',1,'']]], - ['expm1_359',['expm1',['../namespacenc.html#a1f8b7ba3bb64b868fc41508d6912afab',1,'nc::expm1(dtype inValue) noexcept'],['../namespacenc.html#ac1e31d2bff523a5936799445f16d11af',1,'nc::expm1(const NdArray< dtype > &inArray)']]], - ['expm1_2ehpp_360',['expm1.hpp',['../expm1_8hpp.html',1,'']]], - ['exponential_361',['exponential',['../namespacenc_1_1random.html#a5d71db2fa4d818d737554405776d2aea',1,'nc::random::exponential(const Shape &inShape, dtype inScaleValue=1)'],['../namespacenc_1_1random.html#a278212d1b177cb2bba47215d083bb10f',1,'nc::random::exponential(dtype inScaleValue=1)']]], - ['exponential_2ehpp_362',['exponential.hpp',['../exponential_8hpp.html',1,'']]], - ['ext_363',['ext',['../classnc_1_1filesystem_1_1_file.html#ac51df5a278a9b6045d6f241766c10483',1,'nc::filesystem::File']]], - ['extremevalue_364',['extremeValue',['../namespacenc_1_1random.html#a11144426dec05283d6c682e0e532af7e',1,'nc::random::extremeValue(dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#a6a5f569b594585794e6b268576d2e587',1,'nc::random::extremeValue(const Shape &inShape, dtype inA=1, dtype inB=1)']]], - ['extremevalue_2ehpp_365',['extremeValue.hpp',['../extreme_value_8hpp.html',1,'']]], - ['eye_366',['eye',['../namespacenc.html#a944a26b6ffe66b39ab9ba6972906bf55',1,'nc::eye(uint32 inN, uint32 inM, int32 inK=0)'],['../namespacenc.html#a1af40ed299fe04e075ca80d0d00dfba0',1,'nc::eye(uint32 inN, int32 inK=0)'],['../namespacenc.html#aa5328556ac755d5aafbe0f0e5d0c7af3',1,'nc::eye(const Shape &inShape, int32 inK=0)']]], - ['eye_2ehpp_367',['eye.hpp',['../eye_8hpp.html',1,'']]] + ['e_331',['e',['../namespacenc_1_1constants.html#aebabe96d6c2be3df3d71922b399e24c7',1,'nc::constants']]], + ['ellint_5f1_332',['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_333',['ellint_1.hpp',['../ellint__1_8hpp.html',1,'']]], + ['ellint_5f2_334',['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_5f2_2ehpp_335',['ellint_2.hpp',['../ellint__2_8hpp.html',1,'']]], + ['ellint_5f3_336',['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_337',['ellint_3.hpp',['../ellint__3_8hpp.html',1,'']]], + ['empty_338',['empty',['../namespacenc.html#a47dcd15b30a7fd2b977377ebb37cbdb6',1,'nc::empty(const Shape &inShape)'],['../namespacenc.html#a3da6e6c01236f9c2af8591a890f7d717',1,'nc::empty(uint32 inNumRows, uint32 inNumCols)']]], + ['empty_2ehpp_339',['empty.hpp',['../empty_8hpp.html',1,'']]], + ['empty_5flike_340',['empty_like',['../namespacenc.html#ad03bf017e6cc91a4169134de885bb9ad',1,'nc']]], + ['empty_5flike_2ehpp_341',['empty_like.hpp',['../empty__like_8hpp.html',1,'']]], + ['enable_5fif_5ft_342',['enable_if_t',['../namespacenc.html#ae6f8d4a50bd2b4254f00085e7f17ce01',1,'nc']]], + ['encode_343',['encode',['../namespacenc_1_1edac.html#af5c36a1f2c74d632192cf9fe29cc5f03',1,'nc::edac']]], + ['end_344',['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_1image_processing_1_1_cluster.html#afc8b5d168cf1d611be9f5226ec7efd55',1,'nc::imageProcessing::Cluster::end()'],['../classnc_1_1_data_cube.html#a9aeac78f9aec9b69b9673c1e56778b1b',1,'nc::DataCube::end()'],['../classnc_1_1_nd_array.html#a546c8b9de00188fab35a6c5075147cc1',1,'nc::NdArray::end()']]], + ['endian_345',['Endian',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152',1,'nc']]], + ['endian_2ehpp_346',['Endian.hpp',['../_endian_8hpp.html',1,'']]], + ['endianess_347',['endianess',['../classnc_1_1_nd_array.html#a349b83beffbfb0a631799f921f13f7ad',1,'nc::NdArray::endianess()'],['../namespacenc.html#a6d1bce5e0cf3f24f84a50b945eec7a26',1,'nc::endianess()']]], + ['endianess_2ehpp_348',['endianess.hpp',['../endianess_8hpp.html',1,'']]], + ['eod_349',['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_350',['epsilon',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a01e23e6687e74de38a9799934aa94d69',1,'nc::DtypeInfo< std::complex< dtype > >::epsilon()'],['../classnc_1_1_dtype_info.html#a845cc6986a3912805ab68960bc2b2318',1,'nc::DtypeInfo::epsilon()']]], + ['epsilon_5f_351',['epsilon_',['../classnc_1_1roots_1_1_iteration.html#a5eafe219bb90f82da4ece84f012a411a',1,'nc::roots::Iteration']]], + ['equal_352',['equal',['../namespacenc_1_1stl__algorithms.html#ab200b92040bf3da8ee4325f5a994e73d',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2) noexcept'],['../namespacenc_1_1stl__algorithms.html#a684d1011b375da4078afb4474a36b0e6',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2, BinaryPredicate p) noexcept'],['../namespacenc.html#a7440518ae70823ac15ea1711d8df7bfc',1,'nc::equal()']]], + ['equal_2ehpp_353',['equal.hpp',['../equal_8hpp.html',1,'']]], + ['erf_354',['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_355',['erf.hpp',['../erf_8hpp.html',1,'']]], + ['erf_5finv_356',['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_357',['erf_inv.hpp',['../erf__inv_8hpp.html',1,'']]], + ['erfc_358',['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_359',['erfc.hpp',['../erfc_8hpp.html',1,'']]], + ['erfc_5finv_360',['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_361',['erfc_inv.hpp',['../erfc__inv_8hpp.html',1,'']]], + ['error_2ehpp_362',['Error.hpp',['../_error_8hpp.html',1,'']]], + ['essentiallyequal_363',['essentiallyEqual',['../namespacenc_1_1utils.html#aedd8afd691cf9f5a8f8e12c9ca33743a',1,'nc::utils::essentiallyEqual(dtype inValue1, dtype inValue2, dtype inEpsilon) 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'],['../namespacenc_1_1utils.html#a139da62fc9c51ae191e7451bb4edb706',1,'nc::utils::essentiallyEqual(const std::complex< dtype > &inValue1, const std::complex< dtype > &inValue2) noexcept'],['../namespacenc_1_1utils.html#a963b90e7c9a3b057a924298750ddf74c',1,'nc::utils::essentiallyEqual(dtype inValue1, dtype inValue2) noexcept']]], + ['essentiallyequal_2ehpp_364',['essentiallyEqual.hpp',['../essentially_equal_8hpp.html',1,'']]], + ['eulerangles_365',['eulerAngles',['../classnc_1_1rotations_1_1_d_c_m.html#a7ad5acfeac4205b7ee348332cb7aeadd',1,'nc::rotations::DCM::eulerAngles(const NdArray< double > &angles)'],['../classnc_1_1rotations_1_1_d_c_m.html#a75a392cc2db9f9fdcfd8e212d152c9ff',1,'nc::rotations::DCM::eulerAngles(double roll, double pitch, double yaw)']]], + ['euleraxisangle_366',['eulerAxisAngle',['../classnc_1_1rotations_1_1_d_c_m.html#a4da503d407f8ad563ec41364ff5b3b43',1,'nc::rotations::DCM::eulerAxisAngle(const Vec3 &inAxis, double inAngle)'],['../classnc_1_1rotations_1_1_d_c_m.html#aeb6400855cfc4163e09f03b101fe2d92',1,'nc::rotations::DCM::eulerAxisAngle(const NdArray< double > &inAxis, double inAngle)']]], + ['exists_367',['exists',['../classnc_1_1filesystem_1_1_file.html#a9a9b7d3f9505b025038e16a469553515',1,'nc::filesystem::File']]], + ['exp_368',['exp',['../namespacenc.html#ad7e555d480465930a7ac44f4ab39eea7',1,'nc::exp(dtype inValue) noexcept'],['../namespacenc.html#a4069791fefff15148813bbbbadf064b1',1,'nc::exp(const NdArray< dtype > &inArray)']]], + ['exp_2ehpp_369',['exp.hpp',['../exp_8hpp.html',1,'']]], + ['exp2_370',['exp2',['../namespacenc.html#aafbab1d2bd67c753fb1656e037bd8b1d',1,'nc::exp2(dtype inValue) noexcept'],['../namespacenc.html#a0595c87603ad5c35ddc78eab15148db7',1,'nc::exp2(const NdArray< dtype > &inArray)']]], + ['exp2_2ehpp_371',['exp2.hpp',['../exp2_8hpp.html',1,'']]], + ['expint_372',['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)']]], + ['expint_2ehpp_373',['expint.hpp',['../expint_8hpp.html',1,'']]], + ['expm1_374',['expm1',['../namespacenc.html#a1f8b7ba3bb64b868fc41508d6912afab',1,'nc::expm1(dtype inValue) noexcept'],['../namespacenc.html#ac1e31d2bff523a5936799445f16d11af',1,'nc::expm1(const NdArray< dtype > &inArray)']]], + ['expm1_2ehpp_375',['expm1.hpp',['../expm1_8hpp.html',1,'']]], + ['exponential_376',['exponential',['../namespacenc_1_1random.html#a278212d1b177cb2bba47215d083bb10f',1,'nc::random::exponential(dtype inScaleValue=1)'],['../namespacenc_1_1random.html#a5d71db2fa4d818d737554405776d2aea',1,'nc::random::exponential(const Shape &inShape, dtype inScaleValue=1)']]], + ['exponential_2ehpp_377',['exponential.hpp',['../exponential_8hpp.html',1,'']]], + ['ext_378',['ext',['../classnc_1_1filesystem_1_1_file.html#ac51df5a278a9b6045d6f241766c10483',1,'nc::filesystem::File']]], + ['extract_379',['extract',['../namespacenc.html#af75594a13a627d4b014cf04749324571',1,'nc']]], + ['extract_2ehpp_380',['extract.hpp',['../extract_8hpp.html',1,'']]], + ['extractdata_381',['extractData',['../namespacenc_1_1edac_1_1detail.html#a1c606c3f9302bb406021a50006898ebf',1,'nc::edac::detail']]], + ['extremevalue_382',['extremeValue',['../namespacenc_1_1random.html#a11144426dec05283d6c682e0e532af7e',1,'nc::random::extremeValue(dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#a6a5f569b594585794e6b268576d2e587',1,'nc::random::extremeValue(const Shape &inShape, dtype inA=1, dtype inB=1)']]], + ['extremevalue_2ehpp_383',['extremeValue.hpp',['../extreme_value_8hpp.html',1,'']]], + ['eye_384',['eye',['../namespacenc.html#a944a26b6ffe66b39ab9ba6972906bf55',1,'nc::eye(uint32 inN, uint32 inM, int32 inK=0)'],['../namespacenc.html#a1af40ed299fe04e075ca80d0d00dfba0',1,'nc::eye(uint32 inN, int32 inK=0)'],['../namespacenc.html#aa5328556ac755d5aafbe0f0e5d0c7af3',1,'nc::eye(const Shape &inShape, int32 inK=0)']]], + ['eye_2ehpp_385',['eye.hpp',['../eye_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_5.html b/docs/doxygen/html/search/all_5.html index ff4c7034b..9dd9344b0 100644 --- a/docs/doxygen/html/search/all_5.html +++ b/docs/doxygen/html/search/all_5.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_5.js b/docs/doxygen/html/search/all_5.js index 2c31a9410..2c6afe081 100644 --- a/docs/doxygen/html/search/all_5.js +++ b/docs/doxygen/html/search/all_5.js @@ -1,61 +1,61 @@ var searchData= [ - ['cube_2ehpp_368',['cube.hpp',['../_functions_2cube_8hpp.html',1,'']]], - ['f_369',['f',['../namespacenc_1_1random.html#aabf17da1f94e6da4ec99085feca10799',1,'nc::random::f(const Shape &inShape, dtype inDofN, dtype inDofD)'],['../namespacenc_1_1random.html#a00229c23da25284daf436c0a338ea25c',1,'nc::random::f(dtype inDofN, dtype inDofD)']]], - ['f_2ehpp_370',['f.hpp',['../f_8hpp.html',1,'']]], - ['factorial_371',['factorial',['../namespacenc_1_1special.html#a7ab9b16b9bcb43038db57b7d21a90304',1,'nc::special::factorial(const NdArray< uint32 > &inArray)'],['../namespacenc_1_1special.html#a429b2caa6cf7fcbdba8ce3184c0367e3',1,'nc::special::factorial(uint32 inValue)']]], - ['factorial_2ehpp_372',['factorial.hpp',['../factorial_8hpp.html',1,'']]], - ['file_373',['File',['../classnc_1_1filesystem_1_1_file.html#aa27dc231895f81412af1d8206b5496dd',1,'nc::filesystem::File::File()'],['../classnc_1_1filesystem_1_1_file.html',1,'nc::filesystem::File']]], - ['filesystem_2ehpp_374',['Filesystem.hpp',['../_filesystem_8hpp.html',1,'']]], - ['fill_375',['fill',['../namespacenc_1_1stl__algorithms.html#af9a01fcb79e7a69b707081c1c17f361c',1,'nc::stl_algorithms::fill()'],['../classnc_1_1_nd_array.html#a646ec787a3b7331b34c0c3f21e0d992d',1,'nc::NdArray::fill()']]], - ['fillcorners_376',['fillCorners',['../namespacenc_1_1filter_1_1boundary.html#ac2c4c5858898760f48e5aba06ad0eb3c',1,'nc::filter::boundary::fillCorners(NdArray< dtype > &inArray, uint32 inBorderWidth, dtype inFillValue)'],['../namespacenc_1_1filter_1_1boundary.html#ac78b1c70b5d7e26d6013674cdb84690a',1,'nc::filter::boundary::fillCorners(NdArray< dtype > &inArray, uint32 inBorderWidth)']]], - ['fillcorners_2ehpp_377',['fillCorners.hpp',['../fill_corners_8hpp.html',1,'']]], - ['filldiagnol_2ehpp_378',['fillDiagnol.hpp',['../fill_diagnol_8hpp.html',1,'']]], - ['filldiagonal_379',['fillDiagonal',['../namespacenc.html#a7c40717fa80c513ecbb943859d9d1ac2',1,'nc']]], - ['filter_2ehpp_380',['Filter.hpp',['../_filter_8hpp.html',1,'']]], - ['find_381',['find',['../namespacenc.html#a8eaa82071f16b2654f11096247ba10e5',1,'nc::find()'],['../namespacenc_1_1stl__algorithms.html#a761aa9f3bd88f019c46fe6cece93ade2',1,'nc::stl_algorithms::find()']]], - ['find_2ehpp_382',['find.hpp',['../find_8hpp.html',1,'']]], - ['fit_383',['fit',['../classnc_1_1polynomial_1_1_poly1d.html#a1526585db421bbf96dfb88d99870c201',1,'nc::polynomial::Poly1d::fit(const NdArray< dtype > &xValues, const NdArray< dtype > &yValues, const NdArray< dtype > &weights, uint8 polyOrder)'],['../classnc_1_1polynomial_1_1_poly1d.html#abd9c3ff549505b8c42b4a4e97ff95b2c',1,'nc::polynomial::Poly1d::fit(const NdArray< dtype > &xValues, const NdArray< dtype > &yValues, uint8 polyOrder)']]], - ['fix_384',['fix',['../namespacenc.html#af259d081804c4be2d33e3a00e937b79c',1,'nc::fix(dtype inValue) noexcept'],['../namespacenc.html#aa2d5bc309911a5c6a79324691cf7ea27',1,'nc::fix(const NdArray< dtype > &inArray)']]], - ['fix_2ehpp_385',['fix.hpp',['../fix_8hpp.html',1,'']]], - ['flatnonzero_386',['flatnonzero',['../classnc_1_1_nd_array.html#a91687e040d05ac06b389d389facff3c9',1,'nc::NdArray::flatnonzero()'],['../namespacenc.html#a1564bf5bf94b5a6d8b55850e2a956407',1,'nc::flatnonzero()']]], - ['flatnonzero_2ehpp_387',['flatnonzero.hpp',['../flatnonzero_8hpp.html',1,'']]], - ['flatten_388',['flatten',['../namespacenc.html#ae968142455e50b994f534186693934dd',1,'nc::flatten()'],['../classnc_1_1_nd_array.html#a22ba05b8e537c008a2143396b5995551',1,'nc::NdArray::flatten()']]], - ['flatten_2ehpp_389',['flatten.hpp',['../flatten_8hpp.html',1,'']]], - ['flip_390',['flip',['../namespacenc.html#ab17a2f12bb2bea50a74c2ed41b30fdb2',1,'nc']]], - ['flip_2ehpp_391',['flip.hpp',['../flip_8hpp.html',1,'']]], - ['fliplr_392',['fliplr',['../namespacenc.html#ae316eb25ff89e7999a24221c91f8d395',1,'nc']]], - ['fliplr_2ehpp_393',['fliplr.hpp',['../fliplr_8hpp.html',1,'']]], - ['flipud_394',['flipud',['../namespacenc.html#a0241fc364ae8002c42cd4d452c897e26',1,'nc']]], - ['flipud_2ehpp_395',['flipud.hpp',['../flipud_8hpp.html',1,'']]], - ['floor_396',['floor',['../namespacenc.html#a85531048cade0ac3a1b4e8d6e01ff6fe',1,'nc::floor(const NdArray< dtype > &inArray)'],['../namespacenc.html#a832da7fc615ea4e1da7bed94a4488ea6',1,'nc::floor(dtype inValue) noexcept']]], - ['floor_2ehpp_397',['floor.hpp',['../floor_8hpp.html',1,'']]], - ['floor_5fdivide_398',['floor_divide',['../namespacenc.html#ab299e0245c7a703a9506ce6f39d9d8e4',1,'nc::floor_divide(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#ae8e2b2ae79d7a56eefd11986a6de9b21',1,'nc::floor_divide(dtype inValue1, dtype inValue2) noexcept']]], - ['floor_5fdivide_2ehpp_399',['floor_divide.hpp',['../floor__divide_8hpp.html',1,'']]], - ['fmax_400',['fmax',['../namespacenc.html#aebbd1fbc64f00fdeaae6c8cfdf6a7f59',1,'nc::fmax(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#a99c7f7c680632be6a42ebd6b923df328',1,'nc::fmax(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['fmax_2ehpp_401',['fmax.hpp',['../fmax_8hpp.html',1,'']]], - ['fmin_402',['fmin',['../namespacenc.html#a7cd8e4c771d0676279f506f9d7e949e0',1,'nc::fmin(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#add4b4f64b2991ac90b24c93ce10a2b80',1,'nc::fmin(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['fmin_2ehpp_403',['fmin.hpp',['../fmin_8hpp.html',1,'']]], - ['fmod_404',['fmod',['../namespacenc.html#a4208e3d02b9bc915767eab689c64b30f',1,'nc::fmod(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#a87bf4f8636ec0237d958c2ec1d9f1a89',1,'nc::fmod(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['fmod_2ehpp_405',['fmod.hpp',['../fmod_8hpp.html',1,'']]], - ['for_5feach_406',['for_each',['../namespacenc_1_1stl__algorithms.html#a734698435eabdbc5bdf93b195d7fb6a7',1,'nc::stl_algorithms']]], - ['forward_407',['forward',['../classnc_1_1_vec3.html#ac5a33c96c05a8c856b774c24f4a1965d',1,'nc::Vec3']]], - ['frombuffer_408',['frombuffer',['../namespacenc.html#ac0d91788bdc0924b82e9a38302d71316',1,'nc']]], - ['frombuffer_2ehpp_409',['frombuffer.hpp',['../frombuffer_8hpp.html',1,'']]], - ['fromfile_410',['fromfile',['../namespacenc.html#aa344c64ebbe94231d377f99775606c68',1,'nc::fromfile(const std::string &inFilename, const char inSep)'],['../namespacenc.html#a1f10b3d839d24d71df9c92e3f9794a14',1,'nc::fromfile(const std::string &inFilename)']]], - ['fromfile_2ehpp_411',['fromfile.hpp',['../fromfile_8hpp.html',1,'']]], - ['fromiter_412',['fromiter',['../namespacenc.html#a17c629bae4e06fe95b23d2b5799148f0',1,'nc']]], - ['fromiter_2ehpp_413',['fromiter.hpp',['../fromiter_8hpp.html',1,'']]], - ['front_414',['front',['../classnc_1_1_nd_array.html#a823d56e88aa815d86d41e8b11d348a6a',1,'nc::NdArray::front() noexcept'],['../classnc_1_1_nd_array.html#aacff9537c7c8537583b70115626a420b',1,'nc::NdArray::front(size_type row)'],['../classnc_1_1_nd_array.html#a42b713a59eac4e9df2ea3b2e584a80f1',1,'nc::NdArray::front(size_type row) const'],['../classnc_1_1_nd_array.html#a7c17d60541d81f71107c5dc0a06885ac',1,'nc::NdArray::front() const noexcept'],['../classnc_1_1_data_cube.html#a398373aeb2f3c9dd8df78f9eac1ca3d9',1,'nc::DataCube::front()']]], - ['full_415',['full',['../namespacenc.html#ac09334ce9ac6c4c140bbae68e8ce1a6c',1,'nc::full(const Shape &inShape, dtype inFillValue)'],['../namespacenc.html#a64e56324bce64094973a2da35548178d',1,'nc::full(uint32 inNumRows, uint32 inNumCols, dtype inFillValue)'],['../namespacenc.html#a139698e3756d4cb9b021c9d97e200bda',1,'nc::full(uint32 inSquareSize, dtype inFillValue)']]], - ['full_2ehpp_416',['full.hpp',['../full_8hpp.html',1,'']]], - ['full_5flike_417',['full_like',['../namespacenc.html#ad7e958219ad5b01b015edaf725eb4b7a',1,'nc']]], - ['full_5flike_2ehpp_418',['full_like.hpp',['../full__like_8hpp.html',1,'']]], - ['fullname_419',['fullName',['../classnc_1_1filesystem_1_1_file.html#a0f3f9b0e15d7cd007ae2b8a808f74799',1,'nc::filesystem::File']]], - ['functions_2ehpp_420',['Functions.hpp',['../_functions_8hpp.html',1,'']]], - ['interp_2ehpp_421',['interp.hpp',['../_functions_2interp_8hpp.html',1,'']]], - ['laplace_2ehpp_422',['laplace.hpp',['../_filter_2_filters_2_filters2d_2laplace_8hpp.html',1,'']]], - ['power_2ehpp_423',['power.hpp',['../_functions_2power_8hpp.html',1,'']]], - ['powerf_2ehpp_424',['powerf.hpp',['../_functions_2powerf_8hpp.html',1,'']]], - ['shape_2ehpp_425',['shape.hpp',['../_functions_2_shape_8hpp.html',1,'']]] + ['cube_2ehpp_386',['cube.hpp',['../_functions_2cube_8hpp.html',1,'']]], + ['f_387',['f',['../namespacenc_1_1random.html#a00229c23da25284daf436c0a338ea25c',1,'nc::random::f(dtype inDofN, dtype inDofD)'],['../namespacenc_1_1random.html#aabf17da1f94e6da4ec99085feca10799',1,'nc::random::f(const Shape &inShape, dtype inDofN, dtype inDofD)']]], + ['f_2ehpp_388',['f.hpp',['../f_8hpp.html',1,'']]], + ['factorial_389',['factorial',['../namespacenc_1_1special.html#a7ab9b16b9bcb43038db57b7d21a90304',1,'nc::special::factorial(const NdArray< uint32 > &inArray)'],['../namespacenc_1_1special.html#a429b2caa6cf7fcbdba8ce3184c0367e3',1,'nc::special::factorial(uint32 inValue)']]], + ['factorial_2ehpp_390',['factorial.hpp',['../factorial_8hpp.html',1,'']]], + ['file_391',['File',['../classnc_1_1filesystem_1_1_file.html#aa27dc231895f81412af1d8206b5496dd',1,'nc::filesystem::File::File()'],['../classnc_1_1filesystem_1_1_file.html',1,'nc::filesystem::File']]], + ['filesystem_2ehpp_392',['Filesystem.hpp',['../_filesystem_8hpp.html',1,'']]], + ['fill_393',['fill',['../namespacenc_1_1stl__algorithms.html#af9a01fcb79e7a69b707081c1c17f361c',1,'nc::stl_algorithms::fill()'],['../classnc_1_1_nd_array.html#a646ec787a3b7331b34c0c3f21e0d992d',1,'nc::NdArray::fill()']]], + ['fillcorners_394',['fillCorners',['../namespacenc_1_1filter_1_1boundary.html#ac2c4c5858898760f48e5aba06ad0eb3c',1,'nc::filter::boundary::fillCorners(NdArray< dtype > &inArray, uint32 inBorderWidth, dtype inFillValue)'],['../namespacenc_1_1filter_1_1boundary.html#ac78b1c70b5d7e26d6013674cdb84690a',1,'nc::filter::boundary::fillCorners(NdArray< dtype > &inArray, uint32 inBorderWidth)']]], + ['fillcorners_2ehpp_395',['fillCorners.hpp',['../fill_corners_8hpp.html',1,'']]], + ['filldiagnol_2ehpp_396',['fillDiagnol.hpp',['../fill_diagnol_8hpp.html',1,'']]], + ['filldiagonal_397',['fillDiagonal',['../namespacenc.html#a7c40717fa80c513ecbb943859d9d1ac2',1,'nc']]], + ['filter_2ehpp_398',['Filter.hpp',['../_filter_8hpp.html',1,'']]], + ['find_399',['find',['../namespacenc.html#a8eaa82071f16b2654f11096247ba10e5',1,'nc::find()'],['../namespacenc_1_1stl__algorithms.html#a761aa9f3bd88f019c46fe6cece93ade2',1,'nc::stl_algorithms::find()']]], + ['find_2ehpp_400',['find.hpp',['../find_8hpp.html',1,'']]], + ['fit_401',['fit',['../classnc_1_1polynomial_1_1_poly1d.html#abd9c3ff549505b8c42b4a4e97ff95b2c',1,'nc::polynomial::Poly1d::fit(const NdArray< dtype > &xValues, const NdArray< dtype > &yValues, uint8 polyOrder)'],['../classnc_1_1polynomial_1_1_poly1d.html#a1526585db421bbf96dfb88d99870c201',1,'nc::polynomial::Poly1d::fit(const NdArray< dtype > &xValues, const NdArray< dtype > &yValues, const NdArray< dtype > &weights, uint8 polyOrder)']]], + ['fix_402',['fix',['../namespacenc.html#af259d081804c4be2d33e3a00e937b79c',1,'nc::fix(dtype inValue) noexcept'],['../namespacenc.html#aa2d5bc309911a5c6a79324691cf7ea27',1,'nc::fix(const NdArray< dtype > &inArray)']]], + ['fix_2ehpp_403',['fix.hpp',['../fix_8hpp.html',1,'']]], + ['flatnonzero_404',['flatnonzero',['../namespacenc.html#a1564bf5bf94b5a6d8b55850e2a956407',1,'nc::flatnonzero()'],['../classnc_1_1_nd_array.html#a91687e040d05ac06b389d389facff3c9',1,'nc::NdArray::flatnonzero()']]], + ['flatnonzero_2ehpp_405',['flatnonzero.hpp',['../flatnonzero_8hpp.html',1,'']]], + ['flatten_406',['flatten',['../namespacenc.html#ae968142455e50b994f534186693934dd',1,'nc::flatten()'],['../classnc_1_1_nd_array.html#a22ba05b8e537c008a2143396b5995551',1,'nc::NdArray::flatten()']]], + ['flatten_2ehpp_407',['flatten.hpp',['../flatten_8hpp.html',1,'']]], + ['flip_408',['flip',['../namespacenc.html#ab17a2f12bb2bea50a74c2ed41b30fdb2',1,'nc']]], + ['flip_2ehpp_409',['flip.hpp',['../flip_8hpp.html',1,'']]], + ['fliplr_410',['fliplr',['../namespacenc.html#ae316eb25ff89e7999a24221c91f8d395',1,'nc']]], + ['fliplr_2ehpp_411',['fliplr.hpp',['../fliplr_8hpp.html',1,'']]], + ['flipud_412',['flipud',['../namespacenc.html#a0241fc364ae8002c42cd4d452c897e26',1,'nc']]], + ['flipud_2ehpp_413',['flipud.hpp',['../flipud_8hpp.html',1,'']]], + ['floor_414',['floor',['../namespacenc.html#a832da7fc615ea4e1da7bed94a4488ea6',1,'nc::floor(dtype inValue) noexcept'],['../namespacenc.html#a85531048cade0ac3a1b4e8d6e01ff6fe',1,'nc::floor(const NdArray< dtype > &inArray)']]], + ['floor_2ehpp_415',['floor.hpp',['../floor_8hpp.html',1,'']]], + ['floor_5fdivide_416',['floor_divide',['../namespacenc.html#ae8e2b2ae79d7a56eefd11986a6de9b21',1,'nc::floor_divide(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#ab299e0245c7a703a9506ce6f39d9d8e4',1,'nc::floor_divide(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], + ['floor_5fdivide_2ehpp_417',['floor_divide.hpp',['../floor__divide_8hpp.html',1,'']]], + ['fmax_418',['fmax',['../namespacenc.html#aebbd1fbc64f00fdeaae6c8cfdf6a7f59',1,'nc::fmax(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#a99c7f7c680632be6a42ebd6b923df328',1,'nc::fmax(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], + ['fmax_2ehpp_419',['fmax.hpp',['../fmax_8hpp.html',1,'']]], + ['fmin_420',['fmin',['../namespacenc.html#a7cd8e4c771d0676279f506f9d7e949e0',1,'nc::fmin(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#add4b4f64b2991ac90b24c93ce10a2b80',1,'nc::fmin(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], + ['fmin_2ehpp_421',['fmin.hpp',['../fmin_8hpp.html',1,'']]], + ['fmod_422',['fmod',['../namespacenc.html#a6894e06b913479ce699cba7dbce5bc93',1,'nc::fmod(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#a87bf4f8636ec0237d958c2ec1d9f1a89',1,'nc::fmod(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], + ['fmod_2ehpp_423',['fmod.hpp',['../fmod_8hpp.html',1,'']]], + ['for_5feach_424',['for_each',['../namespacenc_1_1stl__algorithms.html#a734698435eabdbc5bdf93b195d7fb6a7',1,'nc::stl_algorithms']]], + ['forward_425',['forward',['../classnc_1_1_vec3.html#ac5a33c96c05a8c856b774c24f4a1965d',1,'nc::Vec3']]], + ['frombuffer_426',['frombuffer',['../namespacenc.html#ac0d91788bdc0924b82e9a38302d71316',1,'nc']]], + ['frombuffer_2ehpp_427',['frombuffer.hpp',['../frombuffer_8hpp.html',1,'']]], + ['fromfile_428',['fromfile',['../namespacenc.html#a1f10b3d839d24d71df9c92e3f9794a14',1,'nc::fromfile(const std::string &inFilename)'],['../namespacenc.html#aa344c64ebbe94231d377f99775606c68',1,'nc::fromfile(const std::string &inFilename, const char inSep)']]], + ['fromfile_2ehpp_429',['fromfile.hpp',['../fromfile_8hpp.html',1,'']]], + ['fromiter_430',['fromiter',['../namespacenc.html#a17c629bae4e06fe95b23d2b5799148f0',1,'nc']]], + ['fromiter_2ehpp_431',['fromiter.hpp',['../fromiter_8hpp.html',1,'']]], + ['front_432',['front',['../classnc_1_1_nd_array.html#a42b713a59eac4e9df2ea3b2e584a80f1',1,'nc::NdArray::front(size_type row) const'],['../classnc_1_1_nd_array.html#aacff9537c7c8537583b70115626a420b',1,'nc::NdArray::front(size_type row)'],['../classnc_1_1_nd_array.html#a7c17d60541d81f71107c5dc0a06885ac',1,'nc::NdArray::front() const noexcept'],['../classnc_1_1_data_cube.html#a398373aeb2f3c9dd8df78f9eac1ca3d9',1,'nc::DataCube::front()'],['../classnc_1_1_nd_array.html#a823d56e88aa815d86d41e8b11d348a6a',1,'nc::NdArray::front()']]], + ['full_433',['full',['../namespacenc.html#a139698e3756d4cb9b021c9d97e200bda',1,'nc::full(uint32 inSquareSize, dtype inFillValue)'],['../namespacenc.html#a64e56324bce64094973a2da35548178d',1,'nc::full(uint32 inNumRows, uint32 inNumCols, dtype inFillValue)'],['../namespacenc.html#ac09334ce9ac6c4c140bbae68e8ce1a6c',1,'nc::full(const Shape &inShape, dtype inFillValue)']]], + ['full_2ehpp_434',['full.hpp',['../full_8hpp.html',1,'']]], + ['full_5flike_435',['full_like',['../namespacenc.html#ad7e958219ad5b01b015edaf725eb4b7a',1,'nc']]], + ['full_5flike_2ehpp_436',['full_like.hpp',['../full__like_8hpp.html',1,'']]], + ['fullname_437',['fullName',['../classnc_1_1filesystem_1_1_file.html#a0f3f9b0e15d7cd007ae2b8a808f74799',1,'nc::filesystem::File']]], + ['functions_2ehpp_438',['Functions.hpp',['../_functions_8hpp.html',1,'']]], + ['interp_2ehpp_439',['interp.hpp',['../_functions_2interp_8hpp.html',1,'']]], + ['laplace_2ehpp_440',['laplace.hpp',['../_filter_2_filters_2_filters2d_2laplace_8hpp.html',1,'']]], + ['power_2ehpp_441',['power.hpp',['../_functions_2power_8hpp.html',1,'']]], + ['powerf_2ehpp_442',['powerf.hpp',['../_functions_2powerf_8hpp.html',1,'']]], + ['shape_2ehpp_443',['shape.hpp',['../_functions_2_shape_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_6.html b/docs/doxygen/html/search/all_6.html index 671f73654..f1e516d75 100644 --- a/docs/doxygen/html/search/all_6.html +++ b/docs/doxygen/html/search/all_6.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_6.js b/docs/doxygen/html/search/all_6.js index e2ddeff24..b55b9a4ca 100644 --- a/docs/doxygen/html/search/all_6.js +++ b/docs/doxygen/html/search/all_6.js @@ -1,38 +1,42 @@ var searchData= [ - ['gamma_426',['gamma',['../namespacenc_1_1special.html#a07a3d6d5e0610dca66ca975cdf1d34b9',1,'nc::special::gamma(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#aad22d353f040026576c4a28727ecaf35',1,'nc::special::gamma(dtype inValue)'],['../namespacenc_1_1random.html#aa706a2bd65cb664ae9af10f713661d79',1,'nc::random::gamma(const Shape &inShape, dtype inGammaShape, dtype inScaleValue=1)'],['../namespacenc_1_1random.html#a0a969335423de5ad59fed5e952189e2d',1,'nc::random::gamma(dtype inGammaShape, dtype inScaleValue=1)']]], - ['gamma1pm1_427',['gamma1pm1',['../namespacenc_1_1special.html#a7b98a5eedb6e5354adbab8dcfe1ce4e1',1,'nc::special::gamma1pm1(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#a9ea9c889891f9f3a071c786d0b947e20',1,'nc::special::gamma1pm1(dtype inValue)']]], - ['gamma1pm1_2ehpp_428',['gamma1pm1.hpp',['../gamma1pm1_8hpp.html',1,'']]], - ['gauss_5flegendre_429',['gauss_legendre',['../namespacenc_1_1integrate.html#af7d17b4e025bf94f903d3c671da3baf7',1,'nc::integrate']]], - ['gauss_5flegendre_2ehpp_430',['gauss_legendre.hpp',['../gauss__legendre_8hpp.html',1,'']]], - ['gaussian_431',['gaussian',['../namespacenc_1_1utils.html#a5016e06ac7ca186ff6c110b314d30209',1,'nc::utils']]], - ['gaussian_2ehpp_432',['gaussian.hpp',['../gaussian_8hpp.html',1,'']]], - ['gaussian1d_433',['gaussian1d',['../namespacenc_1_1utils.html#a263704ee2cc6ab3f77b462522c7150f8',1,'nc::utils']]], - ['gaussian1d_2ehpp_434',['gaussian1d.hpp',['../gaussian1d_8hpp.html',1,'']]], - ['gaussianfilter_435',['gaussianFilter',['../namespacenc_1_1filter.html#a91c9fcd09a78eba8a42c5166ebb7709b',1,'nc::filter']]], - ['gaussianfilter_2ehpp_436',['gaussianFilter.hpp',['../gaussian_filter_8hpp.html',1,'']]], - ['gaussianfilter1d_437',['gaussianFilter1d',['../namespacenc_1_1filter.html#abda833220ea035db0aa485f6ccf66923',1,'nc::filter']]], - ['gaussianfilter1d_2ehpp_438',['gaussianFilter1d.hpp',['../gaussian_filter1d_8hpp.html',1,'']]], - ['gaussnewtonnlls_439',['gaussNewtonNlls',['../namespacenc_1_1linalg.html#aff0f97e94666284100b584e13d27def3',1,'nc::linalg']]], - ['gaussnewtonnlls_2ehpp_440',['gaussNewtonNlls.hpp',['../gauss_newton_nlls_8hpp.html',1,'']]], - ['gcd_441',['gcd',['../namespacenc.html#a4a496eaa0a42e0b9c80724358664d432',1,'nc::gcd(const NdArray< dtype > &inArray)'],['../namespacenc.html#a45b5db91eb9f524459fa3878e23ca0ec',1,'nc::gcd(dtype inValue1, dtype inValue2) noexcept']]], - ['gcd_2ehpp_442',['gcd.hpp',['../gcd_8hpp.html',1,'']]], - ['generatecentroids_443',['generateCentroids',['../namespacenc_1_1image_processing.html#a874d0f4174d10763002fdd70f190595b',1,'nc::imageProcessing']]], - ['generatecentroids_2ehpp_444',['generateCentroids.hpp',['../generate_centroids_8hpp.html',1,'']]], - ['generatethreshold_445',['generateThreshold',['../namespacenc_1_1image_processing.html#a356989d12dda6e1b0748d22d50d4ecaa',1,'nc::imageProcessing']]], - ['generatethreshold_2ehpp_446',['generateThreshold.hpp',['../generate_threshold_8hpp.html',1,'']]], - ['generator_2ehpp_447',['generator.hpp',['../generator_8hpp.html',1,'']]], - ['generator_5f_448',['generator_',['../namespacenc_1_1random.html#aa541047e6b742f1c5251e72f3b7aec95',1,'nc::random']]], - ['geometric_449',['geometric',['../namespacenc_1_1random.html#a7199f5c06c0e05440e9a97e01930b896',1,'nc::random::geometric(double inP=0.5)'],['../namespacenc_1_1random.html#ae761ff6e68fb0708061704bee4a3a7e3',1,'nc::random::geometric(const Shape &inShape, double inP=0.5)']]], - ['geometric_2ehpp_450',['geometric.hpp',['../geometric_8hpp.html',1,'']]], - ['getbyindices_451',['getByIndices',['../classnc_1_1_nd_array.html#a9437732d220581563d44c800ce240e17',1,'nc::NdArray']]], - ['getbymask_452',['getByMask',['../classnc_1_1_nd_array.html#a4da478ab5a1c836be7ad2f9d6bfed91e',1,'nc::NdArray']]], - ['getroot_453',['getRoot',['../classnc_1_1integrate_1_1_legendre_polynomial.html#ac2d8f6377f8ae7cf27b4d0599eb7880b',1,'nc::integrate::LegendrePolynomial']]], - ['getweight_454',['getWeight',['../classnc_1_1integrate_1_1_legendre_polynomial.html#ac6b804e8a2d582df601cc2b3ff2bf74f',1,'nc::integrate::LegendrePolynomial']]], - ['gradient_455',['gradient',['../namespacenc.html#ae2a11c3f92effc5991a2e0134f6a9188',1,'nc::gradient(const NdArray< dtype > &inArray, Axis inAxis=Axis::ROW)'],['../namespacenc.html#a7ef89fff9eb07946e77a5375dac5e7b6',1,'nc::gradient(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::ROW)']]], - ['gradient_2ehpp_456',['gradient.hpp',['../gradient_8hpp.html',1,'']]], - ['greater_457',['greater',['../namespacenc.html#a105d660675a98132264a13b17410a82d',1,'nc']]], - ['greater_2ehpp_458',['greater.hpp',['../greater_8hpp.html',1,'']]], - ['greater_5fequal_459',['greater_equal',['../namespacenc.html#a9a2bbc9879a2b3a9e657328c9d8ad025',1,'nc']]], - ['greater_5fequal_2ehpp_460',['greater_equal.hpp',['../greater__equal_8hpp.html',1,'']]] + ['gamma_444',['gamma',['../namespacenc_1_1special.html#aad22d353f040026576c4a28727ecaf35',1,'nc::special::gamma(dtype inValue)'],['../namespacenc_1_1special.html#a07a3d6d5e0610dca66ca975cdf1d34b9',1,'nc::special::gamma(const NdArray< dtype > &inArray)'],['../namespacenc_1_1random.html#a0a969335423de5ad59fed5e952189e2d',1,'nc::random::gamma(dtype inGammaShape, dtype inScaleValue=1)'],['../namespacenc_1_1random.html#aa706a2bd65cb664ae9af10f713661d79',1,'nc::random::gamma(const Shape &inShape, dtype inGammaShape, dtype inScaleValue=1)']]], + ['gamma1pm1_445',['gamma1pm1',['../namespacenc_1_1special.html#a7b98a5eedb6e5354adbab8dcfe1ce4e1',1,'nc::special::gamma1pm1(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#a9ea9c889891f9f3a071c786d0b947e20',1,'nc::special::gamma1pm1(dtype inValue)']]], + ['gamma1pm1_2ehpp_446',['gamma1pm1.hpp',['../gamma1pm1_8hpp.html',1,'']]], + ['gauss_5flegendre_447',['gauss_legendre',['../namespacenc_1_1integrate.html#af7d17b4e025bf94f903d3c671da3baf7',1,'nc::integrate']]], + ['gauss_5flegendre_2ehpp_448',['gauss_legendre.hpp',['../gauss__legendre_8hpp.html',1,'']]], + ['gaussian_449',['gaussian',['../namespacenc_1_1utils.html#a5016e06ac7ca186ff6c110b314d30209',1,'nc::utils']]], + ['gaussian_2ehpp_450',['gaussian.hpp',['../gaussian_8hpp.html',1,'']]], + ['gaussian1d_451',['gaussian1d',['../namespacenc_1_1utils.html#a263704ee2cc6ab3f77b462522c7150f8',1,'nc::utils']]], + ['gaussian1d_2ehpp_452',['gaussian1d.hpp',['../gaussian1d_8hpp.html',1,'']]], + ['gaussianfilter_453',['gaussianFilter',['../namespacenc_1_1filter.html#a91c9fcd09a78eba8a42c5166ebb7709b',1,'nc::filter']]], + ['gaussianfilter_2ehpp_454',['gaussianFilter.hpp',['../gaussian_filter_8hpp.html',1,'']]], + ['gaussianfilter1d_455',['gaussianFilter1d',['../namespacenc_1_1filter.html#abda833220ea035db0aa485f6ccf66923',1,'nc::filter']]], + ['gaussianfilter1d_2ehpp_456',['gaussianFilter1d.hpp',['../gaussian_filter1d_8hpp.html',1,'']]], + ['gaussnewtonnlls_457',['gaussNewtonNlls',['../namespacenc_1_1linalg.html#aff0f97e94666284100b584e13d27def3',1,'nc::linalg']]], + ['gaussnewtonnlls_2ehpp_458',['gaussNewtonNlls.hpp',['../gauss_newton_nlls_8hpp.html',1,'']]], + ['gcd_459',['gcd',['../namespacenc.html#a4a496eaa0a42e0b9c80724358664d432',1,'nc::gcd(const NdArray< dtype > &inArray)'],['../namespacenc.html#a45b5db91eb9f524459fa3878e23ca0ec',1,'nc::gcd(dtype inValue1, dtype inValue2) noexcept']]], + ['gcd_2ehpp_460',['gcd.hpp',['../gcd_8hpp.html',1,'']]], + ['generatecentroids_461',['generateCentroids',['../namespacenc_1_1image_processing.html#a874d0f4174d10763002fdd70f190595b',1,'nc::imageProcessing']]], + ['generatecentroids_2ehpp_462',['generateCentroids.hpp',['../generate_centroids_8hpp.html',1,'']]], + ['generatethreshold_463',['generateThreshold',['../namespacenc_1_1image_processing.html#a356989d12dda6e1b0748d22d50d4ecaa',1,'nc::imageProcessing']]], + ['generatethreshold_2ehpp_464',['generateThreshold.hpp',['../generate_threshold_8hpp.html',1,'']]], + ['generator_2ehpp_465',['generator.hpp',['../generator_8hpp.html',1,'']]], + ['generator_5f_466',['generator_',['../namespacenc_1_1random.html#aa541047e6b742f1c5251e72f3b7aec95',1,'nc::random']]], + ['geometric_467',['geometric',['../namespacenc_1_1random.html#a7199f5c06c0e05440e9a97e01930b896',1,'nc::random::geometric(double inP=0.5)'],['../namespacenc_1_1random.html#ae761ff6e68fb0708061704bee4a3a7e3',1,'nc::random::geometric(const Shape &inShape, double inP=0.5)']]], + ['geometric_2ehpp_468',['geometric.hpp',['../geometric_8hpp.html',1,'']]], + ['geomspace_469',['geomspace',['../namespacenc.html#aa5cdd68a27ae041c382eabfb07dfa9bc',1,'nc']]], + ['geomspace_2ehpp_470',['geomspace.hpp',['../geomspace_8hpp.html',1,'']]], + ['getbyindices_471',['getByIndices',['../classnc_1_1_nd_array.html#a9437732d220581563d44c800ce240e17',1,'nc::NdArray']]], + ['getbymask_472',['getByMask',['../classnc_1_1_nd_array.html#a4da478ab5a1c836be7ad2f9d6bfed91e',1,'nc::NdArray']]], + ['getroot_473',['getRoot',['../classnc_1_1integrate_1_1_legendre_polynomial.html#ac2d8f6377f8ae7cf27b4d0599eb7880b',1,'nc::integrate::LegendrePolynomial']]], + ['getweight_474',['getWeight',['../classnc_1_1integrate_1_1_legendre_polynomial.html#ac6b804e8a2d582df601cc2b3ff2bf74f',1,'nc::integrate::LegendrePolynomial']]], + ['gradient_475',['gradient',['../namespacenc.html#ae2a11c3f92effc5991a2e0134f6a9188',1,'nc::gradient(const NdArray< dtype > &inArray, Axis inAxis=Axis::ROW)'],['../namespacenc.html#a7ef89fff9eb07946e77a5375dac5e7b6',1,'nc::gradient(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::ROW)']]], + ['gradient_2ehpp_476',['gradient.hpp',['../gradient_8hpp.html',1,'']]], + ['greater_477',['greater',['../namespacenc.html#a105d660675a98132264a13b17410a82d',1,'nc']]], + ['greater_2ehpp_478',['greater.hpp',['../greater_8hpp.html',1,'']]], + ['greater_5fequal_479',['greater_equal',['../namespacenc.html#a9a2bbc9879a2b3a9e657328c9d8ad025',1,'nc']]], + ['greater_5fequal_2ehpp_480',['greater_equal.hpp',['../greater__equal_8hpp.html',1,'']]], + ['greaterthan_481',['greaterThan',['../structnc_1_1greater_than.html',1,'nc']]], + ['greaterthan_5fv_482',['greaterThan_v',['../namespacenc.html#a4cdb8bc70afcd7483d200f235181471c',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/all_7.html b/docs/doxygen/html/search/all_7.html index 280e9b1c6..8ddbf6c8e 100644 --- a/docs/doxygen/html/search/all_7.html +++ b/docs/doxygen/html/search/all_7.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_7.js b/docs/doxygen/html/search/all_7.js index 7543c7e2a..760b83588 100644 --- a/docs/doxygen/html/search/all_7.js +++ b/docs/doxygen/html/search/all_7.js @@ -1,17 +1,22 @@ var searchData= [ - ['hasext_461',['hasExt',['../classnc_1_1filesystem_1_1_file.html#a4e8ede3f75b64847964d4d85cd58f123',1,'nc::filesystem::File']]], - ['hat_462',['hat',['../namespacenc_1_1linalg.html#ae9cdb091717a1c74dc659519d77e0048',1,'nc::linalg::hat(const Vec3 &inVec)'],['../namespacenc_1_1linalg.html#ae7ced3680f1ae95af4bc2e6b98a5a517',1,'nc::linalg::hat(const NdArray< dtype > &inVec)'],['../namespacenc_1_1linalg.html#a12e16cb9d1a7b09e85b4abbef14ba2ef',1,'nc::linalg::hat(dtype inX, dtype inY, dtype inZ)']]], - ['hat_2ehpp_463',['hat.hpp',['../hat_8hpp.html',1,'']]], - ['height_464',['height',['../classnc_1_1image_processing_1_1_cluster.html#a71ccd5ee3fea70b4b1b27ba25f4b3fb8',1,'nc::imageProcessing::Cluster']]], - ['hermite_465',['hermite',['../namespacenc_1_1polynomial.html#ad88f67a61dad283461c6121958c5af54',1,'nc::polynomial::hermite(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#aeea1ebbc592a6a8c533f2230fb0f6f10',1,'nc::polynomial::hermite(uint32 n, dtype x)']]], - ['hermite_2ehpp_466',['hermite.hpp',['../hermite_8hpp.html',1,'']]], - ['histogram_467',['histogram',['../namespacenc.html#abff7fb8fdafbdd8db4dad38cc5a2267c',1,'nc::histogram(const NdArray< dtype > &inArray, const NdArray< double > &inBinEdges)'],['../namespacenc.html#a9f8af3a8f7adefd20992fe0686837cf6',1,'nc::histogram(const NdArray< dtype > &inArray, uint32 inNumBins=10)']]], - ['histogram_2ehpp_468',['histogram.hpp',['../histogram_8hpp.html',1,'']]], - ['hours_469',['hours',['../classnc_1_1coordinates_1_1_r_a.html#a52af78880f6c5a5ec8750a7ad20c2e2d',1,'nc::coordinates::RA']]], - ['hours_5fper_5fday_470',['HOURS_PER_DAY',['../namespacenc_1_1constants.html#aef903b1f40001bc712b61f5dec7de716',1,'nc::constants']]], - ['hstack_471',['hstack',['../namespacenc.html#a80a6677582b65c19750b0d82ac182081',1,'nc']]], - ['hstack_2ehpp_472',['hstack.hpp',['../hstack_8hpp.html',1,'']]], - ['hypot_473',['hypot',['../namespacenc.html#a4648674053cd83851d9549bbcc7a8481',1,'nc::hypot(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#ad2d90c3dcbe0a1e652b0505b637d973a',1,'nc::hypot(dtype inValue1, dtype inValue2, dtype inValue3) noexcept'],['../namespacenc.html#a66b0aabfaacc7ec12206b4edf6026b12',1,'nc::hypot(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['hypot_2ehpp_474',['hypot.hpp',['../hypot_8hpp.html',1,'']]] + ['hamming_483',['hamming',['../namespacenc.html#ad7fcd267d31bec0085f82959e3b5f9d3',1,'nc']]], + ['hamming_2ehpp_484',['hamming.hpp',['../hamming_8hpp.html',1,'']]], + ['hammingencode_2ehpp_485',['hammingEncode.hpp',['../hamming_encode_8hpp.html',1,'']]], + ['hanning_486',['hanning',['../namespacenc.html#ab50f9ea31f882bd8121c1adf820798b3',1,'nc']]], + ['hanning_2ehpp_487',['hanning.hpp',['../hanning_8hpp.html',1,'']]], + ['hasext_488',['hasExt',['../classnc_1_1filesystem_1_1_file.html#a4e8ede3f75b64847964d4d85cd58f123',1,'nc::filesystem::File']]], + ['hat_489',['hat',['../namespacenc_1_1linalg.html#a12e16cb9d1a7b09e85b4abbef14ba2ef',1,'nc::linalg::hat(dtype inX, dtype inY, dtype inZ)'],['../namespacenc_1_1linalg.html#ae7ced3680f1ae95af4bc2e6b98a5a517',1,'nc::linalg::hat(const NdArray< dtype > &inVec)'],['../namespacenc_1_1linalg.html#ae9cdb091717a1c74dc659519d77e0048',1,'nc::linalg::hat(const Vec3 &inVec)']]], + ['hat_2ehpp_490',['hat.hpp',['../hat_8hpp.html',1,'']]], + ['height_491',['height',['../classnc_1_1image_processing_1_1_cluster.html#a71ccd5ee3fea70b4b1b27ba25f4b3fb8',1,'nc::imageProcessing::Cluster']]], + ['hermite_492',['hermite',['../namespacenc_1_1polynomial.html#aeea1ebbc592a6a8c533f2230fb0f6f10',1,'nc::polynomial::hermite(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#ad88f67a61dad283461c6121958c5af54',1,'nc::polynomial::hermite(uint32 n, const NdArray< dtype > &inArrayX)']]], + ['hermite_2ehpp_493',['hermite.hpp',['../hermite_8hpp.html',1,'']]], + ['histogram_494',['histogram',['../namespacenc.html#abff7fb8fdafbdd8db4dad38cc5a2267c',1,'nc::histogram(const NdArray< dtype > &inArray, const NdArray< double > &inBinEdges)'],['../namespacenc.html#a9f8af3a8f7adefd20992fe0686837cf6',1,'nc::histogram(const NdArray< dtype > &inArray, uint32 inNumBins=10)']]], + ['histogram_2ehpp_495',['histogram.hpp',['../histogram_8hpp.html',1,'']]], + ['hours_496',['hours',['../classnc_1_1coordinates_1_1_r_a.html#a52af78880f6c5a5ec8750a7ad20c2e2d',1,'nc::coordinates::RA']]], + ['hours_5fper_5fday_497',['HOURS_PER_DAY',['../namespacenc_1_1constants.html#aef903b1f40001bc712b61f5dec7de716',1,'nc::constants']]], + ['hstack_498',['hstack',['../namespacenc.html#afa8806a41df51bbb4410d4cb6601971f',1,'nc']]], + ['hstack_2ehpp_499',['hstack.hpp',['../hstack_8hpp.html',1,'']]], + ['hypot_500',['hypot',['../namespacenc.html#a4648674053cd83851d9549bbcc7a8481',1,'nc::hypot(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#ad2d90c3dcbe0a1e652b0505b637d973a',1,'nc::hypot(dtype inValue1, dtype inValue2, dtype inValue3) noexcept'],['../namespacenc.html#a66b0aabfaacc7ec12206b4edf6026b12',1,'nc::hypot(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], + ['hypot_2ehpp_501',['hypot.hpp',['../hypot_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_8.html b/docs/doxygen/html/search/all_8.html index ed820aceb..83c55ae22 100644 --- a/docs/doxygen/html/search/all_8.html +++ b/docs/doxygen/html/search/all_8.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_8.js b/docs/doxygen/html/search/all_8.js index 293edac42..edb4fad6b 100644 --- a/docs/doxygen/html/search/all_8.js +++ b/docs/doxygen/html/search/all_8.js @@ -1,58 +1,65 @@ var searchData= [ - ['i_475',['i',['../classnc_1_1rotations_1_1_quaternion.html#a5a661b367dff916e8bdb5e28ac608ecd',1,'nc::rotations::Quaternion']]], - ['identity_476',['identity',['../classnc_1_1rotations_1_1_quaternion.html#ae093d333b66b63eeef5704be4a374af2',1,'nc::rotations::Quaternion::identity()'],['../namespacenc.html#ac344d8b6291a38244e2d99cd77b17334',1,'nc::identity()']]], - ['identity_2ehpp_477',['identity.hpp',['../identity_8hpp.html',1,'']]], - ['imag_478',['imag',['../namespacenc.html#a12cdcae89058ab627b68d32bc9ce0666',1,'nc::imag(const std::complex< dtype > &inValue)'],['../namespacenc.html#ae9eae82003557c0e94890a8f3bb3f5dc',1,'nc::imag(const NdArray< std::complex< dtype >> &inArray)']]], - ['imag_2ehpp_479',['imag.hpp',['../imag_8hpp.html',1,'']]], - ['imageprocessing_2ehpp_480',['ImageProcessing.hpp',['../_image_processing_8hpp.html',1,'']]], - ['incrementnumberofiterations_481',['incrementNumberOfIterations',['../classnc_1_1roots_1_1_iteration.html#ad0262a1a694e734ebc154c77f010bcff',1,'nc::roots::Iteration']]], - ['inf_482',['inf',['../namespacenc_1_1constants.html#a4649bfc00f6360ccda3b3f9316e2dc0e',1,'nc::constants']]], - ['installation_483',['Installation',['../md__mnt_c__github__num_cpp_docs_markdown__installation.html',1,'']]], - ['installation_2emd_484',['Installation.md',['../_installation_8md.html',1,'']]], - ['int16_485',['int16',['../namespacenc.html#a8f5045ed0f0a08d87fd76d7a74ac128d',1,'nc']]], - ['int32_486',['int32',['../namespacenc.html#a9386099a0fdc2bc9fb0dbfde5606584d',1,'nc']]], - ['int64_487',['int64',['../namespacenc.html#a6223a7f3b0f7886036f64276f36c921e',1,'nc']]], - ['int8_488',['int8',['../namespacenc.html#a0815baab2bc081f4250ba9cb1cf361b4',1,'nc']]], - ['integ_489',['integ',['../classnc_1_1polynomial_1_1_poly1d.html#a4c2902780c89054a6ca436a72ac77119',1,'nc::polynomial::Poly1d']]], - ['integrate_2ehpp_490',['Integrate.hpp',['../_integrate_8hpp.html',1,'']]], - ['intensity_491',['intensity',['../classnc_1_1image_processing_1_1_pixel.html#a2ffea8fff18945da4971ab4c847a49bd',1,'nc::imageProcessing::Pixel::intensity()'],['../classnc_1_1image_processing_1_1_centroid.html#aa203a8f8138fe9679f307f38ad65a5aa',1,'nc::imageProcessing::Centroid::intensity()'],['../classnc_1_1image_processing_1_1_cluster.html#a1797d804406d51ab2e22d5b9fae9cb53',1,'nc::imageProcessing::Cluster::intensity()']]], - ['interp_492',['interp',['../namespacenc_1_1utils.html#a691a52cfcc401340af355bd53869600e',1,'nc::utils::interp()'],['../namespacenc.html#a25a0717dab4a33f74927d390b83182ab',1,'nc::interp(const NdArray< dtype > &inX, const NdArray< dtype > &inXp, const NdArray< dtype > &inFp)'],['../namespacenc.html#a5b9584eeac344f9d37beb6be475300ca',1,'nc::interp(dtype inValue1, dtype inValue2, double inPercent) noexcept']]], - ['intersect1d_493',['intersect1d',['../namespacenc.html#a05a1080b20bfa1434ccb96fb08836bc4',1,'nc']]], - ['intersect1d_2ehpp_494',['intersect1d.hpp',['../intersect1d_8hpp.html',1,'']]], - ['inv_495',['inv',['../namespacenc_1_1linalg.html#ae36553eb100d8f2c2167e8ecadf2a9fc',1,'nc::linalg']]], - ['inv_2ehpp_496',['inv.hpp',['../inv_8hpp.html',1,'']]], - ['inverse_497',['inverse',['../classnc_1_1rotations_1_1_quaternion.html#a9b0634474b2ff27f9443ba256ea00ab1',1,'nc::rotations::Quaternion']]], - ['invert_498',['invert',['../namespacenc.html#a4159e9798b5726992f13f27366bea4f5',1,'nc']]], - ['invert_2ehpp_499',['invert.hpp',['../invert_8hpp.html',1,'']]], - ['is_5farithmetic_5fv_500',['is_arithmetic_v',['../namespacenc.html#ad5ef02185c876c1c30e12824c3b9aba5',1,'nc']]], - ['is_5fcomplex_501',['is_complex',['../structnc_1_1is__complex.html',1,'nc']]], - ['is_5fcomplex_3c_20std_3a_3acomplex_3c_20t_20_3e_20_3e_502',['is_complex< std::complex< T > >',['../structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html',1,'nc']]], - ['is_5fcomplex_5fv_503',['is_complex_v',['../namespacenc.html#af8be3598b0e2894429842d64d3ce4050',1,'nc']]], - ['is_5ffloating_5fpoint_5fv_504',['is_floating_point_v',['../namespacenc.html#a33d8e465a48ee094f340d8a5bab416bd',1,'nc']]], - ['is_5fintegral_5fv_505',['is_integral_v',['../namespacenc.html#a157cdac039a66a88d2aa922781d060f6',1,'nc']]], - ['is_5fsame_5fv_506',['is_same_v',['../namespacenc.html#a04829dab261829c5ee2570febfa287eb',1,'nc']]], - ['is_5fsorted_507',['is_sorted',['../namespacenc_1_1stl__algorithms.html#a1f71dfda5f16d8a53c16260c5fa8fbdc',1,'nc::stl_algorithms::is_sorted(ForwardIt first, ForwardIt last, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#aca7862e3fe066fc65bf00cb7f5108e33',1,'nc::stl_algorithms::is_sorted(ForwardIt first, ForwardIt last) noexcept']]], - ['is_5fvalid_5fdtype_508',['is_valid_dtype',['../structnc_1_1is__valid__dtype.html',1,'nc']]], - ['is_5fvalid_5fdtype_5fv_509',['is_valid_dtype_v',['../namespacenc.html#aae4eab83016ec7dcaa7d78b6d1e78481',1,'nc']]], - ['isclose_510',['isclose',['../namespacenc.html#ae80bdb1c4ce59e2a74cad2d518f50e1e',1,'nc']]], - ['isclose_2ehpp_511',['isclose.hpp',['../isclose_8hpp.html',1,'']]], - ['isempty_512',['isempty',['../classnc_1_1_data_cube.html#ac569e0c62a9e5cbf21228b85128a53a5',1,'nc::DataCube::isempty()'],['../classnc_1_1_nd_array.html#a3e5261e1be6357a2c608f5e1d97b35f9',1,'nc::NdArray::isempty() const noexcept']]], - ['isflat_513',['isflat',['../classnc_1_1_nd_array.html#a344f12e052eeb49cc87e361127386a64',1,'nc::NdArray']]], - ['isinf_514',['isinf',['../namespacenc.html#ac2770d614de64c300c2f10cb39a299c0',1,'nc::isinf(dtype inValue) noexcept'],['../namespacenc.html#a38b400fe936ea86828d4e29d5b0950bb',1,'nc::isinf(const NdArray< dtype > &inArray)']]], - ['isinf_2ehpp_515',['isinf.hpp',['../isinf_8hpp.html',1,'']]], - ['isinteger_516',['isInteger',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac055638657a1459bc6a7c9d94d5c96a4',1,'nc::DtypeInfo< std::complex< dtype > >::isInteger()'],['../classnc_1_1_dtype_info.html#a10b60bd27123b5c724e2a52526fe8cfe',1,'nc::DtypeInfo::isInteger()']]], - ['islittleendian_517',['isLittleEndian',['../namespacenc_1_1endian.html#a11907ef8078650aee8fe900854ba5bb4',1,'nc::endian']]], - ['isnan_518',['isnan',['../namespacenc.html#ac28569da874c0b37a4c50c86b31a98ab',1,'nc::isnan(dtype inValue) noexcept'],['../namespacenc.html#aedce7cd7ff92f9fec0c93cd9c5522ca8',1,'nc::isnan(const NdArray< dtype > &inArray)']]], - ['isnan_2ehpp_519',['isnan.hpp',['../isnan_8hpp.html',1,'']]], - ['isnull_520',['isnull',['../classnc_1_1_shape.html#a3c8d187f677e9a4cdbdf1906d612b596',1,'nc::Shape']]], - ['issigned_521',['isSigned',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac58a829905d11a1a7fca32427eab41d3',1,'nc::DtypeInfo< std::complex< dtype > >::isSigned()'],['../classnc_1_1_dtype_info.html#a039ecfb9a5bd9fe0cb751a59f28055d1',1,'nc::DtypeInfo::isSigned()']]], - ['issorted_522',['issorted',['../classnc_1_1_nd_array.html#a0ba38857fd4f9474e2814bbf1c3a6a0a',1,'nc::NdArray']]], - ['issquare_523',['issquare',['../classnc_1_1_nd_array.html#a302be17d815b1a4e353e6a2aade581a5',1,'nc::NdArray::issquare()'],['../classnc_1_1_shape.html#a939dd0ab6edf83b7abaf8b8c93a99152',1,'nc::Shape::issquare()']]], - ['isvalid_524',['isValid',['../classnc_1_1rotations_1_1_d_c_m.html#ab1947c7618408b063b704ec391e27888',1,'nc::rotations::DCM']]], - ['item_525',['item',['../classnc_1_1_nd_array.html#abec76b8f271e07fa07cc2f88fed676fa',1,'nc::NdArray']]], - ['iteration_526',['Iteration',['../classnc_1_1roots_1_1_iteration.html#a7948f08cfaa01f5685ec35149bf6bba0',1,'nc::roots::Iteration::Iteration(double epsilon, uint32 maxNumIterations) noexcept'],['../classnc_1_1roots_1_1_iteration.html#a2d7285a81c033d56ce8283b6dbfca136',1,'nc::roots::Iteration::Iteration(double epsilon) noexcept'],['../classnc_1_1roots_1_1_iteration.html',1,'nc::roots::Iteration']]], - ['iteration_2ehpp_527',['Iteration.hpp',['../_iteration_8hpp.html',1,'']]], - ['iterator_528',['iterator',['../classnc_1_1_nd_array.html#a33ce0c581a22e809cfc5a79a534bf798',1,'nc::NdArray::iterator()'],['../classnc_1_1_data_cube.html#a623df8fc48ba169d221b1c26249e5853',1,'nc::DataCube::iterator()']]], - ['iterator_5fcategory_529',['iterator_category',['../classnc_1_1_nd_array_const_iterator.html#a17535e5dcb696923adaa626c86cc3c00',1,'nc::NdArrayConstIterator::iterator_category()'],['../classnc_1_1_nd_array_iterator.html#a7b2c0794eac54ab2c3847776a8383283',1,'nc::NdArrayIterator::iterator_category()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3ed61bf2a830e89fd8fbbb6efc2e7171',1,'nc::NdArrayConstColumnIterator::iterator_category()'],['../classnc_1_1_nd_array_column_iterator.html#a3785618b3936e835ccc15b39440f3da5',1,'nc::NdArrayColumnIterator::iterator_category()']]] + ['i_502',['i',['../classnc_1_1rotations_1_1_quaternion.html#a5a661b367dff916e8bdb5e28ac608ecd',1,'nc::rotations::Quaternion']]], + ['identity_503',['identity',['../classnc_1_1rotations_1_1_quaternion.html#ae093d333b66b63eeef5704be4a374af2',1,'nc::rotations::Quaternion::identity()'],['../namespacenc.html#ac344d8b6291a38244e2d99cd77b17334',1,'nc::identity()']]], + ['identity_2ehpp_504',['identity.hpp',['../identity_8hpp.html',1,'']]], + ['imag_505',['imag',['../namespacenc.html#ae9eae82003557c0e94890a8f3bb3f5dc',1,'nc::imag(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a12cdcae89058ab627b68d32bc9ce0666',1,'nc::imag(const std::complex< dtype > &inValue)']]], + ['imag_2ehpp_506',['imag.hpp',['../imag_8hpp.html',1,'']]], + ['imageprocessing_2ehpp_507',['ImageProcessing.hpp',['../_image_processing_8hpp.html',1,'']]], + ['incrementnumberofiterations_508',['incrementNumberOfIterations',['../classnc_1_1roots_1_1_iteration.html#ad0262a1a694e734ebc154c77f010bcff',1,'nc::roots::Iteration']]], + ['inf_509',['inf',['../namespacenc_1_1constants.html#a4649bfc00f6360ccda3b3f9316e2dc0e',1,'nc::constants']]], + ['inner_510',['inner',['../namespacenc.html#aa44cb1f69e57caf4a79ff92960ddaebd',1,'nc']]], + ['inner_2ehpp_511',['inner.hpp',['../inner_8hpp.html',1,'']]], + ['installation_512',['Installation',['../md__c___github__num_cpp_docs_markdown__installation.html',1,'']]], + ['installation_2emd_513',['Installation.md',['../_installation_8md.html',1,'']]], + ['int16_514',['int16',['../namespacenc.html#a8f5045ed0f0a08d87fd76d7a74ac128d',1,'nc']]], + ['int32_515',['int32',['../namespacenc.html#a9386099a0fdc2bc9fb0dbfde5606584d',1,'nc']]], + ['int64_516',['int64',['../namespacenc.html#a6223a7f3b0f7886036f64276f36c921e',1,'nc']]], + ['int8_517',['int8',['../namespacenc.html#a0815baab2bc081f4250ba9cb1cf361b4',1,'nc']]], + ['integ_518',['integ',['../classnc_1_1polynomial_1_1_poly1d.html#a4c2902780c89054a6ca436a72ac77119',1,'nc::polynomial::Poly1d']]], + ['integrate_2ehpp_519',['Integrate.hpp',['../_integrate_8hpp.html',1,'']]], + ['intensity_520',['intensity',['../classnc_1_1image_processing_1_1_pixel.html#a2ffea8fff18945da4971ab4c847a49bd',1,'nc::imageProcessing::Pixel::intensity()'],['../classnc_1_1image_processing_1_1_centroid.html#aa203a8f8138fe9679f307f38ad65a5aa',1,'nc::imageProcessing::Centroid::intensity()'],['../classnc_1_1image_processing_1_1_cluster.html#a1797d804406d51ab2e22d5b9fae9cb53',1,'nc::imageProcessing::Cluster::intensity()']]], + ['interp_521',['interp',['../namespacenc.html#a5b9584eeac344f9d37beb6be475300ca',1,'nc::interp()'],['../namespacenc_1_1utils.html#a691a52cfcc401340af355bd53869600e',1,'nc::utils::interp()'],['../namespacenc.html#a25a0717dab4a33f74927d390b83182ab',1,'nc::interp(const NdArray< dtype > &inX, const NdArray< dtype > &inXp, const NdArray< dtype > &inFp)']]], + ['intersect1d_522',['intersect1d',['../namespacenc.html#a05a1080b20bfa1434ccb96fb08836bc4',1,'nc']]], + ['intersect1d_2ehpp_523',['intersect1d.hpp',['../intersect1d_8hpp.html',1,'']]], + ['inv_524',['inv',['../namespacenc_1_1linalg.html#ae36553eb100d8f2c2167e8ecadf2a9fc',1,'nc::linalg']]], + ['inv_2ehpp_525',['inv.hpp',['../inv_8hpp.html',1,'']]], + ['inverse_526',['inverse',['../classnc_1_1rotations_1_1_quaternion.html#a9b0634474b2ff27f9443ba256ea00ab1',1,'nc::rotations::Quaternion']]], + ['invert_527',['invert',['../namespacenc.html#a4159e9798b5726992f13f27366bea4f5',1,'nc']]], + ['invert_2ehpp_528',['invert.hpp',['../invert_8hpp.html',1,'']]], + ['is_5farithmetic_5fv_529',['is_arithmetic_v',['../namespacenc.html#ad5ef02185c876c1c30e12824c3b9aba5',1,'nc']]], + ['is_5fcomplex_530',['is_complex',['../structnc_1_1is__complex.html',1,'nc']]], + ['is_5fcomplex_3c_20std_3a_3acomplex_3c_20t_20_3e_20_3e_531',['is_complex< std::complex< T > >',['../structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html',1,'nc']]], + ['is_5fcomplex_5fv_532',['is_complex_v',['../namespacenc.html#af8be3598b0e2894429842d64d3ce4050',1,'nc']]], + ['is_5ffloating_5fpoint_5fv_533',['is_floating_point_v',['../namespacenc.html#a33d8e465a48ee094f340d8a5bab416bd',1,'nc']]], + ['is_5fintegral_5fv_534',['is_integral_v',['../namespacenc.html#a157cdac039a66a88d2aa922781d060f6',1,'nc']]], + ['is_5fsame_5fv_535',['is_same_v',['../namespacenc.html#a04829dab261829c5ee2570febfa287eb',1,'nc']]], + ['is_5fsorted_536',['is_sorted',['../namespacenc_1_1stl__algorithms.html#a1f71dfda5f16d8a53c16260c5fa8fbdc',1,'nc::stl_algorithms::is_sorted(ForwardIt first, ForwardIt last, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#aca7862e3fe066fc65bf00cb7f5108e33',1,'nc::stl_algorithms::is_sorted(ForwardIt first, ForwardIt last) noexcept']]], + ['is_5fvalid_5fdtype_537',['is_valid_dtype',['../structnc_1_1is__valid__dtype.html',1,'nc']]], + ['is_5fvalid_5fdtype_5fv_538',['is_valid_dtype_v',['../namespacenc.html#aae4eab83016ec7dcaa7d78b6d1e78481',1,'nc']]], + ['isclose_539',['isclose',['../namespacenc.html#ae80bdb1c4ce59e2a74cad2d518f50e1e',1,'nc']]], + ['isclose_2ehpp_540',['isclose.hpp',['../isclose_8hpp.html',1,'']]], + ['isempty_541',['isempty',['../classnc_1_1_data_cube.html#ac569e0c62a9e5cbf21228b85128a53a5',1,'nc::DataCube::isempty()'],['../classnc_1_1_nd_array.html#a3e5261e1be6357a2c608f5e1d97b35f9',1,'nc::NdArray::isempty() const noexcept']]], + ['isflat_542',['isflat',['../classnc_1_1_nd_array.html#a344f12e052eeb49cc87e361127386a64',1,'nc::NdArray']]], + ['isinf_543',['isinf',['../namespacenc.html#ac2770d614de64c300c2f10cb39a299c0',1,'nc::isinf(dtype inValue) noexcept'],['../namespacenc.html#a38b400fe936ea86828d4e29d5b0950bb',1,'nc::isinf(const NdArray< dtype > &inArray)']]], + ['isinf_2ehpp_544',['isinf.hpp',['../isinf_8hpp.html',1,'']]], + ['isinteger_545',['isInteger',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac055638657a1459bc6a7c9d94d5c96a4',1,'nc::DtypeInfo< std::complex< dtype > >::isInteger()'],['../classnc_1_1_dtype_info.html#a10b60bd27123b5c724e2a52526fe8cfe',1,'nc::DtypeInfo::isInteger()']]], + ['islittleendian_546',['isLittleEndian',['../namespacenc_1_1endian.html#a11907ef8078650aee8fe900854ba5bb4',1,'nc::endian']]], + ['isnan_547',['isnan',['../namespacenc.html#aedce7cd7ff92f9fec0c93cd9c5522ca8',1,'nc::isnan(const NdArray< dtype > &inArray)'],['../namespacenc.html#ac28569da874c0b37a4c50c86b31a98ab',1,'nc::isnan(dtype inValue) noexcept']]], + ['isnan_2ehpp_548',['isnan.hpp',['../isnan_8hpp.html',1,'']]], + ['isneginf_549',['isneginf',['../namespacenc.html#abb8e6e08f1b4374017ef8e4cd1841ba6',1,'nc::isneginf(dtype inValue) noexcept'],['../namespacenc.html#af02b9a27f4177ad1ccb9ecea6ab79f46',1,'nc::isneginf(const NdArray< dtype > &inArray)']]], + ['isneginf_2ehpp_550',['isneginf.hpp',['../isneginf_8hpp.html',1,'']]], + ['isnull_551',['isnull',['../classnc_1_1_shape.html#a3c8d187f677e9a4cdbdf1906d612b596',1,'nc::Shape']]], + ['isposinf_552',['isposinf',['../namespacenc.html#a7229b43ce1e19fb560d461b6beda24af',1,'nc::isposinf(dtype inValue) noexcept'],['../namespacenc.html#a00f30f48ef39bc0fa8149cb09b286e07',1,'nc::isposinf(const NdArray< dtype > &inArray)']]], + ['isposinf_2ehpp_553',['isposinf.hpp',['../isposinf_8hpp.html',1,'']]], + ['ispoweroftwo_554',['isPowerOfTwo',['../namespacenc_1_1edac_1_1detail.html#a7f066ec8b196c2943ae99382eb63e2fb',1,'nc::edac::detail']]], + ['issigned_555',['isSigned',['../classnc_1_1_dtype_info.html#a039ecfb9a5bd9fe0cb751a59f28055d1',1,'nc::DtypeInfo::isSigned()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac58a829905d11a1a7fca32427eab41d3',1,'nc::DtypeInfo< std::complex< dtype > >::isSigned()']]], + ['issorted_556',['issorted',['../classnc_1_1_nd_array.html#a0ba38857fd4f9474e2814bbf1c3a6a0a',1,'nc::NdArray']]], + ['issquare_557',['issquare',['../classnc_1_1_shape.html#a939dd0ab6edf83b7abaf8b8c93a99152',1,'nc::Shape::issquare()'],['../classnc_1_1_nd_array.html#a302be17d815b1a4e353e6a2aade581a5',1,'nc::NdArray::issquare()']]], + ['isvalid_558',['isValid',['../classnc_1_1rotations_1_1_d_c_m.html#ab1947c7618408b063b704ec391e27888',1,'nc::rotations::DCM']]], + ['item_559',['item',['../classnc_1_1_nd_array.html#abec76b8f271e07fa07cc2f88fed676fa',1,'nc::NdArray']]], + ['iteration_560',['Iteration',['../classnc_1_1roots_1_1_iteration.html#a7948f08cfaa01f5685ec35149bf6bba0',1,'nc::roots::Iteration::Iteration(double epsilon, uint32 maxNumIterations) noexcept'],['../classnc_1_1roots_1_1_iteration.html#a2d7285a81c033d56ce8283b6dbfca136',1,'nc::roots::Iteration::Iteration(double epsilon) noexcept'],['../classnc_1_1roots_1_1_iteration.html',1,'nc::roots::Iteration']]], + ['iteration_2ehpp_561',['Iteration.hpp',['../_iteration_8hpp.html',1,'']]], + ['iterator_562',['iterator',['../classnc_1_1_nd_array.html#a33ce0c581a22e809cfc5a79a534bf798',1,'nc::NdArray::iterator()'],['../classnc_1_1_data_cube.html#a623df8fc48ba169d221b1c26249e5853',1,'nc::DataCube::iterator()']]], + ['iterator_5fcategory_563',['iterator_category',['../classnc_1_1_nd_array_column_iterator.html#a3785618b3936e835ccc15b39440f3da5',1,'nc::NdArrayColumnIterator::iterator_category()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3ed61bf2a830e89fd8fbbb6efc2e7171',1,'nc::NdArrayConstColumnIterator::iterator_category()'],['../classnc_1_1_nd_array_iterator.html#a7b2c0794eac54ab2c3847776a8383283',1,'nc::NdArrayIterator::iterator_category()'],['../classnc_1_1_nd_array_const_iterator.html#a17535e5dcb696923adaa626c86cc3c00',1,'nc::NdArrayConstIterator::iterator_category()']]] ]; diff --git a/docs/doxygen/html/search/all_9.html b/docs/doxygen/html/search/all_9.html index 892a37946..1e263c134 100644 --- a/docs/doxygen/html/search/all_9.html +++ b/docs/doxygen/html/search/all_9.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_9.js b/docs/doxygen/html/search/all_9.js index dab58a401..9661e3bc3 100644 --- a/docs/doxygen/html/search/all_9.js +++ b/docs/doxygen/html/search/all_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['j_530',['j',['../classnc_1_1rotations_1_1_quaternion.html#acb62c703a1f96333bf76ad0735cb8b97',1,'nc::rotations::Quaternion::j()'],['../namespacenc_1_1constants.html#a0e933571f05ee6af915fc327260517e9',1,'nc::constants::j()']]] + ['j_564',['j',['../classnc_1_1rotations_1_1_quaternion.html#acb62c703a1f96333bf76ad0735cb8b97',1,'nc::rotations::Quaternion::j()'],['../namespacenc_1_1constants.html#a0e933571f05ee6af915fc327260517e9',1,'nc::constants::j()']]] ]; diff --git a/docs/doxygen/html/search/all_a.html b/docs/doxygen/html/search/all_a.html index 5aeaf81dd..3a6cac108 100644 --- a/docs/doxygen/html/search/all_a.html +++ b/docs/doxygen/html/search/all_a.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_a.js b/docs/doxygen/html/search/all_a.js index 99d4486e8..bdcfeed47 100644 --- a/docs/doxygen/html/search/all_a.js +++ b/docs/doxygen/html/search/all_a.js @@ -1,4 +1,6 @@ var searchData= [ - ['k_531',['k',['../classnc_1_1rotations_1_1_quaternion.html#aa2eee61d3a428a558f28d1bb6cc6a048',1,'nc::rotations::Quaternion']]] + ['k_565',['k',['../classnc_1_1rotations_1_1_quaternion.html#aa2eee61d3a428a558f28d1bb6cc6a048',1,'nc::rotations::Quaternion']]], + ['kaiser_566',['kaiser',['../namespacenc.html#a40ad53a4a4ad1be06ca85bbf9f9e9d25',1,'nc']]], + ['kaiser_2ehpp_567',['kaiser.hpp',['../kaiser_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_b.html b/docs/doxygen/html/search/all_b.html index 9253f5e4b..130deb4ed 100644 --- a/docs/doxygen/html/search/all_b.html +++ b/docs/doxygen/html/search/all_b.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_b.js b/docs/doxygen/html/search/all_b.js index 18dcbcada..88c2ed872 100644 --- a/docs/doxygen/html/search/all_b.js +++ b/docs/doxygen/html/search/all_b.js @@ -1,53 +1,57 @@ var searchData= [ - ['laguerre_532',['laguerre',['../namespacenc_1_1polynomial.html#a9a3c9fb31c548094a1ce7ec927f28bee',1,'nc::polynomial::laguerre(uint32 n, uint32 m, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a55e940d8393b196ebce707ac8b0df5b9',1,'nc::polynomial::laguerre(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#ad7fef1e52b0054b5894995ee1ed94340',1,'nc::polynomial::laguerre(uint32 n, uint32 m, dtype x)'],['../namespacenc_1_1polynomial.html#aa2c08952d8dfd2cccfbcd6da40b49f4f',1,'nc::polynomial::laguerre(uint32 n, dtype x)']]], - ['laguerre_2ehpp_533',['laguerre.hpp',['../laguerre_8hpp.html',1,'']]], - ['laplace_534',['laplace',['../namespacenc_1_1random.html#ab2ecb1401cb11a3c816073fcbc7b05b5',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_1filter.html#aae2d06efe29180faf7363b9322588f46',1,'nc::filter::laplace()']]], - ['lcm_535',['lcm',['../namespacenc.html#a7ffd0c15b8419a5d84458d4009b38b88',1,'nc::lcm(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#aa69cf791720987deb546d71057a668a1',1,'nc::lcm(const NdArray< dtype > &inArray)']]], - ['lcm_2ehpp_536',['lcm.hpp',['../lcm_8hpp.html',1,'']]], - ['ldexp_537',['ldexp',['../namespacenc.html#a52060ff2d69ed791b3f19c1d78cf8551',1,'nc::ldexp(const NdArray< dtype > &inArray1, const NdArray< uint8 > &inArray2)'],['../namespacenc.html#aca805ef0273314ddc6c70b2c913bf485',1,'nc::ldexp(dtype inValue1, uint8 inValue2) noexcept']]], - ['ldexp_2ehpp_538',['ldexp.hpp',['../ldexp_8hpp.html',1,'']]], - ['left_539',['left',['../classnc_1_1_vec3.html#a7e6730d945972ecda1815c1d41f5074c',1,'nc::Vec3::left()'],['../classnc_1_1_vec2.html#ade3f4342726264a1493f91ae80ab24ca',1,'nc::Vec2::left()']]], - ['left_5fshift_540',['left_shift',['../namespacenc.html#a6f10270824079210d4264d50f5a64f4d',1,'nc']]], - ['left_5fshift_2ehpp_541',['left_shift.hpp',['../left__shift_8hpp.html',1,'']]], - ['legendre_5fp_542',['legendre_p',['../namespacenc_1_1polynomial.html#aa3860199d898cdf173f3846cce684d72',1,'nc::polynomial::legendre_p(uint32 m, uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a10a5a1a92ac32725bb3d0496078f122e',1,'nc::polynomial::legendre_p(uint32 n, const NdArray< dtype > &inArrayX)'],['../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)']]], - ['legendre_5fp_2ehpp_543',['legendre_p.hpp',['../legendre__p_8hpp.html',1,'']]], - ['legendre_5fq_544',['legendre_q',['../namespacenc_1_1polynomial.html#aed5c95f5a321ec71c1a34a42414bec52',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_545',['legendre_q.hpp',['../legendre__q_8hpp.html',1,'']]], - ['legendrepolynomial_546',['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_547',['lerp',['../classnc_1_1_vec3.html#ab4878c8a4ebcd94fd0baf93059b50ac6',1,'nc::Vec3::lerp()'],['../classnc_1_1_vec2.html#a91e6417e5b9903ed6bee3ad90c0c38f4',1,'nc::Vec2::lerp()']]], - ['less_548',['less',['../namespacenc.html#a114baa0d21d439b7971dedd4b4042db8',1,'nc']]], - ['less_2ehpp_549',['less.hpp',['../less_8hpp.html',1,'']]], - ['less_5fequal_550',['less_equal',['../namespacenc.html#ac51b96f0ac720a028ebd856abf1b5785',1,'nc']]], - ['less_5fequal_2ehpp_551',['less_equal.hpp',['../less__equal_8hpp.html',1,'']]], - ['linalg_2ehpp_552',['Linalg.hpp',['../_linalg_8hpp.html',1,'']]], - ['linspace_553',['linspace',['../namespacenc.html#a672fbcbd2271d5fc58bd1b94750bbdcc',1,'nc']]], - ['linspace_2ehpp_554',['linspace.hpp',['../linspace_8hpp.html',1,'']]], - ['little_555',['LITTLE',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152a1314341b466dcb5e2c880b76414c49fe',1,'nc']]], - ['load_556',['load',['../namespacenc.html#abec5f2e4d2a1598de762e32b839a3067',1,'nc']]], - ['load_2ehpp_557',['load.hpp',['../load_8hpp.html',1,'']]], - ['log_558',['log',['../namespacenc.html#aba925957229bf54bfe854be197cd3d52',1,'nc::log(const NdArray< dtype > &inArray)'],['../namespacenc.html#a3f08d373ae167ac90d3bb6b6c4da0fb9',1,'nc::log(dtype inValue) noexcept']]], - ['log_2ehpp_559',['log.hpp',['../log_8hpp.html',1,'']]], - ['log10_560',['log10',['../namespacenc.html#a3cd82f65b6ee069a7d6443646dfecf67',1,'nc::log10(const NdArray< dtype > &inArray)'],['../namespacenc.html#a0d8a5ffeaed868463a6e55645c625c8f',1,'nc::log10(dtype inValue) noexcept']]], - ['log10_2ehpp_561',['log10.hpp',['../log10_8hpp.html',1,'']]], - ['log1p_562',['log1p',['../namespacenc.html#a1ae30700a2db1cd8e44fa59b84c2b547',1,'nc::log1p(const NdArray< dtype > &inArray)'],['../namespacenc.html#a5abcc8523a49a47fd2224d5588f128b4',1,'nc::log1p(dtype inValue) noexcept']]], - ['log1p_2ehpp_563',['log1p.hpp',['../log1p_8hpp.html',1,'']]], - ['log2_564',['log2',['../namespacenc.html#a536e5046481a32bd6955a222f323393a',1,'nc::log2(const NdArray< dtype > &inArray)'],['../namespacenc.html#a48cbc16dc706678b6f85e655e935cd41',1,'nc::log2(dtype inValue) noexcept']]], - ['log2_2ehpp_565',['log2.hpp',['../log2_8hpp.html',1,'']]], - ['log_5fgamma_566',['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)']]], - ['log_5fgamma_2ehpp_567',['log_gamma.hpp',['../log__gamma_8hpp.html',1,'']]], - ['logical_5fand_568',['logical_and',['../namespacenc.html#a951c3f9acd6147a8e2be1ab2cda4d51c',1,'nc']]], - ['logical_5fand_2ehpp_569',['logical_and.hpp',['../logical__and_8hpp.html',1,'']]], - ['logical_5fnot_570',['logical_not',['../namespacenc.html#ae90620999105f741609c7f279cac2907',1,'nc']]], - ['logical_5fnot_2ehpp_571',['logical_not.hpp',['../logical__not_8hpp.html',1,'']]], - ['logical_5for_572',['logical_or',['../namespacenc.html#a0492e302b114ab15b996b1330604478b',1,'nc']]], - ['logical_5for_2ehpp_573',['logical_or.hpp',['../logical__or_8hpp.html',1,'']]], - ['logical_5fxor_574',['logical_xor',['../namespacenc.html#a7b84e63b2d32e1b59bfef4690c918989',1,'nc']]], - ['logical_5fxor_2ehpp_575',['logical_xor.hpp',['../logical__xor_8hpp.html',1,'']]], - ['lognormal_576',['lognormal',['../namespacenc_1_1random.html#a03d5528a3a97b3731210ba2cc5d1c75d',1,'nc::random::lognormal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a3adc9de1025d27ed485603980657225b',1,'nc::random::lognormal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)']]], - ['lognormal_2ehpp_577',['lognormal.hpp',['../lognormal_8hpp.html',1,'']]], - ['lstsq_578',['lstsq',['../namespacenc_1_1linalg.html#a9c15421c77e6b4b12fca1515596d1414',1,'nc::linalg']]], - ['lstsq_2ehpp_579',['lstsq.hpp',['../lstsq_8hpp.html',1,'']]], - ['lu_5fdecomposition_580',['lu_decomposition',['../namespacenc_1_1linalg.html#a153a90dbcc2ca94c664c429868d15bc4',1,'nc::linalg']]], - ['lu_5fdecomposition_2ehpp_581',['lu_decomposition.hpp',['../lu__decomposition_8hpp.html',1,'']]] + ['laguerre_568',['laguerre',['../namespacenc_1_1polynomial.html#a55e940d8393b196ebce707ac8b0df5b9',1,'nc::polynomial::laguerre(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a9a3c9fb31c548094a1ce7ec927f28bee',1,'nc::polynomial::laguerre(uint32 n, uint32 m, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#aa2c08952d8dfd2cccfbcd6da40b49f4f',1,'nc::polynomial::laguerre(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#ad7fef1e52b0054b5894995ee1ed94340',1,'nc::polynomial::laguerre(uint32 n, uint32 m, dtype x)']]], + ['laguerre_2ehpp_569',['laguerre.hpp',['../laguerre_8hpp.html',1,'']]], + ['laplace_570',['laplace',['../namespacenc_1_1filter.html#aae2d06efe29180faf7363b9322588f46',1,'nc::filter::laplace()'],['../namespacenc_1_1random.html#a76e5b2a6feb9bf6a05c5dd9402f9c62f',1,'nc::random::laplace(dtype inLoc=0, dtype inScale=1)'],['../namespacenc_1_1random.html#ab2ecb1401cb11a3c816073fcbc7b05b5',1,'nc::random::laplace(const Shape &inShape, dtype inLoc=0, dtype inScale=1)']]], + ['lcm_571',['lcm',['../namespacenc.html#aa69cf791720987deb546d71057a668a1',1,'nc::lcm(const NdArray< dtype > &inArray)'],['../namespacenc.html#a7ffd0c15b8419a5d84458d4009b38b88',1,'nc::lcm(dtype inValue1, dtype inValue2) noexcept']]], + ['lcm_2ehpp_572',['lcm.hpp',['../lcm_8hpp.html',1,'']]], + ['ldexp_573',['ldexp',['../namespacenc.html#a52060ff2d69ed791b3f19c1d78cf8551',1,'nc::ldexp(const NdArray< dtype > &inArray1, const NdArray< uint8 > &inArray2)'],['../namespacenc.html#aca805ef0273314ddc6c70b2c913bf485',1,'nc::ldexp(dtype inValue1, uint8 inValue2) noexcept']]], + ['ldexp_2ehpp_574',['ldexp.hpp',['../ldexp_8hpp.html',1,'']]], + ['left_575',['left',['../classnc_1_1_vec2.html#ade3f4342726264a1493f91ae80ab24ca',1,'nc::Vec2::left()'],['../classnc_1_1_vec3.html#a7e6730d945972ecda1815c1d41f5074c',1,'nc::Vec3::left()']]], + ['left_5fshift_576',['left_shift',['../namespacenc.html#a6f10270824079210d4264d50f5a64f4d',1,'nc']]], + ['left_5fshift_2ehpp_577',['left_shift.hpp',['../left__shift_8hpp.html',1,'']]], + ['legendre_5fp_578',['legendre_p',['../namespacenc_1_1polynomial.html#a567bdffcff63421b77a9dfae9cbdfc8a',1,'nc::polynomial::legendre_p(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#aa3860199d898cdf173f3846cce684d72',1,'nc::polynomial::legendre_p(uint32 m, uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a6a68bde646dae6ffb484502d54e5c175',1,'nc::polynomial::legendre_p(uint32 m, uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#a10a5a1a92ac32725bb3d0496078f122e',1,'nc::polynomial::legendre_p(uint32 n, const NdArray< dtype > &inArrayX)']]], + ['legendre_5fp_2ehpp_579',['legendre_p.hpp',['../legendre__p_8hpp.html',1,'']]], + ['legendre_5fq_580',['legendre_q',['../namespacenc_1_1polynomial.html#aed5c95f5a321ec71c1a34a42414bec52',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_581',['legendre_q.hpp',['../legendre__q_8hpp.html',1,'']]], + ['legendrepolynomial_582',['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_583',['lerp',['../classnc_1_1_vec2.html#a91e6417e5b9903ed6bee3ad90c0c38f4',1,'nc::Vec2::lerp()'],['../classnc_1_1_vec3.html#ab4878c8a4ebcd94fd0baf93059b50ac6',1,'nc::Vec3::lerp()']]], + ['less_584',['less',['../namespacenc.html#a114baa0d21d439b7971dedd4b4042db8',1,'nc']]], + ['less_2ehpp_585',['less.hpp',['../less_8hpp.html',1,'']]], + ['less_5fequal_586',['less_equal',['../namespacenc.html#ac51b96f0ac720a028ebd856abf1b5785',1,'nc']]], + ['less_5fequal_2ehpp_587',['less_equal.hpp',['../less__equal_8hpp.html',1,'']]], + ['linalg_2ehpp_588',['Linalg.hpp',['../_linalg_8hpp.html',1,'']]], + ['linspace_589',['linspace',['../namespacenc.html#a672fbcbd2271d5fc58bd1b94750bbdcc',1,'nc']]], + ['linspace_2ehpp_590',['linspace.hpp',['../linspace_8hpp.html',1,'']]], + ['little_591',['LITTLE',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152a1314341b466dcb5e2c880b76414c49fe',1,'nc']]], + ['load_592',['load',['../namespacenc.html#abec5f2e4d2a1598de762e32b839a3067',1,'nc']]], + ['load_2ehpp_593',['load.hpp',['../load_8hpp.html',1,'']]], + ['log_594',['log',['../namespacenc.html#a3f08d373ae167ac90d3bb6b6c4da0fb9',1,'nc::log(dtype inValue) noexcept'],['../namespacenc.html#aba925957229bf54bfe854be197cd3d52',1,'nc::log(const NdArray< dtype > &inArray)']]], + ['log_2ehpp_595',['log.hpp',['../log_8hpp.html',1,'']]], + ['log10_596',['log10',['../namespacenc.html#a0d8a5ffeaed868463a6e55645c625c8f',1,'nc::log10(dtype inValue) noexcept'],['../namespacenc.html#a3cd82f65b6ee069a7d6443646dfecf67',1,'nc::log10(const NdArray< dtype > &inArray)']]], + ['log10_2ehpp_597',['log10.hpp',['../log10_8hpp.html',1,'']]], + ['log1p_598',['log1p',['../namespacenc.html#a5abcc8523a49a47fd2224d5588f128b4',1,'nc::log1p(dtype inValue) noexcept'],['../namespacenc.html#a1ae30700a2db1cd8e44fa59b84c2b547',1,'nc::log1p(const NdArray< dtype > &inArray)']]], + ['log1p_2ehpp_599',['log1p.hpp',['../log1p_8hpp.html',1,'']]], + ['log2_600',['log2',['../namespacenc.html#a48cbc16dc706678b6f85e655e935cd41',1,'nc::log2(dtype inValue) noexcept'],['../namespacenc.html#a536e5046481a32bd6955a222f323393a',1,'nc::log2(const NdArray< dtype > &inArray)']]], + ['log2_2ehpp_601',['log2.hpp',['../log2_8hpp.html',1,'']]], + ['log_5fgamma_602',['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)']]], + ['log_5fgamma_2ehpp_603',['log_gamma.hpp',['../log__gamma_8hpp.html',1,'']]], + ['logb_604',['logb',['../namespacenc.html#a4925bc774ee8c671be4e15ba4305d230',1,'nc::logb(dtype inValue, dtype inBase) noexcept'],['../namespacenc.html#a512c632dd9629cbc02ad96398f82ab2a',1,'nc::logb(const NdArray< dtype > &inArray, dtype inBase)']]], + ['logb_2ehpp_605',['logb.hpp',['../logb_8hpp.html',1,'']]], + ['logical_5fand_606',['logical_and',['../namespacenc.html#a951c3f9acd6147a8e2be1ab2cda4d51c',1,'nc']]], + ['logical_5fand_2ehpp_607',['logical_and.hpp',['../logical__and_8hpp.html',1,'']]], + ['logical_5fnot_608',['logical_not',['../namespacenc.html#ae90620999105f741609c7f279cac2907',1,'nc']]], + ['logical_5fnot_2ehpp_609',['logical_not.hpp',['../logical__not_8hpp.html',1,'']]], + ['logical_5for_610',['logical_or',['../namespacenc.html#a0492e302b114ab15b996b1330604478b',1,'nc']]], + ['logical_5for_2ehpp_611',['logical_or.hpp',['../logical__or_8hpp.html',1,'']]], + ['logical_5fxor_612',['logical_xor',['../namespacenc.html#a7b84e63b2d32e1b59bfef4690c918989',1,'nc']]], + ['logical_5fxor_2ehpp_613',['logical_xor.hpp',['../logical__xor_8hpp.html',1,'']]], + ['lognormal_614',['lognormal',['../namespacenc_1_1random.html#a03d5528a3a97b3731210ba2cc5d1c75d',1,'nc::random::lognormal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a3adc9de1025d27ed485603980657225b',1,'nc::random::lognormal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)']]], + ['lognormal_2ehpp_615',['lognormal.hpp',['../lognormal_8hpp.html',1,'']]], + ['logspace_616',['logspace',['../namespacenc.html#a4342eee2bea5ed3c8ece78b9119efc31',1,'nc']]], + ['logspace_2ehpp_617',['logspace.hpp',['../logspace_8hpp.html',1,'']]], + ['lstsq_618',['lstsq',['../namespacenc_1_1linalg.html#a9c15421c77e6b4b12fca1515596d1414',1,'nc::linalg']]], + ['lstsq_2ehpp_619',['lstsq.hpp',['../lstsq_8hpp.html',1,'']]], + ['lu_5fdecomposition_620',['lu_decomposition',['../namespacenc_1_1linalg.html#a153a90dbcc2ca94c664c429868d15bc4',1,'nc::linalg']]], + ['lu_5fdecomposition_2ehpp_621',['lu_decomposition.hpp',['../lu__decomposition_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_c.html b/docs/doxygen/html/search/all_c.html index 72d8d3759..3dd5af06d 100644 --- a/docs/doxygen/html/search/all_c.html +++ b/docs/doxygen/html/search/all_c.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_c.js b/docs/doxygen/html/search/all_c.js index 832d1c6da..05a8234e2 100644 --- a/docs/doxygen/html/search/all_c.js +++ b/docs/doxygen/html/search/all_c.js @@ -1,54 +1,54 @@ var searchData= [ - ['makepositiveandvalidate_582',['makePositiveAndValidate',['../classnc_1_1_slice.html#a4d518d51dad679d9a9c6938b065e38f8',1,'nc::Slice']]], - ['matmul_583',['matmul',['../namespacenc.html#a9f795cdfcf86a07f1a7febcb9d024c73',1,'nc::matmul(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a82209f3c03cb63a659d28e7c87f7ee23',1,'nc::matmul(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#ab39e4a1bc6bcd0f28dbd5806d5f2d0b9',1,'nc::matmul(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['matmul_2ehpp_584',['matmul.hpp',['../matmul_8hpp.html',1,'']]], - ['matrix_5fpower_585',['matrix_power',['../namespacenc_1_1linalg.html#ad27c1996e4e27a6f8ba5d2aed0743bba',1,'nc::linalg']]], - ['matrix_5fpower_2ehpp_586',['matrix_power.hpp',['../matrix__power_8hpp.html',1,'']]], - ['max_587',['max',['../namespacenc.html#a4d5872f22ac07aeba503857cb5948bc1',1,'nc::max()'],['../classnc_1_1_nd_array.html#abbca6c205525a4b706729f9f36acc06d',1,'nc::NdArray::max()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#acdf46b23b24e1421c38e6297c56024d1',1,'nc::DtypeInfo< std::complex< dtype > >::max()'],['../classnc_1_1_dtype_info.html#a2a3dc0ba2812411660219f61189d8aca',1,'nc::DtypeInfo::max()']]], - ['max_2ehpp_588',['max.hpp',['../max_8hpp.html',1,'']]], - ['max_5felement_589',['max_element',['../namespacenc_1_1stl__algorithms.html#a282a4146afe33e4abb012e5c6b332948',1,'nc::stl_algorithms::max_element(ForwardIt first, ForwardIt last, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#a334cd50f7f10f689f82fa2ba7c5d88b2',1,'nc::stl_algorithms::max_element(ForwardIt first, ForwardIt last) noexcept']]], - ['maximum_590',['maximum',['../namespacenc.html#a417e75e173adaf0f6a9905a60a62e135',1,'nc']]], - ['maximum_2ehpp_591',['maximum.hpp',['../maximum_8hpp.html',1,'']]], - ['maximumfilter_592',['maximumFilter',['../namespacenc_1_1filter.html#a237010b21fd77fa3b72c1fda0360f6a9',1,'nc::filter']]], - ['maximumfilter_2ehpp_593',['maximumFilter.hpp',['../maximum_filter_8hpp.html',1,'']]], - ['maximumfilter1d_594',['maximumFilter1d',['../namespacenc_1_1filter.html#a6760bbaeefd6338527665fa2426cf418',1,'nc::filter']]], - ['maximumfilter1d_2ehpp_595',['maximumFilter1d.hpp',['../maximum_filter1d_8hpp.html',1,'']]], - ['maxnumiterations_5f_596',['maxNumIterations_',['../classnc_1_1roots_1_1_iteration.html#a9b1c4ea8cf91c5308020c105293b4a02',1,'nc::roots::Iteration']]], - ['mean_597',['mean',['../namespacenc.html#ac0b868e518c5b489ce25b8a84ebc618b',1,'nc::mean(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#ae215351046b49fec834d006fd35a4078',1,'nc::mean(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], - ['mean_2ehpp_598',['mean.hpp',['../mean_8hpp.html',1,'']]], - ['median_599',['median',['../namespacenc.html#a737b54d3ec786235c90211a3ad4a5cfb',1,'nc::median()'],['../classnc_1_1_nd_array.html#a4d733d7a90d94c3f21e90ab79dc2cc14',1,'nc::NdArray::median()']]], - ['median_2ehpp_600',['median.hpp',['../median_8hpp.html',1,'']]], - ['medianfilter_601',['medianFilter',['../namespacenc_1_1filter.html#a6edb931e0ad73a60625c4854f11ab82a',1,'nc::filter']]], - ['medianfilter_2ehpp_602',['medianFilter.hpp',['../median_filter_8hpp.html',1,'']]], - ['medianfilter1d_603',['medianFilter1d',['../namespacenc_1_1filter.html#a39fc9c2648f0d223b63a5f1b7253bb40',1,'nc::filter']]], - ['medianfilter1d_2ehpp_604',['medianFilter1d.hpp',['../median_filter1d_8hpp.html',1,'']]], - ['meshgrid_605',['meshgrid',['../namespacenc.html#ae392e03f9e01b088a082c6055082df49',1,'nc::meshgrid(const NdArray< dtype > &inICoords, const NdArray< dtype > &inJCoords)'],['../namespacenc.html#a2338e094bb1195888e3f385d01627c4f',1,'nc::meshgrid(const Slice &inSlice1, const Slice &inSlice2)']]], - ['meshgrid_2ehpp_606',['meshgrid.hpp',['../meshgrid_8hpp.html',1,'']]], - ['milliseconds_5fper_5fday_607',['MILLISECONDS_PER_DAY',['../namespacenc_1_1constants.html#a2838aa56f95be8020a326aa6b9ba5c68',1,'nc::constants']]], - ['milliseconds_5fper_5fsecond_608',['MILLISECONDS_PER_SECOND',['../namespacenc_1_1constants.html#a4373df6d6df75334290f4240f174aeb0',1,'nc::constants']]], - ['min_609',['min',['../classnc_1_1_nd_array.html#a7f0c49ac50a79ba24ea8d351ee70fd55',1,'nc::NdArray::min()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a420b21e23e9673bea71980f55bf82d03',1,'nc::DtypeInfo< std::complex< dtype > >::min()'],['../classnc_1_1_dtype_info.html#ab566f68bc6b82c06b5a3df887f87ab74',1,'nc::DtypeInfo::min()'],['../namespacenc.html#a8a61a49362258590b70289fd63fb2d8e',1,'nc::min()']]], - ['min_2ehpp_610',['min.hpp',['../min_8hpp.html',1,'']]], - ['min_5felement_611',['min_element',['../namespacenc_1_1stl__algorithms.html#af6291d1011c61c416134bc28def6f3ac',1,'nc::stl_algorithms::min_element(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#acb252e962fc7cedee9f4257453480d2b',1,'nc::stl_algorithms::min_element(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], - ['minimum_612',['minimum',['../namespacenc.html#a8499c0529d36d402e32b3990d31429e8',1,'nc']]], - ['minimum_2ehpp_613',['minimum.hpp',['../minimum_8hpp.html',1,'']]], - ['minimumfilter_614',['minimumFilter',['../namespacenc_1_1filter.html#ad4b7a2f39d82320559353b151aec3585',1,'nc::filter']]], - ['minimumfilter_2ehpp_615',['minimumFilter.hpp',['../minimum_filter_8hpp.html',1,'']]], - ['minimumfilter1d_2ehpp_616',['minimumFilter1d.hpp',['../minimum_filter1d_8hpp.html',1,'']]], - ['minmax_5felement_617',['minmax_element',['../namespacenc_1_1stl__algorithms.html#a919ee9141ca95be989ad9b872a7ebd27',1,'nc::stl_algorithms::minmax_element(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#ae1007b77aafe5a99b4952d9a8d8307af',1,'nc::stl_algorithms::minmax_element(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], - ['minumumfilter1d_618',['minumumFilter1d',['../namespacenc_1_1filter.html#aca02565c2b898228312ef781bf4ed29c',1,'nc::filter']]], - ['minutes_619',['minutes',['../classnc_1_1coordinates_1_1_r_a.html#a7f4f4c06b26cad116e250a0dc7553b02',1,'nc::coordinates::RA::minutes()'],['../classnc_1_1coordinates_1_1_dec.html#aeaa851b538014aae5bf909117e8fcb42',1,'nc::coordinates::Dec::minutes()']]], - ['minutes_5fper_5fday_620',['MINUTES_PER_DAY',['../namespacenc_1_1constants.html#aa018ab3bca299694899f51683d5b3c0f',1,'nc::constants']]], - ['minutes_5fper_5fhour_621',['MINUTES_PER_HOUR',['../namespacenc_1_1constants.html#a84dfb71171d2a19b89afea89be57bc52',1,'nc::constants']]], - ['mirror_622',['MIRROR',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6a72a92ae9c1d172cdda196686278fbfc6',1,'nc::filter']]], - ['mirror1d_623',['mirror1d',['../namespacenc_1_1filter_1_1boundary.html#aaeb7c9f1da6f817190da9daa622c9c8d',1,'nc::filter::boundary']]], - ['mirror1d_2ehpp_624',['mirror1d.hpp',['../mirror1d_8hpp.html',1,'']]], - ['mirror2d_625',['mirror2d',['../namespacenc_1_1filter_1_1boundary.html#a2aaf003bb59428d53d1849dd188e10b8',1,'nc::filter::boundary']]], - ['mirror2d_2ehpp_626',['mirror2d.hpp',['../mirror2d_8hpp.html',1,'']]], - ['mod_627',['mod',['../namespacenc.html#ad8b53ff84658514a7007efba44802c5c',1,'nc']]], - ['mod_2ehpp_628',['mod.hpp',['../mod_8hpp.html',1,'']]], - ['multi_5fdot_629',['multi_dot',['../namespacenc_1_1linalg.html#a86ab79e41b748e7ea0ee4f2e0bc462a6',1,'nc::linalg']]], - ['multi_5fdot_2ehpp_630',['multi_dot.hpp',['../multi__dot_8hpp.html',1,'']]], - ['multiply_631',['multiply',['../namespacenc.html#a6d7cd3b57c93a891a00d881832fdba77',1,'nc::multiply(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#aa6c517bf71575054de46518d7c0fce92',1,'nc::multiply(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#a4965aed453e169ec8cbcd09a76b8afda',1,'nc::multiply(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#ad413820c1e92c7dcf83366f33399d6ef',1,'nc::multiply(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a78bbe031000f44fa4cdc0ad6b7825b7e',1,'nc::multiply(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#ace4de2d438459be581bd9fbc0c85c8d7',1,'nc::multiply(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a8bf62ccb0b68f25de562a08315dbb58e',1,'nc::multiply(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a786f53f7de209bb989c5965861d5dc27',1,'nc::multiply(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#afe5c0aa7fc5442e1453159e1fa78115a',1,'nc::multiply(dtype value, const NdArray< std::complex< dtype >> &inArray)']]], - ['multiply_2ehpp_632',['multiply.hpp',['../multiply_8hpp.html',1,'']]] + ['makepositiveandvalidate_622',['makePositiveAndValidate',['../classnc_1_1_slice.html#a4d518d51dad679d9a9c6938b065e38f8',1,'nc::Slice']]], + ['matmul_623',['matmul',['../namespacenc.html#ab39e4a1bc6bcd0f28dbd5806d5f2d0b9',1,'nc::matmul(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a82209f3c03cb63a659d28e7c87f7ee23',1,'nc::matmul(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a9f795cdfcf86a07f1a7febcb9d024c73',1,'nc::matmul(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)']]], + ['matmul_2ehpp_624',['matmul.hpp',['../matmul_8hpp.html',1,'']]], + ['matrix_5fpower_625',['matrix_power',['../namespacenc_1_1linalg.html#ad27c1996e4e27a6f8ba5d2aed0743bba',1,'nc::linalg']]], + ['matrix_5fpower_2ehpp_626',['matrix_power.hpp',['../matrix__power_8hpp.html',1,'']]], + ['max_627',['max',['../namespacenc.html#a4d5872f22ac07aeba503857cb5948bc1',1,'nc::max()'],['../classnc_1_1_dtype_info.html#a2a3dc0ba2812411660219f61189d8aca',1,'nc::DtypeInfo::max()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#acdf46b23b24e1421c38e6297c56024d1',1,'nc::DtypeInfo< std::complex< dtype > >::max()'],['../classnc_1_1_nd_array.html#abbca6c205525a4b706729f9f36acc06d',1,'nc::NdArray::max()']]], + ['max_2ehpp_628',['max.hpp',['../max_8hpp.html',1,'']]], + ['max_5felement_629',['max_element',['../namespacenc_1_1stl__algorithms.html#a334cd50f7f10f689f82fa2ba7c5d88b2',1,'nc::stl_algorithms::max_element(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#a282a4146afe33e4abb012e5c6b332948',1,'nc::stl_algorithms::max_element(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], + ['maximum_630',['maximum',['../namespacenc.html#a417e75e173adaf0f6a9905a60a62e135',1,'nc']]], + ['maximum_2ehpp_631',['maximum.hpp',['../maximum_8hpp.html',1,'']]], + ['maximumfilter_632',['maximumFilter',['../namespacenc_1_1filter.html#a237010b21fd77fa3b72c1fda0360f6a9',1,'nc::filter']]], + ['maximumfilter_2ehpp_633',['maximumFilter.hpp',['../maximum_filter_8hpp.html',1,'']]], + ['maximumfilter1d_634',['maximumFilter1d',['../namespacenc_1_1filter.html#a6760bbaeefd6338527665fa2426cf418',1,'nc::filter']]], + ['maximumfilter1d_2ehpp_635',['maximumFilter1d.hpp',['../maximum_filter1d_8hpp.html',1,'']]], + ['maxnumiterations_5f_636',['maxNumIterations_',['../classnc_1_1roots_1_1_iteration.html#a9b1c4ea8cf91c5308020c105293b4a02',1,'nc::roots::Iteration']]], + ['mean_637',['mean',['../namespacenc.html#ac0b868e518c5b489ce25b8a84ebc618b',1,'nc::mean(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#ae215351046b49fec834d006fd35a4078',1,'nc::mean(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], + ['mean_2ehpp_638',['mean.hpp',['../mean_8hpp.html',1,'']]], + ['median_639',['median',['../namespacenc.html#a737b54d3ec786235c90211a3ad4a5cfb',1,'nc::median()'],['../classnc_1_1_nd_array.html#a4d733d7a90d94c3f21e90ab79dc2cc14',1,'nc::NdArray::median()']]], + ['median_2ehpp_640',['median.hpp',['../median_8hpp.html',1,'']]], + ['medianfilter_641',['medianFilter',['../namespacenc_1_1filter.html#a6edb931e0ad73a60625c4854f11ab82a',1,'nc::filter']]], + ['medianfilter_2ehpp_642',['medianFilter.hpp',['../median_filter_8hpp.html',1,'']]], + ['medianfilter1d_643',['medianFilter1d',['../namespacenc_1_1filter.html#a39fc9c2648f0d223b63a5f1b7253bb40',1,'nc::filter']]], + ['medianfilter1d_2ehpp_644',['medianFilter1d.hpp',['../median_filter1d_8hpp.html',1,'']]], + ['meshgrid_645',['meshgrid',['../namespacenc.html#ae392e03f9e01b088a082c6055082df49',1,'nc::meshgrid(const NdArray< dtype > &inICoords, const NdArray< dtype > &inJCoords)'],['../namespacenc.html#a2338e094bb1195888e3f385d01627c4f',1,'nc::meshgrid(const Slice &inSlice1, const Slice &inSlice2)']]], + ['meshgrid_2ehpp_646',['meshgrid.hpp',['../meshgrid_8hpp.html',1,'']]], + ['milliseconds_5fper_5fday_647',['MILLISECONDS_PER_DAY',['../namespacenc_1_1constants.html#a2838aa56f95be8020a326aa6b9ba5c68',1,'nc::constants']]], + ['milliseconds_5fper_5fsecond_648',['MILLISECONDS_PER_SECOND',['../namespacenc_1_1constants.html#a4373df6d6df75334290f4240f174aeb0',1,'nc::constants']]], + ['min_649',['min',['../namespacenc.html#a8a61a49362258590b70289fd63fb2d8e',1,'nc::min()'],['../classnc_1_1_nd_array.html#a7f0c49ac50a79ba24ea8d351ee70fd55',1,'nc::NdArray::min()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a420b21e23e9673bea71980f55bf82d03',1,'nc::DtypeInfo< std::complex< dtype > >::min()'],['../classnc_1_1_dtype_info.html#ab566f68bc6b82c06b5a3df887f87ab74',1,'nc::DtypeInfo::min()']]], + ['min_2ehpp_650',['min.hpp',['../min_8hpp.html',1,'']]], + ['min_5felement_651',['min_element',['../namespacenc_1_1stl__algorithms.html#af6291d1011c61c416134bc28def6f3ac',1,'nc::stl_algorithms::min_element(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#acb252e962fc7cedee9f4257453480d2b',1,'nc::stl_algorithms::min_element(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], + ['minimum_652',['minimum',['../namespacenc.html#a8499c0529d36d402e32b3990d31429e8',1,'nc']]], + ['minimum_2ehpp_653',['minimum.hpp',['../minimum_8hpp.html',1,'']]], + ['minimumfilter_654',['minimumFilter',['../namespacenc_1_1filter.html#ad4b7a2f39d82320559353b151aec3585',1,'nc::filter']]], + ['minimumfilter_2ehpp_655',['minimumFilter.hpp',['../minimum_filter_8hpp.html',1,'']]], + ['minimumfilter1d_2ehpp_656',['minimumFilter1d.hpp',['../minimum_filter1d_8hpp.html',1,'']]], + ['minmax_5felement_657',['minmax_element',['../namespacenc_1_1stl__algorithms.html#a919ee9141ca95be989ad9b872a7ebd27',1,'nc::stl_algorithms::minmax_element(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#ae1007b77aafe5a99b4952d9a8d8307af',1,'nc::stl_algorithms::minmax_element(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], + ['minumumfilter1d_658',['minumumFilter1d',['../namespacenc_1_1filter.html#aca02565c2b898228312ef781bf4ed29c',1,'nc::filter']]], + ['minutes_659',['minutes',['../classnc_1_1coordinates_1_1_dec.html#aeaa851b538014aae5bf909117e8fcb42',1,'nc::coordinates::Dec::minutes()'],['../classnc_1_1coordinates_1_1_r_a.html#a7f4f4c06b26cad116e250a0dc7553b02',1,'nc::coordinates::RA::minutes()']]], + ['minutes_5fper_5fday_660',['MINUTES_PER_DAY',['../namespacenc_1_1constants.html#aa018ab3bca299694899f51683d5b3c0f',1,'nc::constants']]], + ['minutes_5fper_5fhour_661',['MINUTES_PER_HOUR',['../namespacenc_1_1constants.html#a84dfb71171d2a19b89afea89be57bc52',1,'nc::constants']]], + ['mirror_662',['MIRROR',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6a72a92ae9c1d172cdda196686278fbfc6',1,'nc::filter']]], + ['mirror1d_663',['mirror1d',['../namespacenc_1_1filter_1_1boundary.html#aaeb7c9f1da6f817190da9daa622c9c8d',1,'nc::filter::boundary']]], + ['mirror1d_2ehpp_664',['mirror1d.hpp',['../mirror1d_8hpp.html',1,'']]], + ['mirror2d_665',['mirror2d',['../namespacenc_1_1filter_1_1boundary.html#a2aaf003bb59428d53d1849dd188e10b8',1,'nc::filter::boundary']]], + ['mirror2d_2ehpp_666',['mirror2d.hpp',['../mirror2d_8hpp.html',1,'']]], + ['mod_667',['mod',['../namespacenc.html#ad8b53ff84658514a7007efba44802c5c',1,'nc']]], + ['mod_2ehpp_668',['mod.hpp',['../mod_8hpp.html',1,'']]], + ['multi_5fdot_669',['multi_dot',['../namespacenc_1_1linalg.html#a86ab79e41b748e7ea0ee4f2e0bc462a6',1,'nc::linalg']]], + ['multi_5fdot_2ehpp_670',['multi_dot.hpp',['../multi__dot_8hpp.html',1,'']]], + ['multiply_671',['multiply',['../namespacenc.html#a6d7cd3b57c93a891a00d881832fdba77',1,'nc::multiply(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#aa6c517bf71575054de46518d7c0fce92',1,'nc::multiply(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#a4965aed453e169ec8cbcd09a76b8afda',1,'nc::multiply(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#ad413820c1e92c7dcf83366f33399d6ef',1,'nc::multiply(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a78bbe031000f44fa4cdc0ad6b7825b7e',1,'nc::multiply(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#ace4de2d438459be581bd9fbc0c85c8d7',1,'nc::multiply(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a8bf62ccb0b68f25de562a08315dbb58e',1,'nc::multiply(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a786f53f7de209bb989c5965861d5dc27',1,'nc::multiply(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#afe5c0aa7fc5442e1453159e1fa78115a',1,'nc::multiply(dtype value, const NdArray< std::complex< dtype >> &inArray)']]], + ['multiply_2ehpp_672',['multiply.hpp',['../multiply_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/all_d.html b/docs/doxygen/html/search/all_d.html index 3fb5ce30d..af7f2f0f5 100644 --- a/docs/doxygen/html/search/all_d.html +++ b/docs/doxygen/html/search/all_d.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_d.js b/docs/doxygen/html/search/all_d.js index a211ea207..e9c9264c5 100644 --- a/docs/doxygen/html/search/all_d.js +++ b/docs/doxygen/html/search/all_d.js @@ -1,107 +1,114 @@ var searchData= [ - ['boundary_633',['boundary',['../namespacenc_1_1filter_1_1boundary.html',1,'nc::filter']]], - ['constants_634',['constants',['../namespacenc_1_1constants.html',1,'nc']]], - ['coordinates_635',['coordinates',['../namespacenc_1_1coordinates.html',1,'nc']]], - ['endian_636',['endian',['../namespacenc_1_1endian.html',1,'nc']]], - ['error_637',['error',['../namespacenc_1_1error.html',1,'nc']]], - ['filesystem_638',['filesystem',['../namespacenc_1_1filesystem.html',1,'nc']]], - ['filter_639',['filter',['../namespacenc_1_1filter.html',1,'nc']]], - ['imageprocessing_640',['imageProcessing',['../namespacenc_1_1image_processing.html',1,'nc']]], - ['integrate_641',['integrate',['../namespacenc_1_1integrate.html',1,'nc']]], - ['linalg_642',['linalg',['../namespacenc_1_1linalg.html',1,'nc']]], - ['name_643',['name',['../classnc_1_1filesystem_1_1_file.html#a29fd40eb720c1caad3dcef59e2f215a4',1,'nc::filesystem::File']]], - ['nan_644',['nan',['../namespacenc_1_1constants.html#af94758715a9a5157d7ca95ab89d390ac',1,'nc::constants']]], - ['nan_5fto_5fnum_645',['nan_to_num',['../namespacenc.html#ab5b2173fccfe4b4a8c91edb704c51b12',1,'nc']]], - ['nan_5fto_5fnum_2ehpp_646',['nan_to_num.hpp',['../nan__to__num_8hpp.html',1,'']]], - ['nanargmax_647',['nanargmax',['../namespacenc.html#a5f3d3d15fae35dc9538f6daa792f3e1b',1,'nc']]], - ['nanargmax_2ehpp_648',['nanargmax.hpp',['../nanargmax_8hpp.html',1,'']]], - ['nanargmin_649',['nanargmin',['../namespacenc.html#a0c69df200cbe88324129ae3c6fc05330',1,'nc']]], - ['nanargmin_2ehpp_650',['nanargmin.hpp',['../nanargmin_8hpp.html',1,'']]], - ['nancumprod_651',['nancumprod',['../namespacenc.html#ad22449b2b6c92860eed3670d68ea4ba4',1,'nc']]], - ['nancumprod_2ehpp_652',['nancumprod.hpp',['../nancumprod_8hpp.html',1,'']]], - ['nancumsum_653',['nancumsum',['../namespacenc.html#a626089b225be4978da275ef9a7ecf451',1,'nc']]], - ['nancumsum_2ehpp_654',['nancumsum.hpp',['../nancumsum_8hpp.html',1,'']]], - ['nanmax_655',['nanmax',['../namespacenc.html#a00ab1c4ed4358cba5e87a3d107720474',1,'nc']]], - ['nanmax_2ehpp_656',['nanmax.hpp',['../nanmax_8hpp.html',1,'']]], - ['nanmean_657',['nanmean',['../namespacenc.html#acac66186b7fff8d8cdc1dd3f37b98297',1,'nc']]], - ['nanmean_2ehpp_658',['nanmean.hpp',['../nanmean_8hpp.html',1,'']]], - ['nanmedian_659',['nanmedian',['../namespacenc.html#a60fd6cc6607d10bf8fe4913a5daa7f3a',1,'nc']]], - ['nanmedian_2ehpp_660',['nanmedian.hpp',['../nanmedian_8hpp.html',1,'']]], - ['nanmin_661',['nanmin',['../namespacenc.html#a2f4b9832c72a282a23da1dad186d36d8',1,'nc']]], - ['nanmin_2ehpp_662',['nanmin.hpp',['../nanmin_8hpp.html',1,'']]], - ['nanpercentile_663',['nanpercentile',['../namespacenc.html#ade1f6fe4e6860b046b50e05252a61c0a',1,'nc']]], - ['nanpercentile_2ehpp_664',['nanpercentile.hpp',['../nanpercentile_8hpp.html',1,'']]], - ['nanprod_665',['nanprod',['../namespacenc.html#a8121a0aa2907751c6fd7db34dfc28719',1,'nc']]], - ['nanprod_2ehpp_666',['nanprod.hpp',['../nanprod_8hpp.html',1,'']]], - ['nans_667',['nans',['../classnc_1_1_nd_array.html#aa7592409ea9bc24e4324725e5ff74ee9',1,'nc::NdArray::nans()'],['../namespacenc.html#a1c3fe37572a53d83154138b2de5d5e8b',1,'nc::nans(uint32 inSquareSize)'],['../namespacenc.html#aea74254d1b55e5b9adf1e6610b0da9d6',1,'nc::nans(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a6bec1d7117a467081676bfd8d31fcd87',1,'nc::nans(const Shape &inShape)']]], - ['nans_2ehpp_668',['nans.hpp',['../nans_8hpp.html',1,'']]], - ['nans_5flike_669',['nans_like',['../namespacenc.html#aae8b7e12e53ff6e21d555c1eabadf615',1,'nc']]], - ['nans_5flike_2ehpp_670',['nans_like.hpp',['../nans__like_8hpp.html',1,'']]], - ['nanstdev_671',['nanstdev',['../namespacenc.html#a3ae8768b4362f564849bc2ba0115450a',1,'nc']]], - ['nanstdev_2ehpp_672',['nanstdev.hpp',['../nanstdev_8hpp.html',1,'']]], - ['nansum_673',['nansum',['../namespacenc.html#a69b05488ef7b28eefa3bc733836a4e48',1,'nc']]], - ['nansum_2ehpp_674',['nansum.hpp',['../nansum_8hpp.html',1,'']]], - ['nanvar_675',['nanvar',['../namespacenc.html#a333035c5f246c01da1de4ae7015f5715',1,'nc']]], - ['nanvar_2ehpp_676',['nanvar.hpp',['../nanvar_8hpp.html',1,'']]], - ['native_677',['NATIVE',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152af78504d96ba7177dc0c6784905ac8743',1,'nc']]], - ['nbytes_678',['nbytes',['../namespacenc.html#a66464387c8d92793b5355e2afd107cbc',1,'nc::nbytes()'],['../classnc_1_1_nd_array.html#a775e07af6829b5336969c703c4eddba7',1,'nc::NdArray::nbytes()']]], - ['nbytes_2ehpp_679',['nbytes.hpp',['../nbytes_8hpp.html',1,'']]], - ['nc_680',['nc',['../namespacenc.html',1,'']]], - ['ndarray_681',['NdArray',['../classnc_1_1_nd_array.html',1,'nc::NdArray< dtype, Allocator >'],['../classnc_1_1_nd_array.html#a8509cda74ae6f29995dd8a9f27d30d11',1,'nc::NdArray::NdArray(size_type inNumRows, size_type inNumCols)'],['../classnc_1_1_nd_array.html#a7b0f43ea1853dcc471949c0e7eb977f5',1,'nc::NdArray::NdArray(const std::list< dtype > &inList)'],['../classnc_1_1_nd_array.html#a567a45c944672939e89fa507236d1158',1,'nc::NdArray::NdArray(const std::deque< std::deque< dtype >> &in2dDeque)'],['../classnc_1_1_nd_array.html#ad94cfcf69d664d94e81fc98a0a61d193',1,'nc::NdArray::NdArray(const std::deque< dtype > &inDeque)'],['../classnc_1_1_nd_array.html#a00cddf06371547d613388cefeece2cc0',1,'nc::NdArray::NdArray(std::vector< std::array< dtype, Dim1Size >> &in2dArray, bool copy=true)'],['../classnc_1_1_nd_array.html#a9d7045ecdff86bac3306a8bfd9a787eb',1,'nc::NdArray::NdArray(const std::vector< std::vector< dtype >> &in2dVector)'],['../classnc_1_1_nd_array.html#a1847487093139deb6a541cfaa43c3d90',1,'nc::NdArray::NdArray(std::vector< dtype > &inVector, bool copy=true)'],['../classnc_1_1_nd_array.html#ad9ccdeb2572f239a33ca5fbb473b513a',1,'nc::NdArray::NdArray(std::array< std::array< dtype, Dim1Size >, Dim0Size > &in2dArray, bool copy=true)'],['../classnc_1_1_nd_array.html#ad724d08ab913c125a38bc528e68cad8e',1,'nc::NdArray::NdArray(std::array< dtype, ArraySize > &inArray, bool copy=true)'],['../classnc_1_1_nd_array.html#a1877502ba79a59c3a9b144e6111def1a',1,'nc::NdArray::NdArray(const std::initializer_list< std::initializer_list< dtype > > &inList)'],['../classnc_1_1_nd_array.html#a9b5658aaaff185187c964a6bf3f4f5a3',1,'nc::NdArray::NdArray(const std::initializer_list< dtype > &inList)'],['../classnc_1_1_nd_array.html#af8cd2e1b7214c4b8b8b784e1b5265c11',1,'nc::NdArray::NdArray(const Shape &inShape)'],['../classnc_1_1_nd_array.html#ae04a364f503fe72c06d2f7cd78e712d6',1,'nc::NdArray::NdArray(const NdArray< dtype > &inOtherArray)'],['../classnc_1_1_nd_array.html#a91801907e76fd8ecc9ce7ff3b85ea9bd',1,'nc::NdArray::NdArray(size_type inSquareSize)'],['../classnc_1_1_nd_array.html#a7b46bea4f56ab2327fc291dac4e75788',1,'nc::NdArray::NdArray()=default'],['../classnc_1_1_nd_array.html#aa6bf0b18b1ebb54b2a1fd4e4b33253dd',1,'nc::NdArray::NdArray(NdArray< dtype > &&inOtherArray) noexcept'],['../classnc_1_1_nd_array.html#a46c4fbd999ab1d612586191a15ada4b7',1,'nc::NdArray::NdArray(Iterator inFirst, Iterator inLast)'],['../classnc_1_1_nd_array.html#ad8160a6009ce9c0c8bbb384261ce18bb',1,'nc::NdArray::NdArray(const_pointer inPtr, size_type size)'],['../classnc_1_1_nd_array.html#a7473135d0434a04abec09a884b5683cc',1,'nc::NdArray::NdArray(const_pointer inPtr, UIntType1 numRows, UIntType2 numCols)'],['../classnc_1_1_nd_array.html#aee44fee3e2c882d490898c082db39449',1,'nc::NdArray::NdArray(pointer inPtr, size_type size, Bool takeOwnership) noexcept'],['../classnc_1_1_nd_array.html#a7fcb1cf40a8402e8ba6353e58eed8dbd',1,'nc::NdArray::NdArray(pointer inPtr, uint32 numRows, uint32 numCols, Bool takeOwnership) noexcept']]], - ['ndarray_2ehpp_682',['NdArray.hpp',['../_nd_array_8hpp.html',1,'']]], - ['ndarraycolumniterator_683',['NdArrayColumnIterator',['../classnc_1_1_nd_array_column_iterator.html',1,'nc']]], - ['ndarrayconstcolumniterator_684',['NdArrayConstColumnIterator',['../classnc_1_1_nd_array_const_column_iterator.html',1,'nc::NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType >'],['../classnc_1_1_nd_array_const_column_iterator.html#a3c779a77e6a0920d8fc799931feb3c3d',1,'nc::NdArrayConstColumnIterator::NdArrayConstColumnIterator()=default'],['../classnc_1_1_nd_array_const_column_iterator.html#aff03e1020fa6e935fb0fe2a926a4f378',1,'nc::NdArrayConstColumnIterator::NdArrayConstColumnIterator(pointer ptr, SizeType numRows, SizeType numCols) noexcept']]], - ['ndarrayconstiterator_685',['NdArrayConstIterator',['../classnc_1_1_nd_array_const_iterator.html',1,'nc::NdArrayConstIterator< dtype, PointerType, DifferenceType >'],['../classnc_1_1_nd_array_const_iterator.html#a518e77992a6b8710c2d43734a84f2006',1,'nc::NdArrayConstIterator::NdArrayConstIterator()=default'],['../classnc_1_1_nd_array_const_iterator.html#a8f0504fbf9ea4d0f89cda5b7e120b6f0',1,'nc::NdArrayConstIterator::NdArrayConstIterator(pointer ptr)']]], - ['ndarraycore_2ehpp_686',['NdArrayCore.hpp',['../_nd_array_core_8hpp.html',1,'']]], - ['ndarrayiterator_687',['NdArrayIterator',['../classnc_1_1_nd_array_iterator.html',1,'nc']]], - ['ndarrayiterators_2ehpp_688',['NdArrayIterators.hpp',['../_nd_array_iterators_8hpp.html',1,'']]], - ['ndarrayoperators_2ehpp_689',['NdArrayOperators.hpp',['../_nd_array_operators_8hpp.html',1,'']]], - ['nearest_690',['NEAREST',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6aad135772d7cf93dd0ccf9d2474b34e6a',1,'nc::filter']]], - ['nearest1d_691',['nearest1d',['../namespacenc_1_1filter_1_1boundary.html#ac5f60c43aa94490993eee9fcc1e105b1',1,'nc::filter::boundary']]], - ['nearest1d_2ehpp_692',['nearest1d.hpp',['../nearest1d_8hpp.html',1,'']]], - ['nearest2d_693',['nearest2d',['../namespacenc_1_1filter_1_1boundary.html#a7f70d66ead018652239bb3334a040850',1,'nc::filter::boundary']]], - ['nearest2d_2ehpp_694',['nearest2d.hpp',['../nearest2d_8hpp.html',1,'']]], - ['negative_695',['NEGATIVE',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94a50546bf973283065b6ccf09faf7a580a',1,'nc::coordinates']]], - ['negative_696',['negative',['../namespacenc.html#a678a4671c949113db1578078d409bb91',1,'nc']]], - ['negative_2ehpp_697',['negative.hpp',['../negative_8hpp.html',1,'']]], - ['negativebinomial_698',['negativeBinomial',['../namespacenc_1_1random.html#a1a15a08fe9134f5dcf5e7b32eb1de5e2',1,'nc::random::negativeBinomial(dtype inN, double inP=0.5)'],['../namespacenc_1_1random.html#ac6181e54b9cae303574f9c5fad33cfc2',1,'nc::random::negativeBinomial(const Shape &inShape, dtype inN, double inP=0.5)']]], - ['negativebinomial_2ehpp_699',['negativeBinomial.hpp',['../negative_binomial_8hpp.html',1,'']]], - ['newbyteorder_700',['newbyteorder',['../classnc_1_1_nd_array.html#ae5fe2e501921c3361c0edc66030b772d',1,'nc::NdArray::newbyteorder()'],['../namespacenc.html#a4d2ae51817f2acee83e2df0e04a8bac5',1,'nc::newbyteorder(dtype inValue, Endian inEndianess)'],['../namespacenc.html#adfc5c49151c50d90fce45c676b0fcaa4',1,'nc::newbyteorder(const NdArray< dtype > &inArray, Endian inEndianess)']]], - ['newbyteorder_2ehpp_701',['newbyteorder.hpp',['../newbyteorder_8hpp.html',1,'']]], - ['newton_702',['Newton',['../classnc_1_1roots_1_1_newton.html',1,'nc::roots::Newton'],['../classnc_1_1roots_1_1_newton.html#aecc72e3899f42b277536689439ea24bc',1,'nc::roots::Newton::Newton(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f, std::function< double(double)> fPrime) noexcept'],['../classnc_1_1roots_1_1_newton.html#ab5b82361c4ce325e6165e023c0255d3e',1,'nc::roots::Newton::Newton(const double epsilon, std::function< double(double)> f, std::function< double(double)> fPrime) noexcept']]], - ['newton_2ehpp_703',['Newton.hpp',['../_newton_8hpp.html',1,'']]], - ['nlerp_704',['nlerp',['../classnc_1_1rotations_1_1_quaternion.html#a314478702a3da52f2be3f422057d8732',1,'nc::rotations::Quaternion::nlerp(const Quaternion &inQuat1, const Quaternion &inQuat2, double inPercent)'],['../classnc_1_1rotations_1_1_quaternion.html#ab055510c1338490b957de867cecaf790',1,'nc::rotations::Quaternion::nlerp(const Quaternion &inQuat2, double inPercent) const']]], - ['noncentralchisquared_705',['nonCentralChiSquared',['../namespacenc_1_1random.html#af01395c7355ee4c0f36441c40039e82d',1,'nc::random::nonCentralChiSquared(const Shape &inShape, dtype inK=1, dtype inLambda=1)'],['../namespacenc_1_1random.html#abf3cab0396026700ebf2d2ffa5e13fa6',1,'nc::random::nonCentralChiSquared(dtype inK=1, dtype inLambda=1)']]], - ['noncentralchisquared_2ehpp_706',['nonCentralChiSquared.hpp',['../non_central_chi_squared_8hpp.html',1,'']]], - ['none_707',['NONE',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84ab50339a10e1de285ac99d4c3990b8693',1,'nc']]], - ['none_708',['none',['../classnc_1_1_nd_array.html#a379f8cd88dc84a38d668cb7bf97078ee',1,'nc::NdArray::none()'],['../namespacenc.html#ada2840f1202c44082ee75b5f5705399d',1,'nc::none()']]], - ['none_2ehpp_709',['none.hpp',['../none_8hpp.html',1,'']]], - ['none_5fof_710',['none_of',['../namespacenc_1_1stl__algorithms.html#a2804ccb14980f96c7680838adc3b2762',1,'nc::stl_algorithms']]], - ['nonzero_711',['nonzero',['../namespacenc.html#a46ce9bcc6ba641e0550934b981175683',1,'nc::nonzero()'],['../classnc_1_1_nd_array.html#a6cc8c7b53a707468d6da112849970904',1,'nc::NdArray::nonzero()']]], - ['nonzero_2ehpp_712',['nonzero.hpp',['../nonzero_8hpp.html',1,'']]], - ['norm_713',['norm',['../namespacenc.html#a13467936d679d6d078d585504bc42642',1,'nc::norm(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#aa57b910a1d9a448a15e76bd72563ac5d',1,'nc::norm(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../classnc_1_1_vec3.html#a6c177e1f5c00584279a0527d3053dee8',1,'nc::Vec3::norm()'],['../classnc_1_1_vec2.html#ab6922f6c089b20e9d019301fddc6dc0a',1,'nc::Vec2::norm()']]], - ['norm_2ehpp_714',['norm.hpp',['../norm_8hpp.html',1,'']]], - ['normal_715',['normal',['../namespacenc_1_1random.html#ab655c4af3dac07aeff39efd50c120f4d',1,'nc::random::normal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a0d52ff6ccaa63bc36348ba39e5936056',1,'nc::random::normal(dtype inMean=0, dtype inSigma=1)']]], - ['normal_2ehpp_716',['normal.hpp',['../normal_8hpp.html',1,'']]], - ['normalize_717',['normalize',['../classnc_1_1_vec3.html#a6356b462b11a156b923a7c79b9747c25',1,'nc::Vec3::normalize()'],['../classnc_1_1_vec2.html#a8d8a3ec28ef8336ab02dcd964a3e836c',1,'nc::Vec2::normalize()']]], - ['not_5fequal_718',['not_equal',['../namespacenc.html#ac6c0da616068bc667891c0a460431de3',1,'nc']]], - ['not_5fequal_2ehpp_719',['not_equal.hpp',['../not__equal_8hpp.html',1,'']]], - ['nth_5felement_720',['nth_element',['../namespacenc_1_1stl__algorithms.html#a9928869b550b082898709c5671936079',1,'nc::stl_algorithms::nth_element(RandomIt first, RandomIt nth, RandomIt last, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#af5ef45ab7814938799020ad24358b734',1,'nc::stl_algorithms::nth_element(RandomIt first, RandomIt nth, RandomIt last) noexcept']]], - ['num2str_721',['num2str',['../namespacenc_1_1utils.html#a16a6ad93c420ed7a003d9921bee1a7c6',1,'nc::utils']]], - ['num2str_2ehpp_722',['num2str.hpp',['../num2str_8hpp.html',1,'']]], - ['numcols_723',['numCols',['../classnc_1_1_nd_array.html#a0049b5d6d1d99463edc773f01eb7c091',1,'nc::NdArray']]], - ['numcpp_724',['NumCpp',['../index.html',1,'']]], - ['numcpp_2ehpp_725',['NumCpp.hpp',['../_num_cpp_8hpp.html',1,'']]], - ['numelements_726',['numElements',['../classnc_1_1_slice.html#aab35be40c38521a4bd9b3c99b3d33731',1,'nc::Slice']]], - ['numiterations_727',['numIterations',['../classnc_1_1roots_1_1_iteration.html#ab3192d0f9de4b8b27b23013c65489e5a',1,'nc::roots::Iteration']]], - ['numiterations_5f_728',['numIterations_',['../classnc_1_1roots_1_1_iteration.html#a84d7f2f7412d1f54861edeacc7bc0c20',1,'nc::roots::Iteration']]], - ['numrows_729',['numRows',['../classnc_1_1_nd_array.html#a2dbdc72c98c216a133f7e1a8d3c067f7',1,'nc::NdArray']]], - ['polynomial_730',['polynomial',['../namespacenc_1_1polynomial.html',1,'nc']]], - ['random_731',['random',['../namespacenc_1_1random.html',1,'nc']]], - ['roots_732',['roots',['../namespacenc_1_1roots.html',1,'nc']]], - ['rotations_733',['rotations',['../namespacenc_1_1rotations.html',1,'nc']]], - ['special_734',['special',['../namespacenc_1_1special.html',1,'nc']]], - ['stl_5falgorithms_735',['stl_algorithms',['../namespacenc_1_1stl__algorithms.html',1,'nc']]], - ['utils_736',['utils',['../namespacenc_1_1utils.html',1,'nc']]] + ['boundary_673',['boundary',['../namespacenc_1_1filter_1_1boundary.html',1,'nc::filter']]], + ['constants_674',['constants',['../namespacenc_1_1constants.html',1,'nc']]], + ['coordinates_675',['coordinates',['../namespacenc_1_1coordinates.html',1,'nc']]], + ['detail_676',['detail',['../namespacenc_1_1edac_1_1detail.html',1,'nc::edac']]], + ['edac_677',['edac',['../namespacenc_1_1edac.html',1,'nc']]], + ['endian_678',['endian',['../namespacenc_1_1endian.html',1,'nc']]], + ['error_679',['error',['../namespacenc_1_1error.html',1,'nc']]], + ['filesystem_680',['filesystem',['../namespacenc_1_1filesystem.html',1,'nc']]], + ['filter_681',['filter',['../namespacenc_1_1filter.html',1,'nc']]], + ['imageprocessing_682',['imageProcessing',['../namespacenc_1_1image_processing.html',1,'nc']]], + ['integrate_683',['integrate',['../namespacenc_1_1integrate.html',1,'nc']]], + ['linalg_684',['linalg',['../namespacenc_1_1linalg.html',1,'nc']]], + ['name_685',['name',['../classnc_1_1filesystem_1_1_file.html#a29fd40eb720c1caad3dcef59e2f215a4',1,'nc::filesystem::File']]], + ['nan_686',['nan',['../namespacenc_1_1constants.html#af94758715a9a5157d7ca95ab89d390ac',1,'nc::constants']]], + ['nan_5fto_5fnum_687',['nan_to_num',['../namespacenc.html#ab5b2173fccfe4b4a8c91edb704c51b12',1,'nc']]], + ['nan_5fto_5fnum_2ehpp_688',['nan_to_num.hpp',['../nan__to__num_8hpp.html',1,'']]], + ['nanargmax_689',['nanargmax',['../namespacenc.html#a5f3d3d15fae35dc9538f6daa792f3e1b',1,'nc']]], + ['nanargmax_2ehpp_690',['nanargmax.hpp',['../nanargmax_8hpp.html',1,'']]], + ['nanargmin_691',['nanargmin',['../namespacenc.html#a0c69df200cbe88324129ae3c6fc05330',1,'nc']]], + ['nanargmin_2ehpp_692',['nanargmin.hpp',['../nanargmin_8hpp.html',1,'']]], + ['nancumprod_693',['nancumprod',['../namespacenc.html#ad22449b2b6c92860eed3670d68ea4ba4',1,'nc']]], + ['nancumprod_2ehpp_694',['nancumprod.hpp',['../nancumprod_8hpp.html',1,'']]], + ['nancumsum_695',['nancumsum',['../namespacenc.html#a626089b225be4978da275ef9a7ecf451',1,'nc']]], + ['nancumsum_2ehpp_696',['nancumsum.hpp',['../nancumsum_8hpp.html',1,'']]], + ['nanmax_697',['nanmax',['../namespacenc.html#a00ab1c4ed4358cba5e87a3d107720474',1,'nc']]], + ['nanmax_2ehpp_698',['nanmax.hpp',['../nanmax_8hpp.html',1,'']]], + ['nanmean_699',['nanmean',['../namespacenc.html#acac66186b7fff8d8cdc1dd3f37b98297',1,'nc']]], + ['nanmean_2ehpp_700',['nanmean.hpp',['../nanmean_8hpp.html',1,'']]], + ['nanmedian_701',['nanmedian',['../namespacenc.html#a60fd6cc6607d10bf8fe4913a5daa7f3a',1,'nc']]], + ['nanmedian_2ehpp_702',['nanmedian.hpp',['../nanmedian_8hpp.html',1,'']]], + ['nanmin_703',['nanmin',['../namespacenc.html#a2f4b9832c72a282a23da1dad186d36d8',1,'nc']]], + ['nanmin_2ehpp_704',['nanmin.hpp',['../nanmin_8hpp.html',1,'']]], + ['nanpercentile_705',['nanpercentile',['../namespacenc.html#ade1f6fe4e6860b046b50e05252a61c0a',1,'nc']]], + ['nanpercentile_2ehpp_706',['nanpercentile.hpp',['../nanpercentile_8hpp.html',1,'']]], + ['nanprod_707',['nanprod',['../namespacenc.html#a8121a0aa2907751c6fd7db34dfc28719',1,'nc']]], + ['nanprod_2ehpp_708',['nanprod.hpp',['../nanprod_8hpp.html',1,'']]], + ['nans_709',['nans',['../namespacenc.html#a6bec1d7117a467081676bfd8d31fcd87',1,'nc::nans(const Shape &inShape)'],['../namespacenc.html#aea74254d1b55e5b9adf1e6610b0da9d6',1,'nc::nans(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a1c3fe37572a53d83154138b2de5d5e8b',1,'nc::nans(uint32 inSquareSize)'],['../classnc_1_1_nd_array.html#aa7592409ea9bc24e4324725e5ff74ee9',1,'nc::NdArray::nans()']]], + ['nans_2ehpp_710',['nans.hpp',['../nans_8hpp.html',1,'']]], + ['nans_5flike_711',['nans_like',['../namespacenc.html#aae8b7e12e53ff6e21d555c1eabadf615',1,'nc']]], + ['nans_5flike_2ehpp_712',['nans_like.hpp',['../nans__like_8hpp.html',1,'']]], + ['nanstdev_713',['nanstdev',['../namespacenc.html#a3ae8768b4362f564849bc2ba0115450a',1,'nc']]], + ['nanstdev_2ehpp_714',['nanstdev.hpp',['../nanstdev_8hpp.html',1,'']]], + ['nansum_715',['nansum',['../namespacenc.html#a69b05488ef7b28eefa3bc733836a4e48',1,'nc']]], + ['nansum_2ehpp_716',['nansum.hpp',['../nansum_8hpp.html',1,'']]], + ['nanvar_717',['nanvar',['../namespacenc.html#a333035c5f246c01da1de4ae7015f5715',1,'nc']]], + ['nanvar_2ehpp_718',['nanvar.hpp',['../nanvar_8hpp.html',1,'']]], + ['native_719',['NATIVE',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152af78504d96ba7177dc0c6784905ac8743',1,'nc']]], + ['nbytes_720',['nbytes',['../classnc_1_1_nd_array.html#a775e07af6829b5336969c703c4eddba7',1,'nc::NdArray::nbytes()'],['../namespacenc.html#a66464387c8d92793b5355e2afd107cbc',1,'nc::nbytes()']]], + ['nbytes_2ehpp_721',['nbytes.hpp',['../nbytes_8hpp.html',1,'']]], + ['nc_722',['nc',['../namespacenc.html',1,'']]], + ['ndarray_723',['NdArray',['../classnc_1_1_nd_array.html',1,'nc::NdArray< dtype, Allocator >'],['../classnc_1_1_nd_array.html#a7473135d0434a04abec09a884b5683cc',1,'nc::NdArray::NdArray(const_pointer inPtr, UIntType1 numRows, UIntType2 numCols)'],['../classnc_1_1_nd_array.html#ad94cfcf69d664d94e81fc98a0a61d193',1,'nc::NdArray::NdArray(const std::deque< dtype > &inDeque)'],['../classnc_1_1_nd_array.html#ad8160a6009ce9c0c8bbb384261ce18bb',1,'nc::NdArray::NdArray(const_pointer inPtr, size_type size)'],['../classnc_1_1_nd_array.html#a46c4fbd999ab1d612586191a15ada4b7',1,'nc::NdArray::NdArray(Iterator inFirst, Iterator inLast)'],['../classnc_1_1_nd_array.html#a567a45c944672939e89fa507236d1158',1,'nc::NdArray::NdArray(const std::deque< std::deque< dtype >> &in2dDeque)'],['../classnc_1_1_nd_array.html#a7b46bea4f56ab2327fc291dac4e75788',1,'nc::NdArray::NdArray()=default'],['../classnc_1_1_nd_array.html#a91801907e76fd8ecc9ce7ff3b85ea9bd',1,'nc::NdArray::NdArray(size_type inSquareSize)'],['../classnc_1_1_nd_array.html#a8509cda74ae6f29995dd8a9f27d30d11',1,'nc::NdArray::NdArray(size_type inNumRows, size_type inNumCols)'],['../classnc_1_1_nd_array.html#af8cd2e1b7214c4b8b8b784e1b5265c11',1,'nc::NdArray::NdArray(const Shape &inShape)'],['../classnc_1_1_nd_array.html#a66ae5664d66e900a48ca1d9a607f655e',1,'nc::NdArray::NdArray(std::initializer_list< dtype > inList)'],['../classnc_1_1_nd_array.html#a1877502ba79a59c3a9b144e6111def1a',1,'nc::NdArray::NdArray(const std::initializer_list< std::initializer_list< dtype > > &inList)'],['../classnc_1_1_nd_array.html#ad724d08ab913c125a38bc528e68cad8e',1,'nc::NdArray::NdArray(std::array< dtype, ArraySize > &inArray, bool copy=true)'],['../classnc_1_1_nd_array.html#ad9ccdeb2572f239a33ca5fbb473b513a',1,'nc::NdArray::NdArray(std::array< std::array< dtype, Dim1Size >, Dim0Size > &in2dArray, bool copy=true)'],['../classnc_1_1_nd_array.html#a1847487093139deb6a541cfaa43c3d90',1,'nc::NdArray::NdArray(std::vector< dtype > &inVector, bool copy=true)'],['../classnc_1_1_nd_array.html#a00cddf06371547d613388cefeece2cc0',1,'nc::NdArray::NdArray(std::vector< std::array< dtype, Dim1Size >> &in2dArray, bool copy=true)'],['../classnc_1_1_nd_array.html#a9d7045ecdff86bac3306a8bfd9a787eb',1,'nc::NdArray::NdArray(const std::vector< std::vector< dtype >> &in2dVector)'],['../classnc_1_1_nd_array.html#a7b0f43ea1853dcc471949c0e7eb977f5',1,'nc::NdArray::NdArray(const std::list< dtype > &inList)'],['../classnc_1_1_nd_array.html#aa6bf0b18b1ebb54b2a1fd4e4b33253dd',1,'nc::NdArray::NdArray(NdArray< dtype > &&inOtherArray) noexcept'],['../classnc_1_1_nd_array.html#ae04a364f503fe72c06d2f7cd78e712d6',1,'nc::NdArray::NdArray(const NdArray< dtype > &inOtherArray)'],['../classnc_1_1_nd_array.html#a7fcb1cf40a8402e8ba6353e58eed8dbd',1,'nc::NdArray::NdArray(pointer inPtr, uint32 numRows, uint32 numCols, Bool takeOwnership) noexcept'],['../classnc_1_1_nd_array.html#aee44fee3e2c882d490898c082db39449',1,'nc::NdArray::NdArray(pointer inPtr, size_type size, Bool takeOwnership) noexcept']]], + ['ndarray_2ehpp_724',['NdArray.hpp',['../_nd_array_8hpp.html',1,'']]], + ['ndarray_3c_20bool_20_3e_725',['NdArray< bool >',['../classnc_1_1_nd_array.html',1,'nc']]], + ['ndarray_3c_20double_20_3e_726',['NdArray< double >',['../classnc_1_1_nd_array.html',1,'nc']]], + ['ndarraycolumniterator_727',['NdArrayColumnIterator',['../classnc_1_1_nd_array_column_iterator.html',1,'nc']]], + ['ndarrayconstcolumniterator_728',['NdArrayConstColumnIterator',['../classnc_1_1_nd_array_const_column_iterator.html',1,'nc::NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType >'],['../classnc_1_1_nd_array_const_column_iterator.html#aff03e1020fa6e935fb0fe2a926a4f378',1,'nc::NdArrayConstColumnIterator::NdArrayConstColumnIterator(pointer ptr, SizeType numRows, SizeType numCols) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a3c779a77e6a0920d8fc799931feb3c3d',1,'nc::NdArrayConstColumnIterator::NdArrayConstColumnIterator()=default']]], + ['ndarrayconstiterator_729',['NdArrayConstIterator',['../classnc_1_1_nd_array_const_iterator.html',1,'nc::NdArrayConstIterator< dtype, PointerType, DifferenceType >'],['../classnc_1_1_nd_array_const_iterator.html#a518e77992a6b8710c2d43734a84f2006',1,'nc::NdArrayConstIterator::NdArrayConstIterator()=default'],['../classnc_1_1_nd_array_const_iterator.html#a8f0504fbf9ea4d0f89cda5b7e120b6f0',1,'nc::NdArrayConstIterator::NdArrayConstIterator(pointer ptr)']]], + ['ndarraycore_2ehpp_730',['NdArrayCore.hpp',['../_nd_array_core_8hpp.html',1,'']]], + ['ndarrayiterator_731',['NdArrayIterator',['../classnc_1_1_nd_array_iterator.html',1,'nc']]], + ['ndarrayiterators_2ehpp_732',['NdArrayIterators.hpp',['../_nd_array_iterators_8hpp.html',1,'']]], + ['ndarrayoperators_2ehpp_733',['NdArrayOperators.hpp',['../_nd_array_operators_8hpp.html',1,'']]], + ['nearest_734',['NEAREST',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6aad135772d7cf93dd0ccf9d2474b34e6a',1,'nc::filter']]], + ['nearest1d_735',['nearest1d',['../namespacenc_1_1filter_1_1boundary.html#ac5f60c43aa94490993eee9fcc1e105b1',1,'nc::filter::boundary']]], + ['nearest1d_2ehpp_736',['nearest1d.hpp',['../nearest1d_8hpp.html',1,'']]], + ['nearest2d_737',['nearest2d',['../namespacenc_1_1filter_1_1boundary.html#a7f70d66ead018652239bb3334a040850',1,'nc::filter::boundary']]], + ['nearest2d_2ehpp_738',['nearest2d.hpp',['../nearest2d_8hpp.html',1,'']]], + ['negative_739',['negative',['../namespacenc.html#a678a4671c949113db1578078d409bb91',1,'nc']]], + ['negative_740',['NEGATIVE',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94a50546bf973283065b6ccf09faf7a580a',1,'nc::coordinates']]], + ['negative_2ehpp_741',['negative.hpp',['../negative_8hpp.html',1,'']]], + ['negativebinomial_742',['negativeBinomial',['../namespacenc_1_1random.html#a1a15a08fe9134f5dcf5e7b32eb1de5e2',1,'nc::random::negativeBinomial(dtype inN, double inP=0.5)'],['../namespacenc_1_1random.html#ac6181e54b9cae303574f9c5fad33cfc2',1,'nc::random::negativeBinomial(const Shape &inShape, dtype inN, double inP=0.5)']]], + ['negativebinomial_2ehpp_743',['negativeBinomial.hpp',['../negative_binomial_8hpp.html',1,'']]], + ['newbyteorder_744',['newbyteorder',['../classnc_1_1_nd_array.html#ae5fe2e501921c3361c0edc66030b772d',1,'nc::NdArray::newbyteorder()'],['../namespacenc.html#a4d2ae51817f2acee83e2df0e04a8bac5',1,'nc::newbyteorder(dtype inValue, Endian inEndianess)'],['../namespacenc.html#adfc5c49151c50d90fce45c676b0fcaa4',1,'nc::newbyteorder(const NdArray< dtype > &inArray, Endian inEndianess)']]], + ['newbyteorder_2ehpp_745',['newbyteorder.hpp',['../newbyteorder_8hpp.html',1,'']]], + ['newton_746',['Newton',['../classnc_1_1roots_1_1_newton.html',1,'nc::roots::Newton'],['../classnc_1_1roots_1_1_newton.html#ab5b82361c4ce325e6165e023c0255d3e',1,'nc::roots::Newton::Newton(const double epsilon, std::function< double(double)> f, std::function< double(double)> fPrime) noexcept'],['../classnc_1_1roots_1_1_newton.html#aecc72e3899f42b277536689439ea24bc',1,'nc::roots::Newton::Newton(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f, std::function< double(double)> fPrime) noexcept']]], + ['newton_2ehpp_747',['Newton.hpp',['../_newton_8hpp.html',1,'']]], + ['nextpoweroftwo_748',['nextPowerOfTwo',['../namespacenc_1_1edac_1_1detail.html#a279241a794bffbea6920299cf8e5c4a1',1,'nc::edac::detail']]], + ['nlerp_749',['nlerp',['../classnc_1_1rotations_1_1_quaternion.html#a314478702a3da52f2be3f422057d8732',1,'nc::rotations::Quaternion::nlerp(const Quaternion &inQuat1, const Quaternion &inQuat2, double inPercent)'],['../classnc_1_1rotations_1_1_quaternion.html#ab055510c1338490b957de867cecaf790',1,'nc::rotations::Quaternion::nlerp(const Quaternion &inQuat2, double inPercent) const']]], + ['noncentralchisquared_750',['nonCentralChiSquared',['../namespacenc_1_1random.html#af01395c7355ee4c0f36441c40039e82d',1,'nc::random::nonCentralChiSquared(const Shape &inShape, dtype inK=1, dtype inLambda=1)'],['../namespacenc_1_1random.html#abf3cab0396026700ebf2d2ffa5e13fa6',1,'nc::random::nonCentralChiSquared(dtype inK=1, dtype inLambda=1)']]], + ['noncentralchisquared_2ehpp_751',['nonCentralChiSquared.hpp',['../non_central_chi_squared_8hpp.html',1,'']]], + ['none_752',['NONE',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84ab50339a10e1de285ac99d4c3990b8693',1,'nc']]], + ['none_753',['none',['../namespacenc.html#ada2840f1202c44082ee75b5f5705399d',1,'nc::none()'],['../classnc_1_1_nd_array.html#a379f8cd88dc84a38d668cb7bf97078ee',1,'nc::NdArray::none()']]], + ['none_2ehpp_754',['none.hpp',['../none_8hpp.html',1,'']]], + ['none_5fof_755',['none_of',['../namespacenc_1_1stl__algorithms.html#a2804ccb14980f96c7680838adc3b2762',1,'nc::stl_algorithms']]], + ['nonzero_756',['nonzero',['../namespacenc.html#a46ce9bcc6ba641e0550934b981175683',1,'nc::nonzero()'],['../classnc_1_1_nd_array.html#a6cc8c7b53a707468d6da112849970904',1,'nc::NdArray::nonzero()']]], + ['nonzero_2ehpp_757',['nonzero.hpp',['../nonzero_8hpp.html',1,'']]], + ['norm_758',['norm',['../namespacenc.html#aa57b910a1d9a448a15e76bd72563ac5d',1,'nc::norm()'],['../classnc_1_1_vec3.html#a6c177e1f5c00584279a0527d3053dee8',1,'nc::Vec3::norm()'],['../classnc_1_1_vec2.html#ab6922f6c089b20e9d019301fddc6dc0a',1,'nc::Vec2::norm()'],['../namespacenc.html#a13467936d679d6d078d585504bc42642',1,'nc::norm()']]], + ['norm_2ehpp_759',['norm.hpp',['../norm_8hpp.html',1,'']]], + ['normal_760',['normal',['../namespacenc_1_1random.html#a0d52ff6ccaa63bc36348ba39e5936056',1,'nc::random::normal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#ab655c4af3dac07aeff39efd50c120f4d',1,'nc::random::normal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)']]], + ['normal_2ehpp_761',['normal.hpp',['../normal_8hpp.html',1,'']]], + ['normalize_762',['normalize',['../classnc_1_1_vec3.html#a6356b462b11a156b923a7c79b9747c25',1,'nc::Vec3::normalize()'],['../classnc_1_1_vec2.html#a8d8a3ec28ef8336ab02dcd964a3e836c',1,'nc::Vec2::normalize()']]], + ['not_5fequal_763',['not_equal',['../namespacenc.html#ac6c0da616068bc667891c0a460431de3',1,'nc']]], + ['not_5fequal_2ehpp_764',['not_equal.hpp',['../not__equal_8hpp.html',1,'']]], + ['nth_5felement_765',['nth_element',['../namespacenc_1_1stl__algorithms.html#af5ef45ab7814938799020ad24358b734',1,'nc::stl_algorithms::nth_element(RandomIt first, RandomIt nth, RandomIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#a9928869b550b082898709c5671936079',1,'nc::stl_algorithms::nth_element(RandomIt first, RandomIt nth, RandomIt last, Compare comp) noexcept']]], + ['nth_5froot_766',['nth_root',['../namespacenc.html#aae5eb97b7313026b451ac4d7c01db027',1,'nc::nth_root(dtype1 inValue, dtype2 inRoot) noexcept'],['../namespacenc.html#a6da3daf9d73c1cea2e69c77f62b267b0',1,'nc::nth_root(const NdArray< dtype1 > &inArray, dtype2 inRoot)']]], + ['nth_5froot_2ehpp_767',['nth_root.hpp',['../nth__root_8hpp.html',1,'']]], + ['num2str_768',['num2str',['../namespacenc_1_1utils.html#a16a6ad93c420ed7a003d9921bee1a7c6',1,'nc::utils']]], + ['num2str_2ehpp_769',['num2str.hpp',['../num2str_8hpp.html',1,'']]], + ['numcols_770',['numCols',['../classnc_1_1_nd_array.html#a0049b5d6d1d99463edc773f01eb7c091',1,'nc::NdArray']]], + ['numcpp_2ehpp_771',['NumCpp.hpp',['../_num_cpp_8hpp.html',1,'']]], + ['numelements_772',['numElements',['../classnc_1_1_slice.html#aab35be40c38521a4bd9b3c99b3d33731',1,'nc::Slice']]], + ['numiterations_773',['numIterations',['../classnc_1_1roots_1_1_iteration.html#ab3192d0f9de4b8b27b23013c65489e5a',1,'nc::roots::Iteration']]], + ['numiterations_5f_774',['numIterations_',['../classnc_1_1roots_1_1_iteration.html#a84d7f2f7412d1f54861edeacc7bc0c20',1,'nc::roots::Iteration']]], + ['numrows_775',['numRows',['../classnc_1_1_nd_array.html#a2dbdc72c98c216a133f7e1a8d3c067f7',1,'nc::NdArray']]], + ['numsecdedparitybitsneeded_776',['numSecdedParityBitsNeeded',['../namespacenc_1_1edac_1_1detail.html#a6ee59971c08bfdc3e11a0245f17d5f9a',1,'nc::edac::detail']]], + ['polynomial_777',['polynomial',['../namespacenc_1_1polynomial.html',1,'nc']]], + ['random_778',['random',['../namespacenc_1_1random.html',1,'nc']]], + ['roots_779',['roots',['../namespacenc_1_1roots.html',1,'nc']]], + ['rotations_780',['rotations',['../namespacenc_1_1rotations.html',1,'nc']]], + ['special_781',['special',['../namespacenc_1_1special.html',1,'nc']]], + ['stl_5falgorithms_782',['stl_algorithms',['../namespacenc_1_1stl__algorithms.html',1,'nc']]], + ['utils_783',['utils',['../namespacenc_1_1utils.html',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/all_e.html b/docs/doxygen/html/search/all_e.html index 6de7dfc45..e25df423a 100644 --- a/docs/doxygen/html/search/all_e.html +++ b/docs/doxygen/html/search/all_e.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_e.js b/docs/doxygen/html/search/all_e.js index b1d1eed70..e6cfa0be2 100644 --- a/docs/doxygen/html/search/all_e.js +++ b/docs/doxygen/html/search/all_e.js @@ -1,47 +1,47 @@ var searchData= [ - ['ones_737',['ones',['../classnc_1_1_nd_array.html#ac6e5a0c875c593a6bc1970745af3684b',1,'nc::NdArray::ones()'],['../namespacenc.html#a5a935c0d187c7a0cab3d7ada27ffafc5',1,'nc::ones(const Shape &inShape)'],['../namespacenc.html#a0f6db9a6dcb85c14639b515f53d6b893',1,'nc::ones(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#ac9ffd1a2fa29857f39a38a9dab1079a2',1,'nc::ones(uint32 inSquareSize)']]], - ['ones_2ehpp_738',['ones.hpp',['../ones_8hpp.html',1,'']]], - ['ones_5flike_739',['ones_like',['../namespacenc.html#a90cb0bbdc492b0b10e635a79aa943e51',1,'nc']]], - ['ones_5flike_2ehpp_740',['ones_like.hpp',['../ones__like_8hpp.html',1,'']]], - ['operator_21_741',['operator!',['../namespacenc.html#a5afb0ad958d78f15eb6617618aec0640',1,'nc']]], - ['operator_21_3d_742',['operator!=',['../classnc_1_1_slice.html#afd66bc2d5f975f986e62230b124ae607',1,'nc::Slice::operator!=()'],['../namespacenc.html#a631e6eb2bf338af6af8487fd2d94b0a8',1,'nc::operator!=(dtype inValue, const NdArray< dtype > &inArray)'],['../namespacenc.html#a4cb019941743262a028a62001cda4bd0',1,'nc::operator!=(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#a33e15d535856758fb49567aa71204426',1,'nc::operator!=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1coordinates_1_1_coordinate.html#a8d139bb6b4d2d315d32d6fa818dab93d',1,'nc::coordinates::Coordinate::operator!=()'],['../classnc_1_1coordinates_1_1_dec.html#a60c04d5b65d89ed8204a51247b31c733',1,'nc::coordinates::Dec::operator!=()'],['../classnc_1_1coordinates_1_1_r_a.html#ab9354c5b4942674a815b2315e8b92978',1,'nc::coordinates::RA::operator!=()'],['../classnc_1_1_vec3.html#aad142760da8d2b3493462b4542e42673',1,'nc::Vec3::operator!=()'],['../classnc_1_1_vec2.html#ac83768c682c162ec9dffe1bfb9637338',1,'nc::Vec2::operator!=()'],['../classnc_1_1rotations_1_1_quaternion.html#adcf57fd29d62e19f5c764750262ff7c3',1,'nc::rotations::Quaternion::operator!=()'],['../classnc_1_1_nd_array_const_column_iterator.html#ad7a25b0cb28882ed45417dd3ed01e094',1,'nc::NdArrayConstColumnIterator::operator!=()'],['../classnc_1_1_nd_array_const_iterator.html#a96a196ff02ef70fe942c36afcb402f67',1,'nc::NdArrayConstIterator::operator!=()'],['../classnc_1_1image_processing_1_1_pixel.html#a4b80694a366506909633ff28c74b4042',1,'nc::imageProcessing::Pixel::operator!=()'],['../classnc_1_1image_processing_1_1_cluster.html#aa023fb6ea06515f18cd629b155f96a2c',1,'nc::imageProcessing::Cluster::operator!=()'],['../classnc_1_1image_processing_1_1_centroid.html#a89eb742174a9dd27b730ce4502e119cd',1,'nc::imageProcessing::Centroid::operator!=()'],['../classnc_1_1_shape.html#a56c44db7af73bc585c83e094da8996b5',1,'nc::Shape::operator!=()']]], - ['operator_25_743',['operator%',['../namespacenc.html#a4c7d623473bf78038f36fe75395e685b',1,'nc::operator%(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a6c703ec4985bf1bc6ea5c4a32fd72fcf',1,'nc::operator%(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a54ce1f6f396a09dddabae0f02d9aeeeb',1,'nc::operator%(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], - ['operator_25_3d_744',['operator%=',['../namespacenc.html#a02273630b6ed39b81c3341674a2ce527',1,'nc::operator%=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a112144152ae720509653d881e3a9d4f4',1,'nc::operator%=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], - ['operator_26_745',['operator&',['../namespacenc.html#a0c80b9ed3ff24fb25fb794e22a3467e6',1,'nc::operator&(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a12d6f6d2a62496d8fe53f8b2daf0b6a8',1,'nc::operator&(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#aaa9c45bb88e88461db334c8b933217e3',1,'nc::operator&(dtype lhs, const NdArray< dtype > &rhs)']]], - ['operator_26_26_746',['operator&&',['../namespacenc.html#aa9c15b56f7dc1eb4ce63b15285c7f8b1',1,'nc::operator&&(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a7f508d7557317498384741bd76fe39d5',1,'nc::operator&&(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#aa73c70b154a9045312635eb5a9252875',1,'nc::operator&&(dtype lhs, const NdArray< dtype > &rhs)']]], - ['operator_26_3d_747',['operator&=',['../namespacenc.html#aedc89e1be7f41979fc870006016b6b46',1,'nc::operator&=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ae104d25f74df02965d9ef6e4a9848659',1,'nc::operator&=(NdArray< dtype > &lhs, dtype rhs)']]], - ['operator_28_29_748',['operator()',['../classnc_1_1_nd_array.html#abf2c4d2e67b692c67e5aed62cd981800',1,'nc::NdArray::operator()()'],['../classnc_1_1polynomial_1_1_poly1d.html#ac82910d648a2a3cfd2301e12907414dd',1,'nc::polynomial::Poly1d::operator()()'],['../classnc_1_1_nd_array.html#ac97b34c8348f6a510820bc3887a088d1',1,'nc::NdArray::operator()(RowIndices rowIndices, ColIndices colIndices) const'],['../classnc_1_1_nd_array.html#adfc2050efba624e48733775ae48da8ff',1,'nc::NdArray::operator()(Slice rowSlice, const Indices &colIndices) const'],['../classnc_1_1_nd_array.html#a921862c636c42a394cb25d95b2c6e326',1,'nc::NdArray::operator()(int32 rowIndex, const Indices &colIndices) const'],['../classnc_1_1_nd_array.html#a9c33b3d44d196376aa9511f86c9c860c',1,'nc::NdArray::operator()(const Indices &rowIndices, Slice colSlice) const'],['../classnc_1_1_nd_array.html#ab2b2913858d7d8427ef5c58ce2caee01',1,'nc::NdArray::operator()(const Indices &rowIndices, int32 colIndex) const'],['../classnc_1_1_nd_array.html#a6ca54f3e1aca253d55dab87e38d21df1',1,'nc::NdArray::operator()(int32 inRowIndex, Slice inColSlice) const'],['../classnc_1_1_nd_array.html#a1583ae58b94d68e101079c4578fe1716',1,'nc::NdArray::operator()(Slice inRowSlice, int32 inColIndex) const'],['../classnc_1_1_nd_array.html#a694ed71b52be045362ed9c9ed9d0d5a0',1,'nc::NdArray::operator()(Slice inRowSlice, Slice inColSlice) const'],['../classnc_1_1_nd_array.html#aac0b806c621ce85a61f1370cc618fcc8',1,'nc::NdArray::operator()(int32 inRowIndex, int32 inColIndex) const noexcept']]], - ['operator_2a_749',['operator*',['../classnc_1_1rotations_1_1_quaternion.html#a10fd2d44927d59f19e37c45586072d14',1,'nc::rotations::Quaternion::operator*()'],['../classnc_1_1_nd_array_const_iterator.html#ad4ce15f95730d8c089db4f2a26b91090',1,'nc::NdArrayConstIterator::operator*()'],['../classnc_1_1_nd_array_iterator.html#ae1e918bc6718fe1ffa58f7c6a82fbe30',1,'nc::NdArrayIterator::operator*()'],['../classnc_1_1_nd_array_const_column_iterator.html#ac096213e50279dc023bbf6270c31969a',1,'nc::NdArrayConstColumnIterator::operator*()'],['../classnc_1_1_nd_array_column_iterator.html#af387e330729ecde7c09d388915ae346a',1,'nc::NdArrayColumnIterator::operator*()'],['../classnc_1_1polynomial_1_1_poly1d.html#aab8cce6bf7a9400862d98684de8ef355',1,'nc::polynomial::Poly1d::operator*()'],['../classnc_1_1rotations_1_1_quaternion.html#adad6ca92266f6090930addc585900805',1,'nc::rotations::Quaternion::operator*(const Quaternion &inRhs) const noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#ad63920fa01f5bd4949c0fbb3ff7c7137',1,'nc::rotations::Quaternion::operator*(double inScalar) const noexcept'],['../namespacenc.html#ace6d6bf5d703e886d8f137cf73be5021',1,'nc::operator*(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#abf6f57d9d17019d8756b86bfa1019bc1',1,'nc::operator*(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#af09d0c6363ef9dc8e661e9254bcf109f',1,'nc::operator*(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#af4f34a2e6e8b9011cb2d2fc5c564e10a',1,'nc::operator*(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#a7865c90c232341c387b0105ac4fdbfd9',1,'nc::operator*(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9a0ff185c891d6c5af3d7150bc645dc8',1,'nc::operator*(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a199168f4bff489c9ad1d0755e573c6aa',1,'nc::operator*(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a8248dae03ae96d459320f42d60fdf424',1,'nc::operator*(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a1769d68f44f9c98d94dd412bc32a9bb5',1,'nc::operator*(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#af51c9efd8dbadbdc664972bd96583a72',1,'nc::operator*(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#af4ecba4e059c6dcf672644a3c1bff75d',1,'nc::operator*(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a39b128708b2225a00de527c8ec83d72a',1,'nc::operator*(const Vec3 &lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a34212756103e0c821034e5469f0f0ed7',1,'nc::operator*(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a72a4a5ad03afcaf6e9f9b7ee6e145a80',1,'nc::operator*(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a9188c8ea881ad55ea9dc85ae154cbc22',1,'nc::operator*(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1rotations_1_1_quaternion.html#a97a81255a6bb91049b1ad7e7b83e2f7f',1,'nc::rotations::Quaternion::operator*()']]], - ['operator_2a_3d_750',['operator*=',['../namespacenc.html#a25ad051c1d98b01675e9c1a52eb8f8c8',1,'nc::operator*=(NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#af0a3674baebda83b99ba3b18ca4a59d3',1,'nc::operator*=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a36c7c3a0be4e8652e52e1710f2808ddd',1,'nc::operator*=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a9211f93baeed5af8e00cfd30628d65f6',1,'nc::operator*=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1rotations_1_1_quaternion.html#aaaa8a1bd7130e7ce6a819284584a84c5',1,'nc::rotations::Quaternion::operator*=()'],['../classnc_1_1polynomial_1_1_poly1d.html#a06293521430112062f975b4854090d24',1,'nc::polynomial::Poly1d::operator*=()'],['../classnc_1_1rotations_1_1_quaternion.html#a17636913a3a1e810a81a558dc986fd54',1,'nc::rotations::Quaternion::operator*=()'],['../classnc_1_1_vec2.html#a72ac39ba88f909cb5552f6b379509f81',1,'nc::Vec2::operator*=()'],['../classnc_1_1_vec3.html#a02ec360e4ebb7b4a6b629eedf8d24a2f',1,'nc::Vec3::operator*=()']]], - ['operator_2b_751',['operator+',['../namespacenc.html#ac6f8a785c25c21f9b4b8328dfd7da6c6',1,'nc::operator+()'],['../classnc_1_1_nd_array_const_iterator.html#a55064001ba08765b1e97962ca82a91cd',1,'nc::NdArrayConstIterator::operator+()'],['../classnc_1_1_nd_array_iterator.html#ab26263e7aa624ed5dd5b0140f2adccb7',1,'nc::NdArrayIterator::operator+()'],['../classnc_1_1_nd_array_const_column_iterator.html#a0375a9e5bb7a8e268d80da41186d58a4',1,'nc::NdArrayConstColumnIterator::operator+()'],['../classnc_1_1_nd_array_column_iterator.html#a6e4c3af43aa00d49305bcd50eaa477e1',1,'nc::NdArrayColumnIterator::operator+()'],['../classnc_1_1polynomial_1_1_poly1d.html#a65afb72ad35683688c7fb71ee77f839e',1,'nc::polynomial::Poly1d::operator+()'],['../classnc_1_1rotations_1_1_quaternion.html#a53c84fdd06a1f980c7c74a185d568156',1,'nc::rotations::Quaternion::operator+()'],['../namespacenc.html#a5a056c387e8726b0612d920bfa55123f',1,'nc::operator+(typename NdArrayConstIterator< dtype, PointerType, DifferenceType >::difference_type offset, NdArrayConstIterator< dtype, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#a3768e00a52c63b8bbc18d712cb4330c6',1,'nc::operator+(typename NdArrayIterator< dtype, PointerType, DifferenceType >::difference_type offset, NdArrayIterator< dtype, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#acb8250110150dfe1c585f48f988d703a',1,'nc::operator+(typename NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType >::difference_type offset, NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#a675deb20abd6aec02f63f72e4c4787dd',1,'nc::operator+(typename NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >::difference_type offset, NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#aae286fee26a3f654159dca70928e4060',1,'nc::operator+(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a44bd86bfac8783b176ecb2242d3ae93f',1,'nc::operator+(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a050e6920070ccd078fc357b3ef0198e1',1,'nc::operator+(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a2fff3527567d94f0a1a62269549ad20a',1,'nc::operator+(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a98293d4bef0cd036ce30829e7965126e',1,'nc::operator+(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a26bec2e52fdab966f0f3714d1e2ea8bb',1,'nc::operator+(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a5ded64221f16b9a774bc35de58204e28',1,'nc::operator+(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#ab769651a09123be0a13a54a82aaa088a',1,'nc::operator+(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a43fad0472de9a72d2680623200138907',1,'nc::operator+(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a9f50afa50b63aea110be8b9b477d1cb4',1,'nc::operator+(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a9c2f64fa5154e84e1b33b518f75b2ee8',1,'nc::operator+(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a2d00329ee55367cc78bb5ec002d177cf',1,'nc::operator+(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#ae7a4dd062b1c5d1f495741e11947f3b5',1,'nc::operator+(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#acf7b3bfdc67df0619847cd06cb2f0519',1,'nc::operator+(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)']]], - ['operator_2b_2b_752',['operator++',['../namespacenc.html#ab0ad6a59584ad4f4e277ddedd3c4d476',1,'nc::operator++()'],['../classnc_1_1_nd_array_const_iterator.html#ae955fba21b22639a84b9b030283476a6',1,'nc::NdArrayConstIterator::operator++() noexcept'],['../classnc_1_1_nd_array_const_iterator.html#a3d40f842cc5345a8f8051ae6bdebe321',1,'nc::NdArrayConstIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_iterator.html#ab832430f99b5ddfed996584e4c354f4a',1,'nc::NdArrayIterator::operator++() noexcept'],['../classnc_1_1_nd_array_iterator.html#a350b5406b062642ed48d6c3d9d2ce4b9',1,'nc::NdArrayIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#ad69593e9f3cbf04dff6941bd52827208',1,'nc::NdArrayConstColumnIterator::operator++() noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a82ded30f6199ce6c9f3630b28e971650',1,'nc::NdArrayConstColumnIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_column_iterator.html#abd93d4f21e45188893fcb1c43f907ff0',1,'nc::NdArrayColumnIterator::operator++() noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a388ac709c8d2b80c0ed5aa7fbb2047a6',1,'nc::NdArrayColumnIterator::operator++(int) noexcept'],['../namespacenc.html#ad1dfa157bab28851bf97d9982df3f2f3',1,'nc::operator++(NdArray< dtype > &lhs, int)']]], - ['operator_2b_3d_753',['operator+=',['../namespacenc.html#ae11d9ca1ca975cd511b91ddb512dd097',1,'nc::operator+=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#aad9f67cc0911a32f877365833eec3f95',1,'nc::operator+=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1_nd_array_const_iterator.html#aedc3bbd86f2b1b678abb27109dd50ff6',1,'nc::NdArrayConstIterator::operator+=()'],['../classnc_1_1_nd_array_iterator.html#af691ece9b6335b8191eeeb43a6168b00',1,'nc::NdArrayIterator::operator+=()'],['../classnc_1_1_nd_array_const_column_iterator.html#aa6b2701798827af7b54de723628a20d7',1,'nc::NdArrayConstColumnIterator::operator+=()'],['../classnc_1_1_nd_array_column_iterator.html#acc186137be7b139f7fdcf323e716e5a0',1,'nc::NdArrayColumnIterator::operator+=()'],['../classnc_1_1polynomial_1_1_poly1d.html#a44a0331a1cfc760d7b80bfc20b661366',1,'nc::polynomial::Poly1d::operator+=()'],['../classnc_1_1rotations_1_1_quaternion.html#af2b75597d538e55cfdd1215c35c9c6fe',1,'nc::rotations::Quaternion::operator+=()'],['../classnc_1_1_vec2.html#a21b1c9c0aa0b7e8886f1b4a7c255bb9e',1,'nc::Vec2::operator+=(double scaler) noexcept'],['../classnc_1_1_vec2.html#af441d4bbee40c07f9b86fbd056ff637e',1,'nc::Vec2::operator+=(const Vec2 &rhs) noexcept'],['../classnc_1_1_vec3.html#afef859d21f4332089843c5d337c1ce01',1,'nc::Vec3::operator+=()'],['../namespacenc.html#a7d26cc24b2a68f3ee89c701453e6c9a8',1,'nc::operator+=(NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a4f44f946519987633cf47549e5764298',1,'nc::operator+=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1_vec3.html#a2b1c4e63a7233fb56e2f037807dffb68',1,'nc::Vec3::operator+=()']]], - ['operator_2d_754',['operator-',['../namespacenc.html#a5e63a7dbcbc5bf2e9e5ad41c0169df34',1,'nc::operator-(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#af87da9c66c9e535066221e4f85f3ed90',1,'nc::operator-(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a6935362e6d04b73f04c0e8191ae3098d',1,'nc::operator-(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#a7227073082d530baaf7ebb96ee06995b',1,'nc::operator-(const Vec3 &vec) noexcept'],['../namespacenc.html#a305a3e10402251fc06871a84f8941298',1,'nc::operator-(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a7cf1dfd7144b41f4d748af9fb8aa5ffb',1,'nc::operator-(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#ad279cbad60173006f6883e0d18b0147e',1,'nc::operator-(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#af29a28cada8fd30111a2c6d41a110ff8',1,'nc::operator-(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a7c52ae6f5c5daf9d27c292e0451cccc3',1,'nc::operator-(const Vec2 &vec) noexcept'],['../namespacenc.html#a31b3ca85817b7242152028c4fd3f32c3',1,'nc::operator-(const NdArray< dtype > &inArray)'],['../namespacenc.html#a9d459ed977535f74996fe4820343138d',1,'nc::operator-(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#aae5b14c2febca550101675a55ee5e436',1,'nc::operator-(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aea4fe5d4daa75249a7b7765a219cbdb9',1,'nc::operator-(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a88d16d314b7e1427529122d2434223e0',1,'nc::operator-(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9b0eb6f1f7c4c55004478a3eb99c5367',1,'nc::operator-(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a419f15a00c80bffbe8446892e2015eae',1,'nc::operator-(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a1c852c2418c1b5eac6da53972f82233e',1,'nc::operator-(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../classnc_1_1_nd_array_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e',1,'nc::NdArrayIterator::operator-()'],['../classnc_1_1_nd_array_const_iterator.html#a4eaa70b83644e14dbfeccbc227408b63',1,'nc::NdArrayConstIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_const_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e',1,'nc::NdArrayConstIterator::operator-(const self_type &rhs) const noexcept'],['../classnc_1_1_nd_array_iterator.html#a8bb1505ab1105805bd3ced24b69d17eb',1,'nc::NdArrayIterator::operator-()'],['../classnc_1_1_nd_array_const_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a',1,'nc::NdArrayConstColumnIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70',1,'nc::NdArrayConstColumnIterator::operator-(const self_type &rhs) const noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a6dda98c1eba18dff31c9a66f528cd72b',1,'nc::NdArrayColumnIterator::operator-()'],['../classnc_1_1polynomial_1_1_poly1d.html#ade7b4f432e1056bc66d88a131a2cbf41',1,'nc::polynomial::Poly1d::operator-()'],['../classnc_1_1rotations_1_1_quaternion.html#ad6eb2370d77e01a944c4b32a48966e76',1,'nc::rotations::Quaternion::operator-(const Quaternion &inRhs) const noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a43fe6603ffbaaadf9348910e17e99519',1,'nc::rotations::Quaternion::operator-() const noexcept'],['../classnc_1_1_nd_array_iterator.html#a4eaa70b83644e14dbfeccbc227408b63',1,'nc::NdArrayIterator::operator-()'],['../classnc_1_1_nd_array_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a',1,'nc::NdArrayColumnIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70',1,'nc::NdArrayColumnIterator::operator-(const self_type &rhs) const noexcept'],['../namespacenc.html#a7c61e5d343e6439c26abb36db5a0b948',1,'nc::operator-()']]], - ['operator_2d_2d_755',['operator--',['../classnc_1_1_nd_array_column_iterator.html#a8ee7c1ecf2dc107159aec64377f5d6bd',1,'nc::NdArrayColumnIterator::operator--()'],['../classnc_1_1_nd_array_const_iterator.html#a6061cf25f89e41d3a77d0f4fb0ccc7e2',1,'nc::NdArrayConstIterator::operator--() noexcept'],['../classnc_1_1_nd_array_const_iterator.html#a526a13c16c0ef08b005f67184f80087a',1,'nc::NdArrayConstIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_iterator.html#a3bcc95583b7a85e5d253b6c830d33ec4',1,'nc::NdArrayIterator::operator--() noexcept'],['../classnc_1_1_nd_array_iterator.html#adcd3b9918db13467bcd234e6f3eec61f',1,'nc::NdArrayIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a9813a585d99eb656cbe7e1e12476d30b',1,'nc::NdArrayConstColumnIterator::operator--() noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a5fea275f4afdd1fca5b59830ce182bff',1,'nc::NdArrayConstColumnIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a145c2fa5cbd327fbba7dd4701ef27baf',1,'nc::NdArrayColumnIterator::operator--()'],['../namespacenc.html#aa7ea8977a2740af99f4c08c88d7a79e8',1,'nc::operator--(NdArray< dtype > &rhs)'],['../namespacenc.html#ab1ac162f983d66eec0f6189325bd1720',1,'nc::operator--(NdArray< dtype > &lhs, int)']]], - ['operator_2d_3d_756',['operator-=',['../namespacenc.html#ac870e3973346560eba3380c11f216540',1,'nc::operator-=()'],['../classnc_1_1_vec2.html#abfb0b00888fa37d52a895d06f2b39133',1,'nc::Vec2::operator-=(double scaler) noexcept'],['../classnc_1_1_vec2.html#a13a2bbc2595248211e0bc97de51e13b5',1,'nc::Vec2::operator-=(const Vec2 &rhs) noexcept'],['../classnc_1_1_vec3.html#a70251860269c7cb5becbe988a0b2c48e',1,'nc::Vec3::operator-=(double scaler) noexcept'],['../classnc_1_1_vec3.html#a208820649ed763a5dcc9405c4aa481f2',1,'nc::Vec3::operator-=(const Vec3 &rhs) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a60f1f33144c887cde1338fd80183638f',1,'nc::rotations::Quaternion::operator-=()'],['../classnc_1_1polynomial_1_1_poly1d.html#a732cca31f4b6180d0ad035a6daeb160a',1,'nc::polynomial::Poly1d::operator-=()'],['../classnc_1_1_nd_array_column_iterator.html#a80924e15c192ee04843add79ad2efece',1,'nc::NdArrayColumnIterator::operator-=()'],['../namespacenc.html#a8ba0ad93a3ec2ca409cdb14785e1f679',1,'nc::operator-=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9093ebf2aaa2dbc811ae45e77ba52960',1,'nc::operator-=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aae2f4895eb95921ca77529137e603cd0',1,'nc::operator-=(NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../classnc_1_1_nd_array_const_iterator.html#a9ae2efc38005276adaa744e6bec116c3',1,'nc::NdArrayConstIterator::operator-=()'],['../classnc_1_1_nd_array_iterator.html#a3ae9bd787a73639f2d0334d87f1fb720',1,'nc::NdArrayIterator::operator-=()'],['../classnc_1_1_nd_array_const_column_iterator.html#af68690450642df08758a9e067edeee47',1,'nc::NdArrayConstColumnIterator::operator-=()']]], - ['operator_2d_3e_757',['operator->',['../classnc_1_1_nd_array_const_iterator.html#a36aee44e67ed7bdc2fd3ca660e1748fa',1,'nc::NdArrayConstIterator::operator->()'],['../classnc_1_1_nd_array_iterator.html#aa1627ff7d2b0089222794bfebaa29a32',1,'nc::NdArrayIterator::operator->()'],['../classnc_1_1_nd_array_const_column_iterator.html#a33d2e58d269f938c742ac25f46edf008',1,'nc::NdArrayConstColumnIterator::operator->()'],['../classnc_1_1_nd_array_column_iterator.html#ae66efdfa1252f405042276e3e9a25364',1,'nc::NdArrayColumnIterator::operator->()']]], - ['operator_2f_758',['operator/',['../namespacenc.html#abe2fc114afe7f62aacf55a9288f45c4a',1,'nc::operator/(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a0a070b4ec8a29ee1a357c53857d4778a',1,'nc::operator/(const Vec3 &lhs, double rhs) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#ab054e067fc333a48582e291f95120866',1,'nc::rotations::Quaternion::operator/()'],['../namespacenc.html#a69481119ed4cf9e7fe41b0c9228693e3',1,'nc::operator/(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a06365d71ef5c147fee8e571b9fef7313',1,'nc::operator/(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a58862db40468f4be62b860990cf05336',1,'nc::operator/(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a8d2ca407e7579acac2ca6496c4196d15',1,'nc::operator/(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a1eee81e10b382e6b0474508725831a4f',1,'nc::operator/(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#a04bf5ca073685e762d84932ae14b8caa',1,'nc::operator/(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a4dda3a7297e38679bf172d870090da1d',1,'nc::operator/(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a4bec4dbe25db0a2ec84e5999458a2c02',1,'nc::operator/(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ac8cd599e4b67e78c173894bc3d2bd7f2',1,'nc::operator/(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], - ['operator_2f_3d_759',['operator/=',['../namespacenc.html#a05414ec63ae42b4a3e9e81ceef072094',1,'nc::operator/=()'],['../classnc_1_1rotations_1_1_quaternion.html#a859df40774ccff755560604b930c934d',1,'nc::rotations::Quaternion::operator/=()'],['../classnc_1_1_vec2.html#a1a1c875b11ea5571cb2b71778a692472',1,'nc::Vec2::operator/=()'],['../classnc_1_1_vec3.html#a431b2ac6af51bf59d804adbe5c8a7700',1,'nc::Vec3::operator/=()'],['../namespacenc.html#ad554e38d21aec306a8e3e4cd4ca990a2',1,'nc::operator/=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a26c691c1a8a6ddea49796591063e7630',1,'nc::operator/=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a7bbd0ddf9efe256d0c010e2c481da2d5',1,'nc::operator/=(NdArray< std::complex< dtype >> &lhs, dtype rhs)']]], - ['operator_3c_760',['operator<',['../classnc_1_1image_processing_1_1_centroid.html#a093719e81ed5bd5af0cb80dcfd03289f',1,'nc::imageProcessing::Centroid::operator<()'],['../classnc_1_1_nd_array_const_iterator.html#a6ae3aca3c7cb79a9fd985c1820b74c39',1,'nc::NdArrayConstIterator::operator<()'],['../classnc_1_1_nd_array_const_column_iterator.html#ab0928638c653f5ed37088a3e5098064b',1,'nc::NdArrayConstColumnIterator::operator<()'],['../namespacenc.html#a724cd71c78633aa5a757aa76b514f46a',1,'nc::operator<(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#ac1e7489f428b83ed55b5d44963b4eab6',1,'nc::operator<(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a8b68828e75eb8bd91ccdc63e6c39511f',1,'nc::operator<(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#a6500fd0898086f300bb7909249b3e50f',1,'nc::operator<(dtype inValue, const NdArray< dtype > &inArray)'],['../classnc_1_1image_processing_1_1_pixel.html#a592926833195d4f2587efef12e4b1148',1,'nc::imageProcessing::Pixel::operator<()']]], - ['operator_3c_3c_761',['operator<<',['../classnc_1_1polynomial_1_1_poly1d.html#a589d9ff132413fa86a20f2fa7910e5df',1,'nc::polynomial::Poly1d::operator<<()'],['../namespacenc.html#a0cf6f27f323d5bc34b6c56316c480865',1,'nc::operator<<(std::ostream &stream, const Vec3 &vec)'],['../namespacenc.html#a39964568372712a2a5427c44e59ffbe2',1,'nc::operator<<(const NdArray< dtype > &lhs, uint8 inNumBits)'],['../namespacenc.html#a5df285ae528f83294768588fa622d41f',1,'nc::operator<<(std::ostream &inOStream, const NdArray< dtype > &inArray)'],['../namespacenc.html#aecdda46f9eca3e1f802bb5451ca952cb',1,'nc::operator<<(std::ostream &stream, const Vec2 &vec)'],['../classnc_1_1rotations_1_1_quaternion.html#a6d11f3a719f010cdd220642d2bb586e6',1,'nc::rotations::Quaternion::operator<<()'],['../classnc_1_1image_processing_1_1_pixel.html#a157a2e98ace3e2185af571a68e5a5b9c',1,'nc::imageProcessing::Pixel::operator<<()'],['../classnc_1_1image_processing_1_1_cluster.html#a1b1adec296082d83ee2f87484bfe07cb',1,'nc::imageProcessing::Cluster::operator<<()'],['../classnc_1_1image_processing_1_1_centroid.html#a787da1f79223e97a2788a2ad47e1c394',1,'nc::imageProcessing::Centroid::operator<<()'],['../classnc_1_1_slice.html#ad6889d2df295fef3796aebb769b8cac0',1,'nc::Slice::operator<<()'],['../classnc_1_1_shape.html#a520d818f31bbdacdf8cfbe6de9e88a28',1,'nc::Shape::operator<<()'],['../classnc_1_1coordinates_1_1_r_a.html#aa7b5289b9d14da6e7b4393be2fddfc33',1,'nc::coordinates::RA::operator<<()'],['../classnc_1_1coordinates_1_1_dec.html#a83e1fb757cb9153e02dcecd2a37976c1',1,'nc::coordinates::Dec::operator<<()'],['../classnc_1_1coordinates_1_1_coordinate.html#aa9e34ee6b7a8425e6af5a715935a4251',1,'nc::coordinates::Coordinate::operator<<()']]], - ['operator_3c_3c_3d_762',['operator<<=',['../namespacenc.html#a9d82fca424a68c0042594e483b51ced2',1,'nc']]], - ['operator_3c_3d_763',['operator<=',['../namespacenc.html#a496de942a0d74925ed64972dcb2cffe8',1,'nc::operator<=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9f9bb9e7b4ecf581498351e14f074145',1,'nc::operator<=(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a8468d6928d88c7f34d1456261331f238',1,'nc::NdArrayConstColumnIterator::operator<=()'],['../classnc_1_1_nd_array_const_iterator.html#a171276f9e90a1336d156c61c2b61bd23',1,'nc::NdArrayConstIterator::operator<=()'],['../namespacenc.html#a4ceffb2e21de23701d431abde8e78592',1,'nc::operator<=(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#accb22a9c6f4dc0452020b0a86ef8fdf9',1,'nc::operator<=(dtype inValue, const NdArray< dtype > &inArray)']]], - ['operator_3d_764',['operator=',['../classnc_1_1_nd_array.html#abe4cda5855bc5d6aee488293000d1acb',1,'nc::NdArray::operator=(const NdArray< dtype > &rhs)'],['../classnc_1_1_nd_array.html#ae5150db09cf7f76269b3254ceb0c43a8',1,'nc::NdArray::operator=(value_type inValue) noexcept'],['../classnc_1_1_nd_array.html#a5ff24670b2173fccf1c9a35b688f2683',1,'nc::NdArray::operator=(NdArray< dtype > &&rhs) noexcept']]], - ['operator_3d_3d_765',['operator==',['../classnc_1_1_vec3.html#a2cc63855706091881f765b63dcf52c44',1,'nc::Vec3::operator==()'],['../classnc_1_1rotations_1_1_quaternion.html#a82f40acb2292256faffab2b88aa38208',1,'nc::rotations::Quaternion::operator==()'],['../classnc_1_1_nd_array_const_column_iterator.html#aec9953c2361595fc656a1a5d306e36c0',1,'nc::NdArrayConstColumnIterator::operator==()'],['../classnc_1_1_nd_array_const_iterator.html#ac055ccace7f791cfb94d7df8e7100dc2',1,'nc::NdArrayConstIterator::operator==()'],['../classnc_1_1image_processing_1_1_pixel.html#a008757a06c498b1a31e26d53a54e51dc',1,'nc::imageProcessing::Pixel::operator==()'],['../classnc_1_1image_processing_1_1_cluster.html#a8308c5f0313872c9499de36d69d0ff19',1,'nc::imageProcessing::Cluster::operator==()'],['../classnc_1_1image_processing_1_1_centroid.html#a503a2542b388f65fb80710dd33610abc',1,'nc::imageProcessing::Centroid::operator==()'],['../classnc_1_1_slice.html#a769815d8fbb98ba34101c18a21efbbf5',1,'nc::Slice::operator==()'],['../classnc_1_1_shape.html#a0267d8b7eb226fdc442be5c914f9c870',1,'nc::Shape::operator==()'],['../classnc_1_1coordinates_1_1_r_a.html#ab9e22496d5fdc265ee5a5d77ec97c184',1,'nc::coordinates::RA::operator==()'],['../classnc_1_1coordinates_1_1_dec.html#a5b264a9d7bb9b2c1b537b03a5eac7265',1,'nc::coordinates::Dec::operator==()'],['../classnc_1_1coordinates_1_1_coordinate.html#a96255907cf1af2c416c7dbe34e96b0d5',1,'nc::coordinates::Coordinate::operator==()'],['../namespacenc.html#a283fba259d2cd892a8cbb2782490b92a',1,'nc::operator==(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aa956dff0507eddc1c1d80e423f126383',1,'nc::operator==(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#afdcaaff39ed10311d74302a6e9be2fd4',1,'nc::operator==(dtype inValue, const NdArray< dtype > &inArray)'],['../classnc_1_1_vec2.html#af04a7f20ae8ac7a59ae44f7819668fa0',1,'nc::Vec2::operator==()']]], - ['operator_3e_766',['operator>',['../classnc_1_1_nd_array_const_iterator.html#a8a312e1809eae90df625971d6b4ab62e',1,'nc::NdArrayConstIterator::operator>()'],['../classnc_1_1_nd_array_const_column_iterator.html#a827d0a8431ec616ef0161144b3d24af6',1,'nc::NdArrayConstColumnIterator::operator>()'],['../namespacenc.html#a20910640e1c1dd8bc9298561fedc84a4',1,'nc::operator>(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#a5755bb93bff9c0cbd38dbf1296902374',1,'nc::operator>(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a7433343db2634ef8f75e290370cfe21e',1,'nc::operator>(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#a113de1155a4e2a71dcdad1709c58afe8',1,'nc::operator>(dtype inValue, const NdArray< dtype > &inArray)']]], - ['operator_3e_3d_767',['operator>=',['../namespacenc.html#a0dfd9f5c1ec0c3d61959c4c54e6dc23a',1,'nc::operator>=(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#a48199b1c11d42106cd09ae57215520fe',1,'nc::operator>=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a4a32b6c123eaa3f46c14159b243522de',1,'nc::operator>=(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#ac453f615df2e03778835908a70907145',1,'nc::operator>=(dtype inValue, const NdArray< dtype > &inArray)'],['../classnc_1_1_nd_array_const_column_iterator.html#a9935c5d4b3deff76207ccde7cfccbf62',1,'nc::NdArrayConstColumnIterator::operator>=()'],['../classnc_1_1_nd_array_const_iterator.html#a06871d8ba079130e84a892995c07a49a',1,'nc::NdArrayConstIterator::operator>=()']]], - ['operator_3e_3e_768',['operator>>',['../namespacenc.html#a7e6fe3981b55cd4f381339b616a55ec8',1,'nc']]], - ['operator_3e_3e_3d_769',['operator>>=',['../namespacenc.html#a7626eefaf34c6ac138da762c6ae930e7',1,'nc']]], - ['operator_5b_5d_770',['operator[]',['../classnc_1_1_nd_array_iterator.html#a40c132f8a7c1dd9fde17bcd3ddc2a18f',1,'nc::NdArrayIterator::operator[]()'],['../classnc_1_1_data_cube.html#a1a16b98e982d79cc6a172b8e2bfad856',1,'nc::DataCube::operator[](uint32 inIndex) noexcept'],['../classnc_1_1_data_cube.html#a403c0b0df22fc5fa0858109fa7a65f87',1,'nc::DataCube::operator[](uint32 inIndex) const noexcept'],['../classnc_1_1image_processing_1_1_cluster.html#a386b222d5747fc2b77448ea5a56d24e4',1,'nc::imageProcessing::Cluster::operator[]()'],['../classnc_1_1_nd_array_column_iterator.html#a5dc1514332728850b8fbeaa7d1f8bda0',1,'nc::NdArrayColumnIterator::operator[]()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3a37dd5a1496ecf2249950325b0a388c',1,'nc::NdArrayConstColumnIterator::operator[]()'],['../classnc_1_1_nd_array_const_iterator.html#a83ee672f75e74c4421a25a7816be12c6',1,'nc::NdArrayConstIterator::operator[]()'],['../classnc_1_1_nd_array.html#a0f53f1d4f5b259021cf61026f65759e0',1,'nc::NdArray::operator[](const Indices &inIndices) const'],['../classnc_1_1_nd_array.html#ab04b63c2794747b88b0e640f737c6b2c',1,'nc::NdArray::operator[](const NdArray< bool > &inMask) const'],['../classnc_1_1_nd_array.html#a4744ab68830cc2cc16d8804295662b6a',1,'nc::NdArray::operator[](const Slice &inSlice) const'],['../classnc_1_1_nd_array.html#aeabee2aba11a885f3bd874b7a06d62ea',1,'nc::NdArray::operator[](int32 inIndex) const noexcept'],['../classnc_1_1_nd_array.html#aa58a51df41648b4d39f2f972c60e09ae',1,'nc::NdArray::operator[](int32 inIndex) noexcept'],['../classnc_1_1image_processing_1_1_cluster_maker.html#ae92d75ae626bb18324b0dfe69ee44f25',1,'nc::imageProcessing::ClusterMaker::operator[]()']]], - ['operator_5e_771',['operator^',['../namespacenc.html#ae4befd8a03420464348fdfcc71b106bb',1,'nc::operator^()'],['../classnc_1_1polynomial_1_1_poly1d.html#a548c945121cb39859f649cf39a6d0830',1,'nc::polynomial::Poly1d::operator^()'],['../namespacenc.html#aa6be940ce9eed012ca0fac881d884411',1,'nc::operator^(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#af4f0fce9397ab714d3567d454f143835',1,'nc::operator^(dtype lhs, const NdArray< dtype > &rhs)']]], - ['operator_5e_3d_772',['operator^=',['../namespacenc.html#a8d3d77fe59d533d1301aea0112e38fa8',1,'nc::operator^=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ad4f2748ac9b7ebe59f1592e118169ea7',1,'nc::operator^=(NdArray< dtype > &lhs, dtype rhs)'],['../classnc_1_1polynomial_1_1_poly1d.html#a930f53185992537e3eb5844ebb70bf38',1,'nc::polynomial::Poly1d::operator^=()']]], - ['operator_7c_773',['operator|',['../namespacenc.html#a2dd868d584e1d65748cf04957eb97d99',1,'nc::operator|(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a129a0c61ca191919674576a76ee7fd93',1,'nc::operator|(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a50e6d418c92ccd6d7a2cf42a899a2203',1,'nc::operator|(dtype lhs, const NdArray< dtype > &rhs)']]], - ['operator_7c_3d_774',['operator|=',['../namespacenc.html#a958f4fd964269c7affaaff0e30b4dc01',1,'nc::operator|=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#afbb3e9d2eb28cad36a9de996263067d9',1,'nc::operator|=(NdArray< dtype > &lhs, dtype rhs)']]], - ['operator_7c_7c_775',['operator||',['../namespacenc.html#a25c9ac2d82de1fd3c81890ad38ebfb25',1,'nc::operator||(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#affe1935670d985dfe387f429d68874e2',1,'nc::operator||(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a37ef6f1c023837fbe628c3838b14d940',1,'nc::operator||(dtype lhs, const NdArray< dtype > &rhs)']]], - ['operator_7e_776',['operator~',['../namespacenc.html#ae9d44b86bb2c2968d5c67f11ca789d3e',1,'nc']]], - ['order_777',['order',['../classnc_1_1polynomial_1_1_poly1d.html#ab978ca2f65c7cd640309c1be86aa9141',1,'nc::polynomial::Poly1d']]], - ['outer_778',['outer',['../namespacenc.html#a395197f9b1d3f53a5fdcd234fa6e6baf',1,'nc']]], - ['outer_2ehpp_779',['outer.hpp',['../outer_8hpp.html',1,'']]], - ['ownsinternaldata_780',['ownsInternalData',['../classnc_1_1_nd_array.html#a63a1c0f9fdef078770e4f8cbe2c249ec',1,'nc::NdArray']]] + ['ones_784',['ones',['../namespacenc.html#ac9ffd1a2fa29857f39a38a9dab1079a2',1,'nc::ones()'],['../classnc_1_1_nd_array.html#ac6e5a0c875c593a6bc1970745af3684b',1,'nc::NdArray::ones()'],['../namespacenc.html#a0f6db9a6dcb85c14639b515f53d6b893',1,'nc::ones(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a5a935c0d187c7a0cab3d7ada27ffafc5',1,'nc::ones(const Shape &inShape)']]], + ['ones_2ehpp_785',['ones.hpp',['../ones_8hpp.html',1,'']]], + ['ones_5flike_786',['ones_like',['../namespacenc.html#a90cb0bbdc492b0b10e635a79aa943e51',1,'nc']]], + ['ones_5flike_2ehpp_787',['ones_like.hpp',['../ones__like_8hpp.html',1,'']]], + ['operator_21_788',['operator!',['../namespacenc.html#a5afb0ad958d78f15eb6617618aec0640',1,'nc']]], + ['operator_21_3d_789',['operator!=',['../classnc_1_1coordinates_1_1_coordinate.html#a8d139bb6b4d2d315d32d6fa818dab93d',1,'nc::coordinates::Coordinate::operator!=()'],['../classnc_1_1coordinates_1_1_dec.html#a60c04d5b65d89ed8204a51247b31c733',1,'nc::coordinates::Dec::operator!=()'],['../classnc_1_1coordinates_1_1_r_a.html#ab9354c5b4942674a815b2315e8b92978',1,'nc::coordinates::RA::operator!=()'],['../classnc_1_1_shape.html#a56c44db7af73bc585c83e094da8996b5',1,'nc::Shape::operator!=()'],['../classnc_1_1_slice.html#afd66bc2d5f975f986e62230b124ae607',1,'nc::Slice::operator!=()'],['../classnc_1_1image_processing_1_1_centroid.html#a89eb742174a9dd27b730ce4502e119cd',1,'nc::imageProcessing::Centroid::operator!=()'],['../classnc_1_1image_processing_1_1_cluster.html#aa023fb6ea06515f18cd629b155f96a2c',1,'nc::imageProcessing::Cluster::operator!=()'],['../classnc_1_1image_processing_1_1_pixel.html#a4b80694a366506909633ff28c74b4042',1,'nc::imageProcessing::Pixel::operator!=()'],['../classnc_1_1_nd_array_const_iterator.html#a96a196ff02ef70fe942c36afcb402f67',1,'nc::NdArrayConstIterator::operator!=()'],['../classnc_1_1_nd_array_const_column_iterator.html#ad7a25b0cb28882ed45417dd3ed01e094',1,'nc::NdArrayConstColumnIterator::operator!=()'],['../classnc_1_1rotations_1_1_quaternion.html#adcf57fd29d62e19f5c764750262ff7c3',1,'nc::rotations::Quaternion::operator!=()'],['../classnc_1_1_vec2.html#ac83768c682c162ec9dffe1bfb9637338',1,'nc::Vec2::operator!=()'],['../classnc_1_1_vec3.html#aad142760da8d2b3493462b4542e42673',1,'nc::Vec3::operator!=()'],['../namespacenc.html#a4cb019941743262a028a62001cda4bd0',1,'nc::operator!=(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#a631e6eb2bf338af6af8487fd2d94b0a8',1,'nc::operator!=(dtype inValue, const NdArray< dtype > &inArray)'],['../namespacenc.html#a33e15d535856758fb49567aa71204426',1,'nc::operator!=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], + ['operator_25_790',['operator%',['../namespacenc.html#a54ce1f6f396a09dddabae0f02d9aeeeb',1,'nc::operator%(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a6c703ec4985bf1bc6ea5c4a32fd72fcf',1,'nc::operator%(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#af2360d92e17c3bf8956f1ab391f0022a',1,'nc::operator%(dtype lhs, const NdArray< dtype > &rhs)']]], + ['operator_25_3d_791',['operator%=',['../namespacenc.html#a0dfaa5d06ddc26868216477f53b56b46',1,'nc::operator%=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9b9a9ad49ab9cdaa1b3434038c6c983a',1,'nc::operator%=(NdArray< dtype > &lhs, dtype rhs)']]], + ['operator_26_792',['operator&',['../namespacenc.html#aaa9c45bb88e88461db334c8b933217e3',1,'nc::operator&(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a0c80b9ed3ff24fb25fb794e22a3467e6',1,'nc::operator&(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a12d6f6d2a62496d8fe53f8b2daf0b6a8',1,'nc::operator&(const NdArray< dtype > &lhs, dtype rhs)']]], + ['operator_26_26_793',['operator&&',['../namespacenc.html#aa9c15b56f7dc1eb4ce63b15285c7f8b1',1,'nc::operator&&(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a7f508d7557317498384741bd76fe39d5',1,'nc::operator&&(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#aa73c70b154a9045312635eb5a9252875',1,'nc::operator&&(dtype lhs, const NdArray< dtype > &rhs)']]], + ['operator_26_3d_794',['operator&=',['../namespacenc.html#ae104d25f74df02965d9ef6e4a9848659',1,'nc::operator&=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#aedc89e1be7f41979fc870006016b6b46',1,'nc::operator&=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], + ['operator_28_29_795',['operator()',['../classnc_1_1_nd_array.html#abf2c4d2e67b692c67e5aed62cd981800',1,'nc::NdArray::operator()(int32 inRowIndex, int32 inColIndex) noexcept'],['../classnc_1_1_nd_array.html#aac0b806c621ce85a61f1370cc618fcc8',1,'nc::NdArray::operator()(int32 inRowIndex, int32 inColIndex) const noexcept'],['../classnc_1_1_nd_array.html#a694ed71b52be045362ed9c9ed9d0d5a0',1,'nc::NdArray::operator()(Slice inRowSlice, Slice inColSlice) const'],['../classnc_1_1_nd_array.html#a1583ae58b94d68e101079c4578fe1716',1,'nc::NdArray::operator()(Slice inRowSlice, int32 inColIndex) const'],['../classnc_1_1_nd_array.html#a6ca54f3e1aca253d55dab87e38d21df1',1,'nc::NdArray::operator()(int32 inRowIndex, Slice inColSlice) const'],['../classnc_1_1_nd_array.html#ab2b2913858d7d8427ef5c58ce2caee01',1,'nc::NdArray::operator()(const Indices &rowIndices, int32 colIndex) const'],['../classnc_1_1_nd_array.html#a9c33b3d44d196376aa9511f86c9c860c',1,'nc::NdArray::operator()(const Indices &rowIndices, Slice colSlice) const'],['../classnc_1_1_nd_array.html#a921862c636c42a394cb25d95b2c6e326',1,'nc::NdArray::operator()(int32 rowIndex, const Indices &colIndices) const'],['../classnc_1_1_nd_array.html#adfc2050efba624e48733775ae48da8ff',1,'nc::NdArray::operator()(Slice rowSlice, const Indices &colIndices) const'],['../classnc_1_1_nd_array.html#ac97b34c8348f6a510820bc3887a088d1',1,'nc::NdArray::operator()(RowIndices rowIndices, ColIndices colIndices) const'],['../classnc_1_1polynomial_1_1_poly1d.html#ac82910d648a2a3cfd2301e12907414dd',1,'nc::polynomial::Poly1d::operator()()']]], + ['operator_2a_796',['operator*',['../namespacenc.html#a8248dae03ae96d459320f42d60fdf424',1,'nc::operator*(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a39b128708b2225a00de527c8ec83d72a',1,'nc::operator*(const Vec3 &lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#af4f34a2e6e8b9011cb2d2fc5c564e10a',1,'nc::operator*(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#a34212756103e0c821034e5469f0f0ed7',1,'nc::operator*(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ace6d6bf5d703e886d8f137cf73be5021',1,'nc::operator*(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#abf6f57d9d17019d8756b86bfa1019bc1',1,'nc::operator*(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a72a4a5ad03afcaf6e9f9b7ee6e145a80',1,'nc::operator*(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a9188c8ea881ad55ea9dc85ae154cbc22',1,'nc::operator*(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1rotations_1_1_quaternion.html#adad6ca92266f6090930addc585900805',1,'nc::rotations::Quaternion::operator*()'],['../namespacenc.html#a7865c90c232341c387b0105ac4fdbfd9',1,'nc::operator*(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9a0ff185c891d6c5af3d7150bc645dc8',1,'nc::operator*(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../classnc_1_1rotations_1_1_quaternion.html#a97a81255a6bb91049b1ad7e7b83e2f7f',1,'nc::rotations::Quaternion::operator*()'],['../namespacenc.html#a1769d68f44f9c98d94dd412bc32a9bb5',1,'nc::operator*(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#af51c9efd8dbadbdc664972bd96583a72',1,'nc::operator*(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#af4ecba4e059c6dcf672644a3c1bff75d',1,'nc::operator*(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#af09d0c6363ef9dc8e661e9254bcf109f',1,'nc::operator*(dtype lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1rotations_1_1_quaternion.html#a10fd2d44927d59f19e37c45586072d14',1,'nc::rotations::Quaternion::operator*(const NdArray< double > &inVec) const'],['../classnc_1_1rotations_1_1_quaternion.html#ad63920fa01f5bd4949c0fbb3ff7c7137',1,'nc::rotations::Quaternion::operator*(double inScalar) const noexcept'],['../classnc_1_1polynomial_1_1_poly1d.html#aab8cce6bf7a9400862d98684de8ef355',1,'nc::polynomial::Poly1d::operator*()'],['../classnc_1_1_nd_array_column_iterator.html#af387e330729ecde7c09d388915ae346a',1,'nc::NdArrayColumnIterator::operator*()'],['../classnc_1_1_nd_array_const_column_iterator.html#ac096213e50279dc023bbf6270c31969a',1,'nc::NdArrayConstColumnIterator::operator*()'],['../classnc_1_1_nd_array_iterator.html#ae1e918bc6718fe1ffa58f7c6a82fbe30',1,'nc::NdArrayIterator::operator*()'],['../classnc_1_1_nd_array_const_iterator.html#ad4ce15f95730d8c089db4f2a26b91090',1,'nc::NdArrayConstIterator::operator*()'],['../namespacenc.html#a199168f4bff489c9ad1d0755e573c6aa',1,'nc::operator*()']]], + ['operator_2a_3d_797',['operator*=',['../classnc_1_1rotations_1_1_quaternion.html#aaaa8a1bd7130e7ce6a819284584a84c5',1,'nc::rotations::Quaternion::operator*=(const Quaternion &inRhs) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a17636913a3a1e810a81a558dc986fd54',1,'nc::rotations::Quaternion::operator*=(double inScalar) noexcept'],['../classnc_1_1_vec2.html#a72ac39ba88f909cb5552f6b379509f81',1,'nc::Vec2::operator*=()'],['../namespacenc.html#af0a3674baebda83b99ba3b18ca4a59d3',1,'nc::operator*=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9211f93baeed5af8e00cfd30628d65f6',1,'nc::operator*=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a36c7c3a0be4e8652e52e1710f2808ddd',1,'nc::operator*=(NdArray< dtype > &lhs, dtype rhs)'],['../classnc_1_1_vec3.html#a02ec360e4ebb7b4a6b629eedf8d24a2f',1,'nc::Vec3::operator*=()'],['../classnc_1_1polynomial_1_1_poly1d.html#a06293521430112062f975b4854090d24',1,'nc::polynomial::Poly1d::operator*=()'],['../namespacenc.html#a25ad051c1d98b01675e9c1a52eb8f8c8',1,'nc::operator*=()']]], + ['operator_2b_798',['operator+',['../classnc_1_1_nd_array_const_column_iterator.html#a0375a9e5bb7a8e268d80da41186d58a4',1,'nc::NdArrayConstColumnIterator::operator+()'],['../classnc_1_1_nd_array_column_iterator.html#a6e4c3af43aa00d49305bcd50eaa477e1',1,'nc::NdArrayColumnIterator::operator+()'],['../classnc_1_1polynomial_1_1_poly1d.html#a65afb72ad35683688c7fb71ee77f839e',1,'nc::polynomial::Poly1d::operator+()'],['../classnc_1_1rotations_1_1_quaternion.html#a53c84fdd06a1f980c7c74a185d568156',1,'nc::rotations::Quaternion::operator+()'],['../namespacenc.html#a2fff3527567d94f0a1a62269549ad20a',1,'nc::operator+(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a5a056c387e8726b0612d920bfa55123f',1,'nc::operator+(typename NdArrayConstIterator< dtype, PointerType, DifferenceType >::difference_type offset, NdArrayConstIterator< dtype, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#a3768e00a52c63b8bbc18d712cb4330c6',1,'nc::operator+(typename NdArrayIterator< dtype, PointerType, DifferenceType >::difference_type offset, NdArrayIterator< dtype, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#acb8250110150dfe1c585f48f988d703a',1,'nc::operator+(typename NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType >::difference_type offset, NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType > next) noexcept'],['../classnc_1_1_nd_array_const_iterator.html#a55064001ba08765b1e97962ca82a91cd',1,'nc::NdArrayConstIterator::operator+()'],['../classnc_1_1_nd_array_iterator.html#ab26263e7aa624ed5dd5b0140f2adccb7',1,'nc::NdArrayIterator::operator+()'],['../namespacenc.html#a675deb20abd6aec02f63f72e4c4787dd',1,'nc::operator+(typename NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >::difference_type offset, NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#a98293d4bef0cd036ce30829e7965126e',1,'nc::operator+(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aae286fee26a3f654159dca70928e4060',1,'nc::operator+(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a44bd86bfac8783b176ecb2242d3ae93f',1,'nc::operator+(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a050e6920070ccd078fc357b3ef0198e1',1,'nc::operator+(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#acf7b3bfdc67df0619847cd06cb2f0519',1,'nc::operator+(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#ae7a4dd062b1c5d1f495741e11947f3b5',1,'nc::operator+(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a2d00329ee55367cc78bb5ec002d177cf',1,'nc::operator+(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a9c2f64fa5154e84e1b33b518f75b2ee8',1,'nc::operator+(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a9f50afa50b63aea110be8b9b477d1cb4',1,'nc::operator+(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a43fad0472de9a72d2680623200138907',1,'nc::operator+(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#ab769651a09123be0a13a54a82aaa088a',1,'nc::operator+(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a5ded64221f16b9a774bc35de58204e28',1,'nc::operator+(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#a26bec2e52fdab966f0f3714d1e2ea8bb',1,'nc::operator+(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#ac6f8a785c25c21f9b4b8328dfd7da6c6',1,'nc::operator+(const Vec3 &lhs, const Vec3 &rhs) noexcept']]], + ['operator_2b_2b_799',['operator++',['../classnc_1_1_nd_array_column_iterator.html#a388ac709c8d2b80c0ed5aa7fbb2047a6',1,'nc::NdArrayColumnIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_column_iterator.html#abd93d4f21e45188893fcb1c43f907ff0',1,'nc::NdArrayColumnIterator::operator++() noexcept'],['../classnc_1_1_nd_array_const_iterator.html#a3d40f842cc5345a8f8051ae6bdebe321',1,'nc::NdArrayConstIterator::operator++()'],['../classnc_1_1_nd_array_const_column_iterator.html#a82ded30f6199ce6c9f3630b28e971650',1,'nc::NdArrayConstColumnIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#ad69593e9f3cbf04dff6941bd52827208',1,'nc::NdArrayConstColumnIterator::operator++() noexcept'],['../classnc_1_1_nd_array_iterator.html#a350b5406b062642ed48d6c3d9d2ce4b9',1,'nc::NdArrayIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_iterator.html#ab832430f99b5ddfed996584e4c354f4a',1,'nc::NdArrayIterator::operator++() noexcept'],['../classnc_1_1_nd_array_const_iterator.html#ae955fba21b22639a84b9b030283476a6',1,'nc::NdArrayConstIterator::operator++()'],['../namespacenc.html#ab0ad6a59584ad4f4e277ddedd3c4d476',1,'nc::operator++(NdArray< dtype > &rhs)'],['../namespacenc.html#ad1dfa157bab28851bf97d9982df3f2f3',1,'nc::operator++(NdArray< dtype > &lhs, int)']]], + ['operator_2b_3d_800',['operator+=',['../classnc_1_1_vec3.html#afef859d21f4332089843c5d337c1ce01',1,'nc::Vec3::operator+=()'],['../classnc_1_1_vec2.html#af441d4bbee40c07f9b86fbd056ff637e',1,'nc::Vec2::operator+=()'],['../classnc_1_1_nd_array_const_column_iterator.html#aa6b2701798827af7b54de723628a20d7',1,'nc::NdArrayConstColumnIterator::operator+=()'],['../classnc_1_1_nd_array_iterator.html#af691ece9b6335b8191eeeb43a6168b00',1,'nc::NdArrayIterator::operator+=()'],['../classnc_1_1_nd_array_const_iterator.html#aedc3bbd86f2b1b678abb27109dd50ff6',1,'nc::NdArrayConstIterator::operator+=()'],['../classnc_1_1_vec3.html#a2b1c4e63a7233fb56e2f037807dffb68',1,'nc::Vec3::operator+=()'],['../classnc_1_1_vec2.html#a21b1c9c0aa0b7e8886f1b4a7c255bb9e',1,'nc::Vec2::operator+=()'],['../classnc_1_1rotations_1_1_quaternion.html#af2b75597d538e55cfdd1215c35c9c6fe',1,'nc::rotations::Quaternion::operator+=()'],['../classnc_1_1polynomial_1_1_poly1d.html#a44a0331a1cfc760d7b80bfc20b661366',1,'nc::polynomial::Poly1d::operator+=()'],['../classnc_1_1_nd_array_column_iterator.html#acc186137be7b139f7fdcf323e716e5a0',1,'nc::NdArrayColumnIterator::operator+=()'],['../namespacenc.html#a4f44f946519987633cf47549e5764298',1,'nc::operator+=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aad9f67cc0911a32f877365833eec3f95',1,'nc::operator+=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ae11d9ca1ca975cd511b91ddb512dd097',1,'nc::operator+=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a7d26cc24b2a68f3ee89c701453e6c9a8',1,'nc::operator+=(NdArray< std::complex< dtype >> &lhs, dtype rhs)']]], + ['operator_2d_801',['operator-',['../classnc_1_1_nd_array_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70',1,'nc::NdArrayColumnIterator::operator-()'],['../classnc_1_1_nd_array_const_iterator.html#a4eaa70b83644e14dbfeccbc227408b63',1,'nc::NdArrayConstIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_const_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e',1,'nc::NdArrayConstIterator::operator-(const self_type &rhs) const noexcept'],['../classnc_1_1_nd_array_iterator.html#a8bb1505ab1105805bd3ced24b69d17eb',1,'nc::NdArrayIterator::operator-()'],['../classnc_1_1_nd_array_const_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a',1,'nc::NdArrayConstColumnIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70',1,'nc::NdArrayConstColumnIterator::operator-(const self_type &rhs) const noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a6dda98c1eba18dff31c9a66f528cd72b',1,'nc::NdArrayColumnIterator::operator-()'],['../classnc_1_1polynomial_1_1_poly1d.html#ade7b4f432e1056bc66d88a131a2cbf41',1,'nc::polynomial::Poly1d::operator-()'],['../classnc_1_1rotations_1_1_quaternion.html#ad6eb2370d77e01a944c4b32a48966e76',1,'nc::rotations::Quaternion::operator-(const Quaternion &inRhs) const noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a43fe6603ffbaaadf9348910e17e99519',1,'nc::rotations::Quaternion::operator-() const noexcept'],['../classnc_1_1_nd_array_iterator.html#a4eaa70b83644e14dbfeccbc227408b63',1,'nc::NdArrayIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e',1,'nc::NdArrayIterator::operator-(const self_type &rhs) const noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a',1,'nc::NdArrayColumnIterator::operator-()'],['../namespacenc.html#aae5b14c2febca550101675a55ee5e436',1,'nc::operator-(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aea4fe5d4daa75249a7b7765a219cbdb9',1,'nc::operator-(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a88d16d314b7e1427529122d2434223e0',1,'nc::operator-(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9b0eb6f1f7c4c55004478a3eb99c5367',1,'nc::operator-(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a419f15a00c80bffbe8446892e2015eae',1,'nc::operator-(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a1c852c2418c1b5eac6da53972f82233e',1,'nc::operator-(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#a305a3e10402251fc06871a84f8941298',1,'nc::operator-(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9d459ed977535f74996fe4820343138d',1,'nc::operator-(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a5e63a7dbcbc5bf2e9e5ad41c0169df34',1,'nc::operator-(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a31b3ca85817b7242152028c4fd3f32c3',1,'nc::operator-(const NdArray< dtype > &inArray)'],['../namespacenc.html#a7c52ae6f5c5daf9d27c292e0451cccc3',1,'nc::operator-(const Vec2 &vec) noexcept'],['../namespacenc.html#af29a28cada8fd30111a2c6d41a110ff8',1,'nc::operator-(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#ad279cbad60173006f6883e0d18b0147e',1,'nc::operator-(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a7cf1dfd7144b41f4d748af9fb8aa5ffb',1,'nc::operator-(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a7227073082d530baaf7ebb96ee06995b',1,'nc::operator-(const Vec3 &vec) noexcept'],['../namespacenc.html#a6935362e6d04b73f04c0e8191ae3098d',1,'nc::operator-(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#af87da9c66c9e535066221e4f85f3ed90',1,'nc::operator-(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a7c61e5d343e6439c26abb36db5a0b948',1,'nc::operator-(const Vec3 &lhs, const Vec3 &rhs) noexcept']]], + ['operator_2d_2d_802',['operator--',['../classnc_1_1_nd_array_const_iterator.html#a6061cf25f89e41d3a77d0f4fb0ccc7e2',1,'nc::NdArrayConstIterator::operator--()'],['../namespacenc.html#ab1ac162f983d66eec0f6189325bd1720',1,'nc::operator--(NdArray< dtype > &lhs, int)'],['../namespacenc.html#aa7ea8977a2740af99f4c08c88d7a79e8',1,'nc::operator--(NdArray< dtype > &rhs)'],['../classnc_1_1_nd_array_column_iterator.html#a8ee7c1ecf2dc107159aec64377f5d6bd',1,'nc::NdArrayColumnIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a145c2fa5cbd327fbba7dd4701ef27baf',1,'nc::NdArrayColumnIterator::operator--() noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a5fea275f4afdd1fca5b59830ce182bff',1,'nc::NdArrayConstColumnIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a9813a585d99eb656cbe7e1e12476d30b',1,'nc::NdArrayConstColumnIterator::operator--() noexcept'],['../classnc_1_1_nd_array_iterator.html#adcd3b9918db13467bcd234e6f3eec61f',1,'nc::NdArrayIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_iterator.html#a3bcc95583b7a85e5d253b6c830d33ec4',1,'nc::NdArrayIterator::operator--() noexcept'],['../classnc_1_1_nd_array_const_iterator.html#a526a13c16c0ef08b005f67184f80087a',1,'nc::NdArrayConstIterator::operator--()']]], + ['operator_2d_3d_803',['operator-=',['../classnc_1_1_vec2.html#a13a2bbc2595248211e0bc97de51e13b5',1,'nc::Vec2::operator-=()'],['../namespacenc.html#a9093ebf2aaa2dbc811ae45e77ba52960',1,'nc::operator-=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ac870e3973346560eba3380c11f216540',1,'nc::operator-=(NdArray< dtype > &lhs, dtype rhs)'],['../classnc_1_1_vec3.html#a208820649ed763a5dcc9405c4aa481f2',1,'nc::Vec3::operator-=(const Vec3 &rhs) noexcept'],['../classnc_1_1_vec3.html#a70251860269c7cb5becbe988a0b2c48e',1,'nc::Vec3::operator-=(double scaler) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#af68690450642df08758a9e067edeee47',1,'nc::NdArrayConstColumnIterator::operator-=()'],['../classnc_1_1_vec2.html#abfb0b00888fa37d52a895d06f2b39133',1,'nc::Vec2::operator-=()'],['../classnc_1_1rotations_1_1_quaternion.html#a60f1f33144c887cde1338fd80183638f',1,'nc::rotations::Quaternion::operator-=()'],['../classnc_1_1polynomial_1_1_poly1d.html#a732cca31f4b6180d0ad035a6daeb160a',1,'nc::polynomial::Poly1d::operator-=()'],['../classnc_1_1_nd_array_column_iterator.html#a80924e15c192ee04843add79ad2efece',1,'nc::NdArrayColumnIterator::operator-=()'],['../namespacenc.html#aae2f4895eb95921ca77529137e603cd0',1,'nc::operator-=()'],['../classnc_1_1_nd_array_iterator.html#a3ae9bd787a73639f2d0334d87f1fb720',1,'nc::NdArrayIterator::operator-=()'],['../classnc_1_1_nd_array_const_iterator.html#a9ae2efc38005276adaa744e6bec116c3',1,'nc::NdArrayConstIterator::operator-=()'],['../namespacenc.html#a8ba0ad93a3ec2ca409cdb14785e1f679',1,'nc::operator-=()']]], + ['operator_2d_3e_804',['operator->',['../classnc_1_1_nd_array_iterator.html#aa1627ff7d2b0089222794bfebaa29a32',1,'nc::NdArrayIterator::operator->()'],['../classnc_1_1_nd_array_const_iterator.html#a36aee44e67ed7bdc2fd3ca660e1748fa',1,'nc::NdArrayConstIterator::operator->()'],['../classnc_1_1_nd_array_const_column_iterator.html#a33d2e58d269f938c742ac25f46edf008',1,'nc::NdArrayConstColumnIterator::operator->()'],['../classnc_1_1_nd_array_column_iterator.html#ae66efdfa1252f405042276e3e9a25364',1,'nc::NdArrayColumnIterator::operator->()']]], + ['operator_2f_805',['operator/',['../classnc_1_1rotations_1_1_quaternion.html#ab054e067fc333a48582e291f95120866',1,'nc::rotations::Quaternion::operator/()'],['../namespacenc.html#ac8cd599e4b67e78c173894bc3d2bd7f2',1,'nc::operator/(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a69481119ed4cf9e7fe41b0c9228693e3',1,'nc::operator/(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a4bec4dbe25db0a2ec84e5999458a2c02',1,'nc::operator/(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a4dda3a7297e38679bf172d870090da1d',1,'nc::operator/(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a04bf5ca073685e762d84932ae14b8caa',1,'nc::operator/(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a1eee81e10b382e6b0474508725831a4f',1,'nc::operator/(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#a8d2ca407e7579acac2ca6496c4196d15',1,'nc::operator/(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a58862db40468f4be62b860990cf05336',1,'nc::operator/(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a06365d71ef5c147fee8e571b9fef7313',1,'nc::operator/(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#abe2fc114afe7f62aacf55a9288f45c4a',1,'nc::operator/(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a0a070b4ec8a29ee1a357c53857d4778a',1,'nc::operator/(const Vec3 &lhs, double rhs) noexcept']]], + ['operator_2f_3d_806',['operator/=',['../classnc_1_1_vec3.html#a431b2ac6af51bf59d804adbe5c8a7700',1,'nc::Vec3::operator/=()'],['../classnc_1_1rotations_1_1_quaternion.html#a859df40774ccff755560604b930c934d',1,'nc::rotations::Quaternion::operator/=()'],['../classnc_1_1_vec2.html#a1a1c875b11ea5571cb2b71778a692472',1,'nc::Vec2::operator/=()'],['../namespacenc.html#ad554e38d21aec306a8e3e4cd4ca990a2',1,'nc::operator/=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a26c691c1a8a6ddea49796591063e7630',1,'nc::operator/=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a05414ec63ae42b4a3e9e81ceef072094',1,'nc::operator/=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a7bbd0ddf9efe256d0c010e2c481da2d5',1,'nc::operator/=(NdArray< std::complex< dtype >> &lhs, dtype rhs)']]], + ['operator_3c_807',['operator<',['../classnc_1_1image_processing_1_1_pixel.html#a592926833195d4f2587efef12e4b1148',1,'nc::imageProcessing::Pixel::operator<()'],['../classnc_1_1_nd_array_const_iterator.html#a6ae3aca3c7cb79a9fd985c1820b74c39',1,'nc::NdArrayConstIterator::operator<()'],['../classnc_1_1_nd_array_const_column_iterator.html#ab0928638c653f5ed37088a3e5098064b',1,'nc::NdArrayConstColumnIterator::operator<()'],['../namespacenc.html#a6500fd0898086f300bb7909249b3e50f',1,'nc::operator<()'],['../classnc_1_1image_processing_1_1_centroid.html#a093719e81ed5bd5af0cb80dcfd03289f',1,'nc::imageProcessing::Centroid::operator<()'],['../namespacenc.html#a724cd71c78633aa5a757aa76b514f46a',1,'nc::operator<(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#ac1e7489f428b83ed55b5d44963b4eab6',1,'nc::operator<(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a8b68828e75eb8bd91ccdc63e6c39511f',1,'nc::operator<(const NdArray< dtype > &lhs, dtype inValue)']]], + ['operator_3c_3c_808',['operator<<',['../classnc_1_1coordinates_1_1_dec.html#a83e1fb757cb9153e02dcecd2a37976c1',1,'nc::coordinates::Dec::operator<<()'],['../classnc_1_1coordinates_1_1_r_a.html#aa7b5289b9d14da6e7b4393be2fddfc33',1,'nc::coordinates::RA::operator<<()'],['../classnc_1_1_shape.html#a520d818f31bbdacdf8cfbe6de9e88a28',1,'nc::Shape::operator<<()'],['../classnc_1_1_slice.html#ad6889d2df295fef3796aebb769b8cac0',1,'nc::Slice::operator<<()'],['../classnc_1_1rotations_1_1_quaternion.html#a6d11f3a719f010cdd220642d2bb586e6',1,'nc::rotations::Quaternion::operator<<()'],['../classnc_1_1image_processing_1_1_cluster.html#a1b1adec296082d83ee2f87484bfe07cb',1,'nc::imageProcessing::Cluster::operator<<()'],['../classnc_1_1polynomial_1_1_poly1d.html#a589d9ff132413fa86a20f2fa7910e5df',1,'nc::polynomial::Poly1d::operator<<()'],['../classnc_1_1image_processing_1_1_pixel.html#a157a2e98ace3e2185af571a68e5a5b9c',1,'nc::imageProcessing::Pixel::operator<<()'],['../namespacenc.html#aecdda46f9eca3e1f802bb5451ca952cb',1,'nc::operator<<(std::ostream &stream, const Vec2 &vec)'],['../namespacenc.html#a5df285ae528f83294768588fa622d41f',1,'nc::operator<<(std::ostream &inOStream, const NdArray< dtype > &inArray)'],['../classnc_1_1coordinates_1_1_coordinate.html#aa9e34ee6b7a8425e6af5a715935a4251',1,'nc::coordinates::Coordinate::operator<<()'],['../namespacenc.html#a0cf6f27f323d5bc34b6c56316c480865',1,'nc::operator<<(std::ostream &stream, const Vec3 &vec)'],['../namespacenc.html#a39964568372712a2a5427c44e59ffbe2',1,'nc::operator<<(const NdArray< dtype > &lhs, uint8 inNumBits)'],['../classnc_1_1image_processing_1_1_centroid.html#a787da1f79223e97a2788a2ad47e1c394',1,'nc::imageProcessing::Centroid::operator<<()']]], + ['operator_3c_3c_3d_809',['operator<<=',['../namespacenc.html#a9d82fca424a68c0042594e483b51ced2',1,'nc']]], + ['operator_3c_3d_810',['operator<=',['../classnc_1_1_nd_array_const_column_iterator.html#a8468d6928d88c7f34d1456261331f238',1,'nc::NdArrayConstColumnIterator::operator<=()'],['../classnc_1_1_nd_array_const_iterator.html#a171276f9e90a1336d156c61c2b61bd23',1,'nc::NdArrayConstIterator::operator<=()'],['../namespacenc.html#a9f9bb9e7b4ecf581498351e14f074145',1,'nc::operator<=(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#a496de942a0d74925ed64972dcb2cffe8',1,'nc::operator<=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a4ceffb2e21de23701d431abde8e78592',1,'nc::operator<=(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#accb22a9c6f4dc0452020b0a86ef8fdf9',1,'nc::operator<=(dtype inValue, const NdArray< dtype > &inArray)']]], + ['operator_3d_811',['operator=',['../classnc_1_1_nd_array.html#abe4cda5855bc5d6aee488293000d1acb',1,'nc::NdArray::operator=(const NdArray< dtype > &rhs)'],['../classnc_1_1_nd_array.html#a5ff24670b2173fccf1c9a35b688f2683',1,'nc::NdArray::operator=(NdArray< dtype > &&rhs) noexcept'],['../classnc_1_1_nd_array.html#ae5150db09cf7f76269b3254ceb0c43a8',1,'nc::NdArray::operator=(value_type inValue) noexcept']]], + ['operator_3d_3d_812',['operator==',['../classnc_1_1coordinates_1_1_r_a.html#ab9e22496d5fdc265ee5a5d77ec97c184',1,'nc::coordinates::RA::operator==()'],['../classnc_1_1coordinates_1_1_dec.html#a5b264a9d7bb9b2c1b537b03a5eac7265',1,'nc::coordinates::Dec::operator==()'],['../classnc_1_1coordinates_1_1_coordinate.html#a96255907cf1af2c416c7dbe34e96b0d5',1,'nc::coordinates::Coordinate::operator==()'],['../classnc_1_1_vec2.html#af04a7f20ae8ac7a59ae44f7819668fa0',1,'nc::Vec2::operator==()'],['../classnc_1_1_vec3.html#a2cc63855706091881f765b63dcf52c44',1,'nc::Vec3::operator==()'],['../classnc_1_1rotations_1_1_quaternion.html#a82f40acb2292256faffab2b88aa38208',1,'nc::rotations::Quaternion::operator==()'],['../classnc_1_1_nd_array_const_column_iterator.html#aec9953c2361595fc656a1a5d306e36c0',1,'nc::NdArrayConstColumnIterator::operator==()'],['../classnc_1_1_nd_array_const_iterator.html#ac055ccace7f791cfb94d7df8e7100dc2',1,'nc::NdArrayConstIterator::operator==()'],['../classnc_1_1image_processing_1_1_pixel.html#a008757a06c498b1a31e26d53a54e51dc',1,'nc::imageProcessing::Pixel::operator==()'],['../classnc_1_1image_processing_1_1_cluster.html#a8308c5f0313872c9499de36d69d0ff19',1,'nc::imageProcessing::Cluster::operator==()'],['../classnc_1_1image_processing_1_1_centroid.html#a503a2542b388f65fb80710dd33610abc',1,'nc::imageProcessing::Centroid::operator==()'],['../classnc_1_1_slice.html#a769815d8fbb98ba34101c18a21efbbf5',1,'nc::Slice::operator==()'],['../classnc_1_1_shape.html#a0267d8b7eb226fdc442be5c914f9c870',1,'nc::Shape::operator==()'],['../namespacenc.html#a283fba259d2cd892a8cbb2782490b92a',1,'nc::operator==(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aa956dff0507eddc1c1d80e423f126383',1,'nc::operator==(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#afdcaaff39ed10311d74302a6e9be2fd4',1,'nc::operator==(dtype inValue, const NdArray< dtype > &inArray)']]], + ['operator_3e_813',['operator>',['../classnc_1_1_nd_array_const_iterator.html#a8a312e1809eae90df625971d6b4ab62e',1,'nc::NdArrayConstIterator::operator>()'],['../classnc_1_1_nd_array_const_column_iterator.html#a827d0a8431ec616ef0161144b3d24af6',1,'nc::NdArrayConstColumnIterator::operator>()'],['../namespacenc.html#a20910640e1c1dd8bc9298561fedc84a4',1,'nc::operator>(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#a5755bb93bff9c0cbd38dbf1296902374',1,'nc::operator>(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a7433343db2634ef8f75e290370cfe21e',1,'nc::operator>(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#a113de1155a4e2a71dcdad1709c58afe8',1,'nc::operator>(dtype inValue, const NdArray< dtype > &inArray)']]], + ['operator_3e_3d_814',['operator>=',['../classnc_1_1_nd_array_const_iterator.html#a06871d8ba079130e84a892995c07a49a',1,'nc::NdArrayConstIterator::operator>=()'],['../classnc_1_1_nd_array_const_column_iterator.html#a9935c5d4b3deff76207ccde7cfccbf62',1,'nc::NdArrayConstColumnIterator::operator>=()'],['../namespacenc.html#a0dfd9f5c1ec0c3d61959c4c54e6dc23a',1,'nc::operator>=(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#a48199b1c11d42106cd09ae57215520fe',1,'nc::operator>=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a4a32b6c123eaa3f46c14159b243522de',1,'nc::operator>=(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#ac453f615df2e03778835908a70907145',1,'nc::operator>=(dtype inValue, const NdArray< dtype > &inArray)']]], + ['operator_3e_3e_815',['operator>>',['../namespacenc.html#a7e6fe3981b55cd4f381339b616a55ec8',1,'nc']]], + ['operator_3e_3e_3d_816',['operator>>=',['../namespacenc.html#a7626eefaf34c6ac138da762c6ae930e7',1,'nc']]], + ['operator_5b_5d_817',['operator[]',['../classnc_1_1_nd_array.html#a0f53f1d4f5b259021cf61026f65759e0',1,'nc::NdArray::operator[](const Indices &inIndices) const'],['../classnc_1_1_nd_array.html#ab04b63c2794747b88b0e640f737c6b2c',1,'nc::NdArray::operator[](const NdArray< bool > &inMask) const'],['../classnc_1_1_nd_array.html#a4744ab68830cc2cc16d8804295662b6a',1,'nc::NdArray::operator[](const Slice &inSlice) const'],['../classnc_1_1_nd_array.html#aeabee2aba11a885f3bd874b7a06d62ea',1,'nc::NdArray::operator[](int32 inIndex) const noexcept'],['../classnc_1_1_nd_array.html#aa58a51df41648b4d39f2f972c60e09ae',1,'nc::NdArray::operator[](int32 inIndex) noexcept'],['../classnc_1_1image_processing_1_1_cluster_maker.html#ae92d75ae626bb18324b0dfe69ee44f25',1,'nc::imageProcessing::ClusterMaker::operator[]()'],['../classnc_1_1image_processing_1_1_cluster.html#a386b222d5747fc2b77448ea5a56d24e4',1,'nc::imageProcessing::Cluster::operator[]()'],['../classnc_1_1_data_cube.html#a403c0b0df22fc5fa0858109fa7a65f87',1,'nc::DataCube::operator[](uint32 inIndex) const noexcept'],['../classnc_1_1_data_cube.html#a1a16b98e982d79cc6a172b8e2bfad856',1,'nc::DataCube::operator[](uint32 inIndex) noexcept'],['../classnc_1_1_nd_array_iterator.html#a40c132f8a7c1dd9fde17bcd3ddc2a18f',1,'nc::NdArrayIterator::operator[]()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3a37dd5a1496ecf2249950325b0a388c',1,'nc::NdArrayConstColumnIterator::operator[]()'],['../classnc_1_1_nd_array_column_iterator.html#a5dc1514332728850b8fbeaa7d1f8bda0',1,'nc::NdArrayColumnIterator::operator[]()'],['../classnc_1_1_nd_array_const_iterator.html#a83ee672f75e74c4421a25a7816be12c6',1,'nc::NdArrayConstIterator::operator[]()']]], + ['operator_5e_818',['operator^',['../classnc_1_1polynomial_1_1_poly1d.html#a548c945121cb39859f649cf39a6d0830',1,'nc::polynomial::Poly1d::operator^()'],['../namespacenc.html#ae4befd8a03420464348fdfcc71b106bb',1,'nc::operator^(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aa6be940ce9eed012ca0fac881d884411',1,'nc::operator^(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#af4f0fce9397ab714d3567d454f143835',1,'nc::operator^(dtype lhs, const NdArray< dtype > &rhs)']]], + ['operator_5e_3d_819',['operator^=',['../classnc_1_1polynomial_1_1_poly1d.html#a930f53185992537e3eb5844ebb70bf38',1,'nc::polynomial::Poly1d::operator^=()'],['../namespacenc.html#a8d3d77fe59d533d1301aea0112e38fa8',1,'nc::operator^=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ad4f2748ac9b7ebe59f1592e118169ea7',1,'nc::operator^=(NdArray< dtype > &lhs, dtype rhs)']]], + ['operator_7c_820',['operator|',['../namespacenc.html#a2dd868d584e1d65748cf04957eb97d99',1,'nc::operator|(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a129a0c61ca191919674576a76ee7fd93',1,'nc::operator|(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a50e6d418c92ccd6d7a2cf42a899a2203',1,'nc::operator|(dtype lhs, const NdArray< dtype > &rhs)']]], + ['operator_7c_3d_821',['operator|=',['../namespacenc.html#a958f4fd964269c7affaaff0e30b4dc01',1,'nc::operator|=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#afbb3e9d2eb28cad36a9de996263067d9',1,'nc::operator|=(NdArray< dtype > &lhs, dtype rhs)']]], + ['operator_7c_7c_822',['operator||',['../namespacenc.html#a25c9ac2d82de1fd3c81890ad38ebfb25',1,'nc::operator||(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#affe1935670d985dfe387f429d68874e2',1,'nc::operator||(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a37ef6f1c023837fbe628c3838b14d940',1,'nc::operator||(dtype lhs, const NdArray< dtype > &rhs)']]], + ['operator_7e_823',['operator~',['../namespacenc.html#ae9d44b86bb2c2968d5c67f11ca789d3e',1,'nc']]], + ['order_824',['order',['../classnc_1_1polynomial_1_1_poly1d.html#ab978ca2f65c7cd640309c1be86aa9141',1,'nc::polynomial::Poly1d']]], + ['outer_825',['outer',['../namespacenc.html#a395197f9b1d3f53a5fdcd234fa6e6baf',1,'nc']]], + ['outer_2ehpp_826',['outer.hpp',['../outer_8hpp.html',1,'']]], + ['ownsinternaldata_827',['ownsInternalData',['../classnc_1_1_nd_array.html#a63a1c0f9fdef078770e4f8cbe2c249ec',1,'nc::NdArray']]] ]; diff --git a/docs/doxygen/html/search/all_f.html b/docs/doxygen/html/search/all_f.html index c22b9404d..b23da6ce4 100644 --- a/docs/doxygen/html/search/all_f.html +++ b/docs/doxygen/html/search/all_f.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/all_f.js b/docs/doxygen/html/search/all_f.js index d3cf9a34a..1e45b3b88 100644 --- a/docs/doxygen/html/search/all_f.js +++ b/docs/doxygen/html/search/all_f.js @@ -1,57 +1,60 @@ var searchData= [ - ['pad_781',['pad',['../namespacenc.html#a54ebb23ac2a5fef9013f82afd8efd143',1,'nc']]], - ['pad_2ehpp_782',['pad.hpp',['../pad_8hpp.html',1,'']]], - ['partition_783',['partition',['../namespacenc.html#a4756e923c974025e793ede125bf0902f',1,'nc::partition()'],['../classnc_1_1_nd_array.html#a2fa17d38624fabcae789cfa3323b66d8',1,'nc::NdArray::partition()']]], - ['partition_2ehpp_784',['partition.hpp',['../partition_8hpp.html',1,'']]], - ['peakpixelintensity_785',['peakPixelIntensity',['../classnc_1_1image_processing_1_1_cluster.html#aab51c1c4539c3824bcdbd20a5db1fd4a',1,'nc::imageProcessing::Cluster']]], - ['percentile_786',['percentile',['../namespacenc.html#aea6e5b5c0255660d4968b657b06b4d58',1,'nc']]], - ['percentile_2ehpp_787',['percentile.hpp',['../percentile_8hpp.html',1,'']]], - ['percentilefilter_788',['percentileFilter',['../namespacenc_1_1filter.html#a357d5be7b2dc0b511d398acc4c8af1fd',1,'nc::filter']]], - ['percentilefilter_2ehpp_789',['percentileFilter.hpp',['../percentile_filter_8hpp.html',1,'']]], - ['percentilefilter1d_790',['percentileFilter1d',['../namespacenc_1_1filter.html#aee202739b753a067c7cb2aa32a9b1519',1,'nc::filter']]], - ['percentilefilter1d_2ehpp_791',['percentileFilter1d.hpp',['../percentile_filter1d_8hpp.html',1,'']]], - ['permutation_792',['permutation',['../namespacenc_1_1random.html#ac2ddd4fda3731e5f66378b191804085f',1,'nc::random::permutation(const NdArray< dtype > &inArray)'],['../namespacenc_1_1random.html#a01eed1c9d55b68fa4c93afef918dd3e0',1,'nc::random::permutation(dtype inValue)']]], - ['permutation_2ehpp_793',['permutation.hpp',['../permutation_8hpp.html',1,'']]], - ['pi_794',['pi',['../namespacenc_1_1constants.html#a2f1219a120c9cc1434486d9de75a8221',1,'nc::constants']]], - ['pitch_795',['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()']]], - ['pivotlu_5fdecomposition_796',['pivotLU_decomposition',['../namespacenc_1_1linalg.html#a390c3d32ed4b8ed7e718cbe121025ebd',1,'nc::linalg']]], - ['pivotlu_5fdecomposition_2ehpp_797',['pivotLU_decomposition.hpp',['../pivot_l_u__decomposition_8hpp.html',1,'']]], - ['pixel_798',['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()=default'],['../classnc_1_1image_processing_1_1_pixel.html#a4d1db82b1617d892266270d2bec28f61',1,'nc::imageProcessing::Pixel::Pixel(uint32 inRow, uint32 inCol, dtype inIntensity) noexcept']]], - ['pixel_2ehpp_799',['Pixel.hpp',['../_pixel_8hpp.html',1,'']]], - ['pnr_800',['pnr',['../namespacenc_1_1special.html#ab52643e0c6a859c47871094023c834b5',1,'nc::special']]], - ['pnr_2ehpp_801',['pnr.hpp',['../pnr_8hpp.html',1,'']]], - ['pointer_802',['pointer',['../classnc_1_1_nd_array_column_iterator.html#aeb402bf56941dc24138dc9f33845be81',1,'nc::NdArrayColumnIterator::pointer()'],['../classnc_1_1_nd_array_const_column_iterator.html#a4070d7ef2c99fec46a8df015769f58b6',1,'nc::NdArrayConstColumnIterator::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()']]], - ['poisson_803',['poisson',['../namespacenc_1_1random.html#ae18029c16ca489ea9db6331c609b20e8',1,'nc::random::poisson(double inMean=1)'],['../namespacenc_1_1random.html#ae103ffefefe45e4b64067d52a1763f24',1,'nc::random::poisson(const Shape &inShape, double inMean=1)']]], - ['poisson_2ehpp_804',['poisson.hpp',['../poisson_8hpp.html',1,'']]], - ['polar_805',['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_806',['polar.hpp',['../polar_8hpp.html',1,'']]], - ['poly1d_807',['Poly1d',['../classnc_1_1polynomial_1_1_poly1d.html',1,'nc::polynomial::Poly1d< dtype >'],['../classnc_1_1polynomial_1_1_poly1d.html#a33c01905d846d32e7d49dc4e7e884551',1,'nc::polynomial::Poly1d::Poly1d(const NdArray< dtype > &inValues, bool isRoots=false)'],['../classnc_1_1polynomial_1_1_poly1d.html#a30777a0dd9351cf64f96959dad0d9ba5',1,'nc::polynomial::Poly1d::Poly1d()=default']]], - ['poly1d_2ehpp_808',['Poly1d.hpp',['../_poly1d_8hpp.html',1,'']]], - ['polygamma_809',['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_2ehpp_810',['polygamma.hpp',['../polygamma_8hpp.html',1,'']]], - ['polynomial_2ehpp_811',['Polynomial.hpp',['../_polynomial_8hpp.html',1,'']]], - ['pop_5fback_812',['pop_back',['../classnc_1_1_data_cube.html#a8e261e08fd074073771b98dc96726b0f',1,'nc::DataCube']]], - ['positive_813',['POSITIVE',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94aab6c31432785221bae58327ef5f6ea58',1,'nc::coordinates']]], - ['power_814',['power',['../namespacenc.html#a1f059635ecfc805979db6973dfa29008',1,'nc::power()'],['../namespacenc_1_1utils.html#a716a63ef8627c73f6cc4146481fcabdf',1,'nc::utils::power()'],['../namespacenc.html#ad09cd336cd7c12dd32a84c91654fa5d1',1,'nc::power(const NdArray< dtype > &inArray, const NdArray< uint8 > &inExponents)'],['../namespacenc.html#a545b7daab1de503eed95d64b2d6b6002',1,'nc::power(const NdArray< dtype > &inArray, uint8 inExponent)']]], - ['powerf_815',['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)'],['../namespacenc.html#acc759e42feb1633b521ed7138cf4bfe3',1,'nc::powerf(dtype1 inValue, dtype2 inExponent) noexcept']]], - ['prime_816',['prime',['../namespacenc_1_1special.html#a9fa95a2e2a03a5eff8ea2f9e0594b206',1,'nc::special::prime(const NdArray< uint32 > &inArray)'],['../namespacenc_1_1special.html#a2e0b9f447fd033ac62a0dfe3eadb46cd',1,'nc::special::prime(uint32 n)']]], - ['prime_2ehpp_817',['prime.hpp',['../prime_8hpp.html',1,'']]], - ['print_818',['print',['../namespacenc.html#aad1fad7ba0ba94b118bdceb29178488b',1,'nc::print()'],['../classnc_1_1coordinates_1_1_coordinate.html#afb451d6e6c10d1f6cacd98bea67850a2',1,'nc::coordinates::Coordinate::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()'],['../classnc_1_1image_processing_1_1_pixel.html#a3a8fb91578395ef70a5f6038c4c48062',1,'nc::imageProcessing::Pixel::print()'],['../classnc_1_1image_processing_1_1_cluster.html#afdb1943f70f28747a1e83b74de984972',1,'nc::imageProcessing::Cluster::print()'],['../classnc_1_1image_processing_1_1_centroid.html#a139efcdd994d1bacdf62d65b3c427d8d',1,'nc::imageProcessing::Centroid::print()'],['../classnc_1_1coordinates_1_1_dec.html#aaf14d802f311f155310a8efa1bf18567',1,'nc::coordinates::Dec::print()'],['../classnc_1_1coordinates_1_1_r_a.html#a1f935f2825ee66373e5a5b0635851d8e',1,'nc::coordinates::RA::print()'],['../classnc_1_1_slice.html#a24c1eb77b94d3120bb02868cc965c058',1,'nc::Slice::print()'],['../classnc_1_1_shape.html#a494a3d8467911c47d56aa881e11a69f1',1,'nc::Shape::print()']]], - ['print_2ehpp_819',['print.hpp',['../print_8hpp.html',1,'']]], - ['prod_820',['prod',['../namespacenc.html#afadd339ab80158ebd9f1dc294052e58d',1,'nc::prod()'],['../classnc_1_1_nd_array.html#a1a95a48b1434d2260a265d13509f864d',1,'nc::NdArray::prod()']]], - ['prod_2ehpp_821',['prod.hpp',['../prod_8hpp.html',1,'']]], - ['proj_822',['proj',['../namespacenc.html#a7d1c3835da6ff00937ae62a975240957',1,'nc::proj(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a645f790a7dfb01c78317ff23e000db52',1,'nc::proj(const std::complex< dtype > &inValue)']]], - ['proj_2ehpp_823',['proj.hpp',['../proj_8hpp.html',1,'']]], - ['project_824',['project',['../classnc_1_1_vec3.html#aaba2a76701fbf17582641cefeb513f1c',1,'nc::Vec3::project()'],['../classnc_1_1_vec2.html#aa5cb2f954360d7be97c443da16694383',1,'nc::Vec2::project()']]], - ['ptp_825',['ptp',['../namespacenc.html#ae336fd0ff89427cca931a05fd9a9697a',1,'nc::ptp()'],['../classnc_1_1_nd_array.html#aabfb3d013e77626b7e423da910ab9ffb',1,'nc::NdArray::ptp()']]], - ['ptp_2ehpp_826',['ptp.hpp',['../ptp_8hpp.html',1,'']]], - ['push_5fback_827',['push_back',['../classnc_1_1_data_cube.html#a00f652afe3e8734f7d0707b12afd6a65',1,'nc::DataCube']]], - ['put_828',['put',['../classnc_1_1_nd_array.html#aa8f52298436a941b3e53b8204b0b85df',1,'nc::NdArray::put()'],['../namespacenc.html#aa1ecdda42e74eaa37516ee8032a9a84e',1,'nc::put(NdArray< dtype > &inArray, const NdArray< uint32 > &inIndices, dtype inValue)'],['../namespacenc.html#a5047b3f195605e63ef655048a8d07279',1,'nc::put(NdArray< dtype > &inArray, const NdArray< uint32 > &inIndices, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a02a06425d6284dbc370807ed11b1f7b2',1,'nc::NdArray::put(int32 inIndex, value_type inValue)'],['../classnc_1_1_nd_array.html#a57e1fc57f28b17f5ba6b421b82066388',1,'nc::NdArray::put(int32 inRow, int32 inCol, value_type inValue)'],['../classnc_1_1_nd_array.html#a6a0bd2406380b080b0ab7565759bb660',1,'nc::NdArray::put(const NdArray< uint32 > &inIndices, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#ae8213735dca5d0ad895138f01aa70947',1,'nc::NdArray::put(const Slice &inSlice, value_type inValue)'],['../classnc_1_1_nd_array.html#ab67c8f364caab7706d32041b2d01012d',1,'nc::NdArray::put(const Slice &inSlice, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a094424d8f368eaa3730102a5f75f0c2e',1,'nc::NdArray::put(const Slice &inRowSlice, const Slice &inColSlice, value_type inValue)'],['../classnc_1_1_nd_array.html#a2ebd28ce6f5227d42bd5c990a22d9f29',1,'nc::NdArray::put(const Slice &inRowSlice, int32 inColIndex, value_type inValue)'],['../classnc_1_1_nd_array.html#a7ae6272ff9d4dea6c890ef6dcbae6eb4',1,'nc::NdArray::put(int32 inRowIndex, const Slice &inColSlice, value_type inValue)'],['../classnc_1_1_nd_array.html#a17398abb49993b960a33bd14c0db399e',1,'nc::NdArray::put(const Slice &inRowSlice, const Slice &inColSlice, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#af062cf00ee693dbd74d0f440b1cbded7',1,'nc::NdArray::put(const Slice &inRowSlice, int32 inColIndex, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#ad74b89f5bac37d089ee940ae8c225703',1,'nc::NdArray::put(int32 inRowIndex, const Slice &inColSlice, const NdArray< dtype > &inValues)']]], - ['put_2ehpp_829',['put.hpp',['../put_8hpp.html',1,'']]], - ['putmask_830',['putmask',['../namespacenc.html#a0ae15cbd793c43445aca3660fc209a0c',1,'nc::putmask(NdArray< dtype > &inArray, const NdArray< bool > &inMask, const NdArray< dtype > &inValues)'],['../namespacenc.html#af6468198b46c36c8a93068c936617725',1,'nc::putmask(NdArray< dtype > &inArray, const NdArray< bool > &inMask, dtype inValue)']]], - ['putmask_831',['putMask',['../classnc_1_1_nd_array.html#aaf9229244e8984f557a823223ac35a29',1,'nc::NdArray::putMask(const NdArray< bool > &inMask, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a52e65ffbf29d168d53ac7605acb69b4e',1,'nc::NdArray::putMask(const NdArray< bool > &inMask, value_type inValue)']]], - ['putmask_2ehpp_832',['putmask.hpp',['../putmask_8hpp.html',1,'']]], - ['pybindinterface_2ehpp_833',['PybindInterface.hpp',['../_pybind_interface_8hpp.html',1,'']]], - ['pythoninterface_2ehpp_834',['PythonInterface.hpp',['../_python_interface_8hpp.html',1,'']]] + ['pad_828',['pad',['../namespacenc.html#a54ebb23ac2a5fef9013f82afd8efd143',1,'nc']]], + ['pad_2ehpp_829',['pad.hpp',['../pad_8hpp.html',1,'']]], + ['partition_830',['partition',['../classnc_1_1_nd_array.html#a2fa17d38624fabcae789cfa3323b66d8',1,'nc::NdArray::partition()'],['../namespacenc.html#a4756e923c974025e793ede125bf0902f',1,'nc::partition()']]], + ['partition_2ehpp_831',['partition.hpp',['../partition_8hpp.html',1,'']]], + ['peakpixelintensity_832',['peakPixelIntensity',['../classnc_1_1image_processing_1_1_cluster.html#aab51c1c4539c3824bcdbd20a5db1fd4a',1,'nc::imageProcessing::Cluster']]], + ['percentile_833',['percentile',['../namespacenc.html#aea6e5b5c0255660d4968b657b06b4d58',1,'nc']]], + ['percentile_2ehpp_834',['percentile.hpp',['../percentile_8hpp.html',1,'']]], + ['percentilefilter_835',['percentileFilter',['../namespacenc_1_1filter.html#a357d5be7b2dc0b511d398acc4c8af1fd',1,'nc::filter']]], + ['percentilefilter_2ehpp_836',['percentileFilter.hpp',['../percentile_filter_8hpp.html',1,'']]], + ['percentilefilter1d_837',['percentileFilter1d',['../namespacenc_1_1filter.html#aee202739b753a067c7cb2aa32a9b1519',1,'nc::filter']]], + ['percentilefilter1d_2ehpp_838',['percentileFilter1d.hpp',['../percentile_filter1d_8hpp.html',1,'']]], + ['permutation_839',['permutation',['../namespacenc_1_1random.html#ac2ddd4fda3731e5f66378b191804085f',1,'nc::random::permutation(const NdArray< dtype > &inArray)'],['../namespacenc_1_1random.html#a01eed1c9d55b68fa4c93afef918dd3e0',1,'nc::random::permutation(dtype inValue)']]], + ['permutation_2ehpp_840',['permutation.hpp',['../permutation_8hpp.html',1,'']]], + ['pi_841',['pi',['../namespacenc_1_1constants.html#a2f1219a120c9cc1434486d9de75a8221',1,'nc::constants']]], + ['pitch_842',['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()']]], + ['pivotlu_5fdecomposition_843',['pivotLU_decomposition',['../namespacenc_1_1linalg.html#a390c3d32ed4b8ed7e718cbe121025ebd',1,'nc::linalg']]], + ['pivotlu_5fdecomposition_2ehpp_844',['pivotLU_decomposition.hpp',['../pivot_l_u__decomposition_8hpp.html',1,'']]], + ['pixel_845',['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()=default'],['../classnc_1_1image_processing_1_1_pixel.html#a4d1db82b1617d892266270d2bec28f61',1,'nc::imageProcessing::Pixel::Pixel(uint32 inRow, uint32 inCol, dtype inIntensity) noexcept']]], + ['pixel_2ehpp_846',['Pixel.hpp',['../_pixel_8hpp.html',1,'']]], + ['place_847',['place',['../namespacenc.html#a171da00c79cfbc9500916b6ac4d3de70',1,'nc']]], + ['place_2ehpp_848',['place.hpp',['../place_8hpp.html',1,'']]], + ['pnr_849',['pnr',['../namespacenc_1_1special.html#ab52643e0c6a859c47871094023c834b5',1,'nc::special']]], + ['pnr_2ehpp_850',['pnr.hpp',['../pnr_8hpp.html',1,'']]], + ['pointer_851',['pointer',['../classnc_1_1_nd_array_iterator.html#a60d5e768fcd13cedd43febeb28148aea',1,'nc::NdArrayIterator::pointer()'],['../classnc_1_1_nd_array_column_iterator.html#aeb402bf56941dc24138dc9f33845be81',1,'nc::NdArrayColumnIterator::pointer()'],['../classnc_1_1_nd_array_const_iterator.html#a47936ba0f04dbcad7ab4e239bfb7da03',1,'nc::NdArrayConstIterator::pointer()'],['../classnc_1_1_nd_array_const_column_iterator.html#a4070d7ef2c99fec46a8df015769f58b6',1,'nc::NdArrayConstColumnIterator::pointer()'],['../classnc_1_1_nd_array.html#a288e6b26205492751717d3fb8854ca30',1,'nc::NdArray::pointer()']]], + ['poisson_852',['poisson',['../namespacenc_1_1random.html#ae18029c16ca489ea9db6331c609b20e8',1,'nc::random::poisson(double inMean=1)'],['../namespacenc_1_1random.html#ae103ffefefe45e4b64067d52a1763f24',1,'nc::random::poisson(const Shape &inShape, double inMean=1)']]], + ['poisson_2ehpp_853',['poisson.hpp',['../poisson_8hpp.html',1,'']]], + ['polar_854',['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_855',['polar.hpp',['../polar_8hpp.html',1,'']]], + ['poly1d_856',['Poly1d',['../classnc_1_1polynomial_1_1_poly1d.html',1,'nc::polynomial::Poly1d< dtype >'],['../classnc_1_1polynomial_1_1_poly1d.html#a33c01905d846d32e7d49dc4e7e884551',1,'nc::polynomial::Poly1d::Poly1d(const NdArray< dtype > &inValues, bool isRoots=false)'],['../classnc_1_1polynomial_1_1_poly1d.html#a30777a0dd9351cf64f96959dad0d9ba5',1,'nc::polynomial::Poly1d::Poly1d()=default']]], + ['poly1d_2ehpp_857',['Poly1d.hpp',['../_poly1d_8hpp.html',1,'']]], + ['polygamma_858',['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_859',['polygamma.hpp',['../polygamma_8hpp.html',1,'']]], + ['polynomial_2ehpp_860',['Polynomial.hpp',['../_polynomial_8hpp.html',1,'']]], + ['pop_5fback_861',['pop_back',['../classnc_1_1_data_cube.html#a8e261e08fd074073771b98dc96726b0f',1,'nc::DataCube']]], + ['positive_862',['POSITIVE',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94aab6c31432785221bae58327ef5f6ea58',1,'nc::coordinates']]], + ['power_863',['power',['../namespacenc.html#a545b7daab1de503eed95d64b2d6b6002',1,'nc::power()'],['../namespacenc_1_1utils.html#a716a63ef8627c73f6cc4146481fcabdf',1,'nc::utils::power()'],['../namespacenc.html#a1f059635ecfc805979db6973dfa29008',1,'nc::power(dtype inValue, uint8 inExponent) noexcept'],['../namespacenc.html#ad09cd336cd7c12dd32a84c91654fa5d1',1,'nc::power(const NdArray< dtype > &inArray, const NdArray< uint8 > &inExponents)']]], + ['powerf_864',['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#acc759e42feb1633b521ed7138cf4bfe3',1,'nc::powerf(dtype1 inValue, dtype2 inExponent) noexcept'],['../namespacenc.html#afa339e99c7bf037352cf0f2a0751f7fd',1,'nc::powerf(const NdArray< dtype1 > &inArray, dtype2 inExponent)']]], + ['powersoftwo_865',['powersOfTwo',['../namespacenc_1_1edac_1_1detail.html#ad4328ffa9ba9949a9c4b494592496055',1,'nc::edac::detail']]], + ['prime_866',['prime',['../namespacenc_1_1special.html#a2e0b9f447fd033ac62a0dfe3eadb46cd',1,'nc::special::prime(uint32 n)'],['../namespacenc_1_1special.html#a9fa95a2e2a03a5eff8ea2f9e0594b206',1,'nc::special::prime(const NdArray< uint32 > &inArray)']]], + ['prime_2ehpp_867',['prime.hpp',['../prime_8hpp.html',1,'']]], + ['print_868',['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()'],['../classnc_1_1image_processing_1_1_pixel.html#a3a8fb91578395ef70a5f6038c4c48062',1,'nc::imageProcessing::Pixel::print()'],['../classnc_1_1image_processing_1_1_cluster.html#afdb1943f70f28747a1e83b74de984972',1,'nc::imageProcessing::Cluster::print()'],['../classnc_1_1coordinates_1_1_dec.html#aaf14d802f311f155310a8efa1bf18567',1,'nc::coordinates::Dec::print()'],['../classnc_1_1image_processing_1_1_centroid.html#a139efcdd994d1bacdf62d65b3c427d8d',1,'nc::imageProcessing::Centroid::print()'],['../classnc_1_1_slice.html#a24c1eb77b94d3120bb02868cc965c058',1,'nc::Slice::print()'],['../classnc_1_1_shape.html#a494a3d8467911c47d56aa881e11a69f1',1,'nc::Shape::print()'],['../classnc_1_1coordinates_1_1_r_a.html#a1f935f2825ee66373e5a5b0635851d8e',1,'nc::coordinates::RA::print()'],['../classnc_1_1coordinates_1_1_coordinate.html#afb451d6e6c10d1f6cacd98bea67850a2',1,'nc::coordinates::Coordinate::print()'],['../namespacenc.html#aad1fad7ba0ba94b118bdceb29178488b',1,'nc::print()']]], + ['print_2ehpp_869',['print.hpp',['../print_8hpp.html',1,'']]], + ['prod_870',['prod',['../classnc_1_1_nd_array.html#a1a95a48b1434d2260a265d13509f864d',1,'nc::NdArray::prod()'],['../namespacenc.html#afadd339ab80158ebd9f1dc294052e58d',1,'nc::prod()']]], + ['prod_2ehpp_871',['prod.hpp',['../prod_8hpp.html',1,'']]], + ['proj_872',['proj',['../namespacenc.html#a645f790a7dfb01c78317ff23e000db52',1,'nc::proj(const std::complex< dtype > &inValue)'],['../namespacenc.html#a7d1c3835da6ff00937ae62a975240957',1,'nc::proj(const NdArray< std::complex< dtype >> &inArray)']]], + ['proj_2ehpp_873',['proj.hpp',['../proj_8hpp.html',1,'']]], + ['project_874',['project',['../classnc_1_1_vec3.html#aaba2a76701fbf17582641cefeb513f1c',1,'nc::Vec3::project()'],['../classnc_1_1_vec2.html#aa5cb2f954360d7be97c443da16694383',1,'nc::Vec2::project()']]], + ['ptp_875',['ptp',['../classnc_1_1_nd_array.html#aabfb3d013e77626b7e423da910ab9ffb',1,'nc::NdArray::ptp()'],['../namespacenc.html#ae336fd0ff89427cca931a05fd9a9697a',1,'nc::ptp()']]], + ['ptp_2ehpp_876',['ptp.hpp',['../ptp_8hpp.html',1,'']]], + ['push_5fback_877',['push_back',['../classnc_1_1_data_cube.html#a00f652afe3e8734f7d0707b12afd6a65',1,'nc::DataCube']]], + ['put_878',['put',['../classnc_1_1_nd_array.html#ab67c8f364caab7706d32041b2d01012d',1,'nc::NdArray::put(const Slice &inSlice, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a02a06425d6284dbc370807ed11b1f7b2',1,'nc::NdArray::put(int32 inIndex, value_type inValue)'],['../classnc_1_1_nd_array.html#a094424d8f368eaa3730102a5f75f0c2e',1,'nc::NdArray::put(const Slice &inRowSlice, const Slice &inColSlice, value_type inValue)'],['../classnc_1_1_nd_array.html#a7ae6272ff9d4dea6c890ef6dcbae6eb4',1,'nc::NdArray::put(int32 inRowIndex, const Slice &inColSlice, value_type inValue)'],['../classnc_1_1_nd_array.html#a17398abb49993b960a33bd14c0db399e',1,'nc::NdArray::put(const Slice &inRowSlice, const Slice &inColSlice, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#af062cf00ee693dbd74d0f440b1cbded7',1,'nc::NdArray::put(const Slice &inRowSlice, int32 inColIndex, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#ad74b89f5bac37d089ee940ae8c225703',1,'nc::NdArray::put(int32 inRowIndex, const Slice &inColSlice, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a2ebd28ce6f5227d42bd5c990a22d9f29',1,'nc::NdArray::put(const Slice &inRowSlice, int32 inColIndex, value_type inValue)'],['../classnc_1_1_nd_array.html#aa8f52298436a941b3e53b8204b0b85df',1,'nc::NdArray::put(const NdArray< uint32 > &inIndices, value_type inValue)'],['../classnc_1_1_nd_array.html#a57e1fc57f28b17f5ba6b421b82066388',1,'nc::NdArray::put(int32 inRow, int32 inCol, value_type inValue)'],['../classnc_1_1_nd_array.html#a6a0bd2406380b080b0ab7565759bb660',1,'nc::NdArray::put(const NdArray< uint32 > &inIndices, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#ae8213735dca5d0ad895138f01aa70947',1,'nc::NdArray::put(const Slice &inSlice, value_type inValue)'],['../namespacenc.html#aa1ecdda42e74eaa37516ee8032a9a84e',1,'nc::put(NdArray< dtype > &inArray, const NdArray< uint32 > &inIndices, dtype inValue)'],['../namespacenc.html#a5047b3f195605e63ef655048a8d07279',1,'nc::put(NdArray< dtype > &inArray, const NdArray< uint32 > &inIndices, const NdArray< dtype > &inValues)']]], + ['put_2ehpp_879',['put.hpp',['../put_8hpp.html',1,'']]], + ['putmask_880',['putMask',['../classnc_1_1_nd_array.html#a52e65ffbf29d168d53ac7605acb69b4e',1,'nc::NdArray::putMask(const NdArray< bool > &inMask, value_type inValue)'],['../classnc_1_1_nd_array.html#aaf9229244e8984f557a823223ac35a29',1,'nc::NdArray::putMask(const NdArray< bool > &inMask, const NdArray< dtype > &inValues)']]], + ['putmask_881',['putmask',['../namespacenc.html#af6468198b46c36c8a93068c936617725',1,'nc::putmask(NdArray< dtype > &inArray, const NdArray< bool > &inMask, dtype inValue)'],['../namespacenc.html#a0ae15cbd793c43445aca3660fc209a0c',1,'nc::putmask(NdArray< dtype > &inArray, const NdArray< bool > &inMask, const NdArray< dtype > &inValues)']]], + ['putmask_2ehpp_882',['putmask.hpp',['../putmask_8hpp.html',1,'']]], + ['pybindinterface_2ehpp_883',['PybindInterface.hpp',['../_pybind_interface_8hpp.html',1,'']]], + ['pythoninterface_2ehpp_884',['PythonInterface.hpp',['../_python_interface_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/classes_0.html b/docs/doxygen/html/search/classes_0.html index 63d78fe69..af8159ee6 100644 --- a/docs/doxygen/html/search/classes_0.html +++ b/docs/doxygen/html/search/classes_0.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_0.js b/docs/doxygen/html/search/classes_0.js index 7eddb8a2d..abcf88197 100644 --- a/docs/doxygen/html/search/classes_0.js +++ b/docs/doxygen/html/search/classes_0.js @@ -1,9 +1,9 @@ var searchData= [ - ['all_5farithmetic_1159',['all_arithmetic',['../structnc_1_1all__arithmetic.html',1,'nc']]], - ['all_5farithmetic_3c_20head_2c_20tail_2e_2e_2e_20_3e_1160',['all_arithmetic< Head, Tail... >',['../structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html',1,'nc']]], - ['all_5farithmetic_3c_20t_20_3e_1161',['all_arithmetic< T >',['../structnc_1_1all__arithmetic_3_01_t_01_4.html',1,'nc']]], - ['all_5fsame_1162',['all_same',['../structnc_1_1all__same.html',1,'nc']]], - ['all_5fsame_3c_20t1_2c_20head_2c_20tail_2e_2e_2e_20_3e_1163',['all_same< T1, Head, Tail... >',['../structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html',1,'nc']]], - ['all_5fsame_3c_20t1_2c_20t2_20_3e_1164',['all_same< T1, T2 >',['../structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html',1,'nc']]] + ['all_5farithmetic_1210',['all_arithmetic',['../structnc_1_1all__arithmetic.html',1,'nc']]], + ['all_5farithmetic_3c_20head_2c_20tail_2e_2e_2e_20_3e_1211',['all_arithmetic< Head, Tail... >',['../structnc_1_1all__arithmetic_3_01_head_00_01_tail_8_8_8_01_4.html',1,'nc']]], + ['all_5farithmetic_3c_20t_20_3e_1212',['all_arithmetic< T >',['../structnc_1_1all__arithmetic_3_01_t_01_4.html',1,'nc']]], + ['all_5fsame_1213',['all_same',['../structnc_1_1all__same.html',1,'nc']]], + ['all_5fsame_3c_20t1_2c_20head_2c_20tail_2e_2e_2e_20_3e_1214',['all_same< T1, Head, Tail... >',['../structnc_1_1all__same_3_01_t1_00_01_head_00_01_tail_8_8_8_01_4.html',1,'nc']]], + ['all_5fsame_3c_20t1_2c_20t2_20_3e_1215',['all_same< T1, T2 >',['../structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/classes_1.html b/docs/doxygen/html/search/classes_1.html index 1a5618cfc..576e91689 100644 --- a/docs/doxygen/html/search/classes_1.html +++ b/docs/doxygen/html/search/classes_1.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_1.js b/docs/doxygen/html/search/classes_1.js index 658d6bb25..bb158b7f3 100644 --- a/docs/doxygen/html/search/classes_1.js +++ b/docs/doxygen/html/search/classes_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['bisection_1165',['Bisection',['../classnc_1_1roots_1_1_bisection.html',1,'nc::roots']]], - ['brent_1166',['Brent',['../classnc_1_1roots_1_1_brent.html',1,'nc::roots']]] + ['bisection_1216',['Bisection',['../classnc_1_1roots_1_1_bisection.html',1,'nc::roots']]], + ['brent_1217',['Brent',['../classnc_1_1roots_1_1_brent.html',1,'nc::roots']]] ]; diff --git a/docs/doxygen/html/search/classes_2.html b/docs/doxygen/html/search/classes_2.html index 455fc5fed..956405e5a 100644 --- a/docs/doxygen/html/search/classes_2.html +++ b/docs/doxygen/html/search/classes_2.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_2.js b/docs/doxygen/html/search/classes_2.js index ece7f4296..c33b6e099 100644 --- a/docs/doxygen/html/search/classes_2.js +++ b/docs/doxygen/html/search/classes_2.js @@ -1,7 +1,7 @@ var searchData= [ - ['centroid_1167',['Centroid',['../classnc_1_1image_processing_1_1_centroid.html',1,'nc::imageProcessing']]], - ['cluster_1168',['Cluster',['../classnc_1_1image_processing_1_1_cluster.html',1,'nc::imageProcessing']]], - ['clustermaker_1169',['ClusterMaker',['../classnc_1_1image_processing_1_1_cluster_maker.html',1,'nc::imageProcessing']]], - ['coordinate_1170',['Coordinate',['../classnc_1_1coordinates_1_1_coordinate.html',1,'nc::coordinates']]] + ['centroid_1218',['Centroid',['../classnc_1_1image_processing_1_1_centroid.html',1,'nc::imageProcessing']]], + ['cluster_1219',['Cluster',['../classnc_1_1image_processing_1_1_cluster.html',1,'nc::imageProcessing']]], + ['clustermaker_1220',['ClusterMaker',['../classnc_1_1image_processing_1_1_cluster_maker.html',1,'nc::imageProcessing']]], + ['coordinate_1221',['Coordinate',['../classnc_1_1coordinates_1_1_coordinate.html',1,'nc::coordinates']]] ]; diff --git a/docs/doxygen/html/search/classes_3.html b/docs/doxygen/html/search/classes_3.html index a7139980b..d33343bc1 100644 --- a/docs/doxygen/html/search/classes_3.html +++ b/docs/doxygen/html/search/classes_3.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_3.js b/docs/doxygen/html/search/classes_3.js index 300d431d3..719220c06 100644 --- a/docs/doxygen/html/search/classes_3.js +++ b/docs/doxygen/html/search/classes_3.js @@ -1,9 +1,9 @@ var searchData= [ - ['datacube_1171',['DataCube',['../classnc_1_1_data_cube.html',1,'nc']]], - ['dcm_1172',['DCM',['../classnc_1_1rotations_1_1_d_c_m.html',1,'nc::rotations']]], - ['dec_1173',['Dec',['../classnc_1_1coordinates_1_1_dec.html',1,'nc::coordinates']]], - ['dekker_1174',['Dekker',['../classnc_1_1roots_1_1_dekker.html',1,'nc::roots']]], - ['dtypeinfo_1175',['DtypeInfo',['../classnc_1_1_dtype_info.html',1,'nc']]], - ['dtypeinfo_3c_20std_3a_3acomplex_3c_20dtype_20_3e_20_3e_1176',['DtypeInfo< std::complex< dtype > >',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html',1,'nc']]] + ['datacube_1222',['DataCube',['../classnc_1_1_data_cube.html',1,'nc']]], + ['dcm_1223',['DCM',['../classnc_1_1rotations_1_1_d_c_m.html',1,'nc::rotations']]], + ['dec_1224',['Dec',['../classnc_1_1coordinates_1_1_dec.html',1,'nc::coordinates']]], + ['dekker_1225',['Dekker',['../classnc_1_1roots_1_1_dekker.html',1,'nc::roots']]], + ['dtypeinfo_1226',['DtypeInfo',['../classnc_1_1_dtype_info.html',1,'nc']]], + ['dtypeinfo_3c_20std_3a_3acomplex_3c_20dtype_20_3e_20_3e_1227',['DtypeInfo< std::complex< dtype > >',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/classes_4.html b/docs/doxygen/html/search/classes_4.html index cb0026fdf..8430b07fe 100644 --- a/docs/doxygen/html/search/classes_4.html +++ b/docs/doxygen/html/search/classes_4.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_4.js b/docs/doxygen/html/search/classes_4.js index 1fa4ff4af..ec38c6a68 100644 --- a/docs/doxygen/html/search/classes_4.js +++ b/docs/doxygen/html/search/classes_4.js @@ -1,4 +1,4 @@ var searchData= [ - ['file_1177',['File',['../classnc_1_1filesystem_1_1_file.html',1,'nc::filesystem']]] + ['file_1228',['File',['../classnc_1_1filesystem_1_1_file.html',1,'nc::filesystem']]] ]; diff --git a/docs/doxygen/html/search/classes_5.html b/docs/doxygen/html/search/classes_5.html index b77826f89..c2f1b767b 100644 --- a/docs/doxygen/html/search/classes_5.html +++ b/docs/doxygen/html/search/classes_5.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_5.js b/docs/doxygen/html/search/classes_5.js index 20bb24bd1..1b04c1b49 100644 --- a/docs/doxygen/html/search/classes_5.js +++ b/docs/doxygen/html/search/classes_5.js @@ -1,7 +1,4 @@ var searchData= [ - ['is_5fcomplex_1178',['is_complex',['../structnc_1_1is__complex.html',1,'nc']]], - ['is_5fcomplex_3c_20std_3a_3acomplex_3c_20t_20_3e_20_3e_1179',['is_complex< std::complex< T > >',['../structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html',1,'nc']]], - ['is_5fvalid_5fdtype_1180',['is_valid_dtype',['../structnc_1_1is__valid__dtype.html',1,'nc']]], - ['iteration_1181',['Iteration',['../classnc_1_1roots_1_1_iteration.html',1,'nc::roots']]] + ['greaterthan_1229',['greaterThan',['../structnc_1_1greater_than.html',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/classes_6.html b/docs/doxygen/html/search/classes_6.html index 99e860317..e39847ce8 100644 --- a/docs/doxygen/html/search/classes_6.html +++ b/docs/doxygen/html/search/classes_6.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_6.js b/docs/doxygen/html/search/classes_6.js index 6009393bb..2ce1a1372 100644 --- a/docs/doxygen/html/search/classes_6.js +++ b/docs/doxygen/html/search/classes_6.js @@ -1,4 +1,7 @@ var searchData= [ - ['legendrepolynomial_1182',['LegendrePolynomial',['../classnc_1_1integrate_1_1_legendre_polynomial.html',1,'nc::integrate']]] + ['is_5fcomplex_1230',['is_complex',['../structnc_1_1is__complex.html',1,'nc']]], + ['is_5fcomplex_3c_20std_3a_3acomplex_3c_20t_20_3e_20_3e_1231',['is_complex< std::complex< T > >',['../structnc_1_1is__complex_3_01std_1_1complex_3_01_t_01_4_01_4.html',1,'nc']]], + ['is_5fvalid_5fdtype_1232',['is_valid_dtype',['../structnc_1_1is__valid__dtype.html',1,'nc']]], + ['iteration_1233',['Iteration',['../classnc_1_1roots_1_1_iteration.html',1,'nc::roots']]] ]; diff --git a/docs/doxygen/html/search/classes_7.html b/docs/doxygen/html/search/classes_7.html index 7d1ae6d84..a2c4d1a39 100644 --- a/docs/doxygen/html/search/classes_7.html +++ b/docs/doxygen/html/search/classes_7.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_7.js b/docs/doxygen/html/search/classes_7.js index 2d1c45d43..4bd20487c 100644 --- a/docs/doxygen/html/search/classes_7.js +++ b/docs/doxygen/html/search/classes_7.js @@ -1,9 +1,4 @@ var searchData= [ - ['ndarray_1183',['NdArray',['../classnc_1_1_nd_array.html',1,'nc']]], - ['ndarraycolumniterator_1184',['NdArrayColumnIterator',['../classnc_1_1_nd_array_column_iterator.html',1,'nc']]], - ['ndarrayconstcolumniterator_1185',['NdArrayConstColumnIterator',['../classnc_1_1_nd_array_const_column_iterator.html',1,'nc']]], - ['ndarrayconstiterator_1186',['NdArrayConstIterator',['../classnc_1_1_nd_array_const_iterator.html',1,'nc']]], - ['ndarrayiterator_1187',['NdArrayIterator',['../classnc_1_1_nd_array_iterator.html',1,'nc']]], - ['newton_1188',['Newton',['../classnc_1_1roots_1_1_newton.html',1,'nc::roots']]] + ['legendrepolynomial_1234',['LegendrePolynomial',['../classnc_1_1integrate_1_1_legendre_polynomial.html',1,'nc::integrate']]] ]; diff --git a/docs/doxygen/html/search/classes_8.html b/docs/doxygen/html/search/classes_8.html index 13aea8536..17003e480 100644 --- a/docs/doxygen/html/search/classes_8.html +++ b/docs/doxygen/html/search/classes_8.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_8.js b/docs/doxygen/html/search/classes_8.js index b3e0e784a..a39d700de 100644 --- a/docs/doxygen/html/search/classes_8.js +++ b/docs/doxygen/html/search/classes_8.js @@ -1,5 +1,11 @@ var searchData= [ - ['pixel_1189',['Pixel',['../classnc_1_1image_processing_1_1_pixel.html',1,'nc::imageProcessing']]], - ['poly1d_1190',['Poly1d',['../classnc_1_1polynomial_1_1_poly1d.html',1,'nc::polynomial']]] + ['ndarray_1235',['NdArray',['../classnc_1_1_nd_array.html',1,'nc']]], + ['ndarray_3c_20bool_20_3e_1236',['NdArray< bool >',['../classnc_1_1_nd_array.html',1,'nc']]], + ['ndarray_3c_20double_20_3e_1237',['NdArray< double >',['../classnc_1_1_nd_array.html',1,'nc']]], + ['ndarraycolumniterator_1238',['NdArrayColumnIterator',['../classnc_1_1_nd_array_column_iterator.html',1,'nc']]], + ['ndarrayconstcolumniterator_1239',['NdArrayConstColumnIterator',['../classnc_1_1_nd_array_const_column_iterator.html',1,'nc']]], + ['ndarrayconstiterator_1240',['NdArrayConstIterator',['../classnc_1_1_nd_array_const_iterator.html',1,'nc']]], + ['ndarrayiterator_1241',['NdArrayIterator',['../classnc_1_1_nd_array_iterator.html',1,'nc']]], + ['newton_1242',['Newton',['../classnc_1_1roots_1_1_newton.html',1,'nc::roots']]] ]; diff --git a/docs/doxygen/html/search/classes_9.html b/docs/doxygen/html/search/classes_9.html index da92743b2..b8afa8cba 100644 --- a/docs/doxygen/html/search/classes_9.html +++ b/docs/doxygen/html/search/classes_9.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_9.js b/docs/doxygen/html/search/classes_9.js index 8aefb0531..df70c3d2e 100644 --- a/docs/doxygen/html/search/classes_9.js +++ b/docs/doxygen/html/search/classes_9.js @@ -1,4 +1,5 @@ var searchData= [ - ['quaternion_1191',['Quaternion',['../classnc_1_1rotations_1_1_quaternion.html',1,'nc::rotations']]] + ['pixel_1243',['Pixel',['../classnc_1_1image_processing_1_1_pixel.html',1,'nc::imageProcessing']]], + ['poly1d_1244',['Poly1d',['../classnc_1_1polynomial_1_1_poly1d.html',1,'nc::polynomial']]] ]; diff --git a/docs/doxygen/html/search/classes_a.html b/docs/doxygen/html/search/classes_a.html index 44f1dcea5..6788af270 100644 --- a/docs/doxygen/html/search/classes_a.html +++ b/docs/doxygen/html/search/classes_a.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_a.js b/docs/doxygen/html/search/classes_a.js index 775c24b48..48135d7bb 100644 --- a/docs/doxygen/html/search/classes_a.js +++ b/docs/doxygen/html/search/classes_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['ra_1192',['RA',['../classnc_1_1coordinates_1_1_r_a.html',1,'nc::coordinates']]] + ['quaternion_1245',['Quaternion',['../classnc_1_1rotations_1_1_quaternion.html',1,'nc::rotations']]] ]; diff --git a/docs/doxygen/html/search/classes_b.html b/docs/doxygen/html/search/classes_b.html index 6de43930e..3fcb49858 100644 --- a/docs/doxygen/html/search/classes_b.html +++ b/docs/doxygen/html/search/classes_b.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_b.js b/docs/doxygen/html/search/classes_b.js index fd319d60e..4ea6b556e 100644 --- a/docs/doxygen/html/search/classes_b.js +++ b/docs/doxygen/html/search/classes_b.js @@ -1,7 +1,4 @@ var searchData= [ - ['secant_1193',['Secant',['../classnc_1_1roots_1_1_secant.html',1,'nc::roots']]], - ['shape_1194',['Shape',['../classnc_1_1_shape.html',1,'nc']]], - ['slice_1195',['Slice',['../classnc_1_1_slice.html',1,'nc']]], - ['svd_1196',['SVD',['../classnc_1_1linalg_1_1_s_v_d.html',1,'nc::linalg']]] + ['ra_1246',['RA',['../classnc_1_1coordinates_1_1_r_a.html',1,'nc::coordinates']]] ]; diff --git a/docs/doxygen/html/search/classes_c.html b/docs/doxygen/html/search/classes_c.html index e7443ec68..2f7b1f3da 100644 --- a/docs/doxygen/html/search/classes_c.html +++ b/docs/doxygen/html/search/classes_c.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_c.js b/docs/doxygen/html/search/classes_c.js index bd9809683..bb42aa9ca 100644 --- a/docs/doxygen/html/search/classes_c.js +++ b/docs/doxygen/html/search/classes_c.js @@ -1,4 +1,7 @@ var searchData= [ - ['timer_1197',['Timer',['../classnc_1_1_timer.html',1,'nc']]] + ['secant_1247',['Secant',['../classnc_1_1roots_1_1_secant.html',1,'nc::roots']]], + ['shape_1248',['Shape',['../classnc_1_1_shape.html',1,'nc']]], + ['slice_1249',['Slice',['../classnc_1_1_slice.html',1,'nc']]], + ['svd_1250',['SVD',['../classnc_1_1linalg_1_1_s_v_d.html',1,'nc::linalg']]] ]; diff --git a/docs/doxygen/html/search/classes_d.html b/docs/doxygen/html/search/classes_d.html index ab4e1181e..f9011e70f 100644 --- a/docs/doxygen/html/search/classes_d.html +++ b/docs/doxygen/html/search/classes_d.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/classes_d.js b/docs/doxygen/html/search/classes_d.js index eb914d910..04b3f3bc9 100644 --- a/docs/doxygen/html/search/classes_d.js +++ b/docs/doxygen/html/search/classes_d.js @@ -1,5 +1,4 @@ var searchData= [ - ['vec2_1198',['Vec2',['../classnc_1_1_vec2.html',1,'nc']]], - ['vec3_1199',['Vec3',['../classnc_1_1_vec3.html',1,'nc']]] + ['timer_1251',['Timer',['../classnc_1_1_timer.html',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/classes_e.html b/docs/doxygen/html/search/classes_e.html new file mode 100644 index 000000000..bb33dcfa5 --- /dev/null +++ b/docs/doxygen/html/search/classes_e.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/docs/doxygen/html/search/classes_e.js b/docs/doxygen/html/search/classes_e.js new file mode 100644 index 000000000..a828cea42 --- /dev/null +++ b/docs/doxygen/html/search/classes_e.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['vec2_1252',['Vec2',['../classnc_1_1_vec2.html',1,'nc']]], + ['vec3_1253',['Vec3',['../classnc_1_1_vec3.html',1,'nc']]] +]; diff --git a/docs/doxygen/html/search/defines_0.html b/docs/doxygen/html/search/defines_0.html index 75e810d41..15cc3de38 100644 --- a/docs/doxygen/html/search/defines_0.html +++ b/docs/doxygen/html/search/defines_0.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/defines_0.js b/docs/doxygen/html/search/defines_0.js index b4503fe82..c95330282 100644 --- a/docs/doxygen/html/search/defines_0.js +++ b/docs/doxygen/html/search/defines_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['conditional_5fno_5fexcept_2338',['CONDITIONAL_NO_EXCEPT',['../_stl_algorithms_8hpp.html#a328745b2b79b264770ec2783aa489f26',1,'StlAlgorithms.hpp']]] + ['conditional_5fno_5fexcept_2440',['CONDITIONAL_NO_EXCEPT',['../_stl_algorithms_8hpp.html#a328745b2b79b264770ec2783aa489f26',1,'StlAlgorithms.hpp']]] ]; diff --git a/docs/doxygen/html/search/defines_1.html b/docs/doxygen/html/search/defines_1.html index ef85498af..c49009c71 100644 --- a/docs/doxygen/html/search/defines_1.html +++ b/docs/doxygen/html/search/defines_1.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/defines_1.js b/docs/doxygen/html/search/defines_1.js index 3f43821f9..664093358 100644 --- a/docs/doxygen/html/search/defines_1.js +++ b/docs/doxygen/html/search/defines_1.js @@ -1,9 +1,9 @@ var searchData= [ - ['static_5fassert_5farithmetic_2339',['STATIC_ASSERT_ARITHMETIC',['../_static_asserts_8hpp.html#a36abb32368b91aed0d3133a4cfd5ae92',1,'StaticAsserts.hpp']]], - ['static_5fassert_5farithmetic_5for_5fcomplex_2340',['STATIC_ASSERT_ARITHMETIC_OR_COMPLEX',['../_static_asserts_8hpp.html#a1589f74d429e30786c65cda69b17ab96',1,'StaticAsserts.hpp']]], - ['static_5fassert_5fcomplex_2341',['STATIC_ASSERT_COMPLEX',['../_static_asserts_8hpp.html#a1cd1b98c2b918cbd369afc12c11a0597',1,'StaticAsserts.hpp']]], - ['static_5fassert_5ffloat_2342',['STATIC_ASSERT_FLOAT',['../_static_asserts_8hpp.html#a0cd8e186da549fbdd918111d0302d973',1,'StaticAsserts.hpp']]], - ['static_5fassert_5finteger_2343',['STATIC_ASSERT_INTEGER',['../_static_asserts_8hpp.html#a187660686583e9047c0cf4424259ad10',1,'StaticAsserts.hpp']]], - ['static_5fassert_5fvalid_5fdtype_2344',['STATIC_ASSERT_VALID_DTYPE',['../_static_asserts_8hpp.html#a00cfe1ea01e56fe28ffe3d6ce5cae468',1,'StaticAsserts.hpp']]] + ['static_5fassert_5farithmetic_2441',['STATIC_ASSERT_ARITHMETIC',['../_static_asserts_8hpp.html#a36abb32368b91aed0d3133a4cfd5ae92',1,'StaticAsserts.hpp']]], + ['static_5fassert_5farithmetic_5for_5fcomplex_2442',['STATIC_ASSERT_ARITHMETIC_OR_COMPLEX',['../_static_asserts_8hpp.html#a1589f74d429e30786c65cda69b17ab96',1,'StaticAsserts.hpp']]], + ['static_5fassert_5fcomplex_2443',['STATIC_ASSERT_COMPLEX',['../_static_asserts_8hpp.html#a1cd1b98c2b918cbd369afc12c11a0597',1,'StaticAsserts.hpp']]], + ['static_5fassert_5ffloat_2444',['STATIC_ASSERT_FLOAT',['../_static_asserts_8hpp.html#a0cd8e186da549fbdd918111d0302d973',1,'StaticAsserts.hpp']]], + ['static_5fassert_5finteger_2445',['STATIC_ASSERT_INTEGER',['../_static_asserts_8hpp.html#a187660686583e9047c0cf4424259ad10',1,'StaticAsserts.hpp']]], + ['static_5fassert_5fvalid_5fdtype_2446',['STATIC_ASSERT_VALID_DTYPE',['../_static_asserts_8hpp.html#a00cfe1ea01e56fe28ffe3d6ce5cae468',1,'StaticAsserts.hpp']]] ]; diff --git a/docs/doxygen/html/search/defines_2.html b/docs/doxygen/html/search/defines_2.html index 63da7d9fd..c55101115 100644 --- a/docs/doxygen/html/search/defines_2.html +++ b/docs/doxygen/html/search/defines_2.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/defines_2.js b/docs/doxygen/html/search/defines_2.js index 01740c4f8..a64192a7a 100644 --- a/docs/doxygen/html/search/defines_2.js +++ b/docs/doxygen/html/search/defines_2.js @@ -1,5 +1,5 @@ var searchData= [ - ['throw_5finvalid_5fargument_5ferror_2345',['THROW_INVALID_ARGUMENT_ERROR',['../_error_8hpp.html#af2aff1172060367b9c5398fa097fa8fd',1,'Error.hpp']]], - ['throw_5fruntime_5ferror_2346',['THROW_RUNTIME_ERROR',['../_error_8hpp.html#a0f0ce4acf1fd6032112a06ebc50bb05a',1,'Error.hpp']]] + ['throw_5finvalid_5fargument_5ferror_2447',['THROW_INVALID_ARGUMENT_ERROR',['../_error_8hpp.html#af2aff1172060367b9c5398fa097fa8fd',1,'Error.hpp']]], + ['throw_5fruntime_5ferror_2448',['THROW_RUNTIME_ERROR',['../_error_8hpp.html#a0f0ce4acf1fd6032112a06ebc50bb05a',1,'Error.hpp']]] ]; diff --git a/docs/doxygen/html/search/enums_0.html b/docs/doxygen/html/search/enums_0.html index f2b0f7532..141fff57b 100644 --- a/docs/doxygen/html/search/enums_0.html +++ b/docs/doxygen/html/search/enums_0.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enums_0.js b/docs/doxygen/html/search/enums_0.js index 509bcd346..c3c2da68a 100644 --- a/docs/doxygen/html/search/enums_0.js +++ b/docs/doxygen/html/search/enums_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['axis_2320',['Axis',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84',1,'nc']]] + ['axis_2422',['Axis',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/enums_1.html b/docs/doxygen/html/search/enums_1.html index 1b1fea39b..d29f3b16d 100644 --- a/docs/doxygen/html/search/enums_1.html +++ b/docs/doxygen/html/search/enums_1.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enums_1.js b/docs/doxygen/html/search/enums_1.js index a085b75e7..382e3a369 100644 --- a/docs/doxygen/html/search/enums_1.js +++ b/docs/doxygen/html/search/enums_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['boundary_2321',['Boundary',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6',1,'nc::filter']]] + ['boundary_2423',['Boundary',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6',1,'nc::filter']]] ]; diff --git a/docs/doxygen/html/search/enums_2.html b/docs/doxygen/html/search/enums_2.html index 790ad6612..59aadf2cb 100644 --- a/docs/doxygen/html/search/enums_2.html +++ b/docs/doxygen/html/search/enums_2.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enums_2.js b/docs/doxygen/html/search/enums_2.js index 6a7f916c3..8596cd793 100644 --- a/docs/doxygen/html/search/enums_2.js +++ b/docs/doxygen/html/search/enums_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['endian_2322',['Endian',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152',1,'nc']]] + ['endian_2424',['Endian',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/enums_3.html b/docs/doxygen/html/search/enums_3.html index 7eee6e6b7..87c174430 100644 --- a/docs/doxygen/html/search/enums_3.html +++ b/docs/doxygen/html/search/enums_3.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enums_3.js b/docs/doxygen/html/search/enums_3.js index 8670fa85d..afa98c7eb 100644 --- a/docs/doxygen/html/search/enums_3.js +++ b/docs/doxygen/html/search/enums_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['sign_2323',['Sign',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94',1,'nc::coordinates']]] + ['sign_2425',['Sign',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94',1,'nc::coordinates']]] ]; diff --git a/docs/doxygen/html/search/enumvalues_0.html b/docs/doxygen/html/search/enumvalues_0.html index 01f10803f..0d131d95b 100644 --- a/docs/doxygen/html/search/enumvalues_0.html +++ b/docs/doxygen/html/search/enumvalues_0.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enumvalues_0.js b/docs/doxygen/html/search/enumvalues_0.js index 36888f214..816a60d59 100644 --- a/docs/doxygen/html/search/enumvalues_0.js +++ b/docs/doxygen/html/search/enumvalues_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['big_2324',['BIG',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152aa60c6c694491d75b439073b8cb05b139',1,'nc']]] + ['big_2426',['BIG',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152aa60c6c694491d75b439073b8cb05b139',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/enumvalues_1.html b/docs/doxygen/html/search/enumvalues_1.html index 5a0ca7a55..cd9187ab3 100644 --- a/docs/doxygen/html/search/enumvalues_1.html +++ b/docs/doxygen/html/search/enumvalues_1.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enumvalues_1.js b/docs/doxygen/html/search/enumvalues_1.js index a52c69f89..be6b30490 100644 --- a/docs/doxygen/html/search/enumvalues_1.js +++ b/docs/doxygen/html/search/enumvalues_1.js @@ -1,5 +1,5 @@ var searchData= [ - ['col_2325',['COL',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84aa44a065875f5d66d41474bb9bfb0ce05',1,'nc']]], - ['constant_2326',['CONSTANT',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6a8d6b5cada83510220f59e00ce86d4d92',1,'nc::filter']]] + ['col_2427',['COL',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84aa44a065875f5d66d41474bb9bfb0ce05',1,'nc']]], + ['constant_2428',['CONSTANT',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6a8d6b5cada83510220f59e00ce86d4d92',1,'nc::filter']]] ]; diff --git a/docs/doxygen/html/search/enumvalues_2.html b/docs/doxygen/html/search/enumvalues_2.html index 324a403fc..2b95d9204 100644 --- a/docs/doxygen/html/search/enumvalues_2.html +++ b/docs/doxygen/html/search/enumvalues_2.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enumvalues_2.js b/docs/doxygen/html/search/enumvalues_2.js index c05db0f3b..1f2c269b6 100644 --- a/docs/doxygen/html/search/enumvalues_2.js +++ b/docs/doxygen/html/search/enumvalues_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['little_2327',['LITTLE',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152a1314341b466dcb5e2c880b76414c49fe',1,'nc']]] + ['little_2429',['LITTLE',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152a1314341b466dcb5e2c880b76414c49fe',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/enumvalues_3.html b/docs/doxygen/html/search/enumvalues_3.html index 64f035144..bc0ac8a97 100644 --- a/docs/doxygen/html/search/enumvalues_3.html +++ b/docs/doxygen/html/search/enumvalues_3.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enumvalues_3.js b/docs/doxygen/html/search/enumvalues_3.js index 65beebd6f..5f180fd08 100644 --- a/docs/doxygen/html/search/enumvalues_3.js +++ b/docs/doxygen/html/search/enumvalues_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['mirror_2328',['MIRROR',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6a72a92ae9c1d172cdda196686278fbfc6',1,'nc::filter']]] + ['mirror_2430',['MIRROR',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6a72a92ae9c1d172cdda196686278fbfc6',1,'nc::filter']]] ]; diff --git a/docs/doxygen/html/search/enumvalues_4.html b/docs/doxygen/html/search/enumvalues_4.html index e6a2f7933..ef94dd8d7 100644 --- a/docs/doxygen/html/search/enumvalues_4.html +++ b/docs/doxygen/html/search/enumvalues_4.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enumvalues_4.js b/docs/doxygen/html/search/enumvalues_4.js index e6d808703..2904606f5 100644 --- a/docs/doxygen/html/search/enumvalues_4.js +++ b/docs/doxygen/html/search/enumvalues_4.js @@ -1,7 +1,7 @@ var searchData= [ - ['native_2329',['NATIVE',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152af78504d96ba7177dc0c6784905ac8743',1,'nc']]], - ['nearest_2330',['NEAREST',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6aad135772d7cf93dd0ccf9d2474b34e6a',1,'nc::filter']]], - ['negative_2331',['NEGATIVE',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94a50546bf973283065b6ccf09faf7a580a',1,'nc::coordinates']]], - ['none_2332',['NONE',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84ab50339a10e1de285ac99d4c3990b8693',1,'nc']]] + ['native_2431',['NATIVE',['../namespacenc.html#a8dcbcb343147d09e74689ad8a2586152af78504d96ba7177dc0c6784905ac8743',1,'nc']]], + ['nearest_2432',['NEAREST',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6aad135772d7cf93dd0ccf9d2474b34e6a',1,'nc::filter']]], + ['negative_2433',['NEGATIVE',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94a50546bf973283065b6ccf09faf7a580a',1,'nc::coordinates']]], + ['none_2434',['NONE',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84ab50339a10e1de285ac99d4c3990b8693',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/enumvalues_5.html b/docs/doxygen/html/search/enumvalues_5.html index 00d0a05a7..1c2e2f33d 100644 --- a/docs/doxygen/html/search/enumvalues_5.html +++ b/docs/doxygen/html/search/enumvalues_5.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enumvalues_5.js b/docs/doxygen/html/search/enumvalues_5.js index f6641ce60..63e476043 100644 --- a/docs/doxygen/html/search/enumvalues_5.js +++ b/docs/doxygen/html/search/enumvalues_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['positive_2333',['POSITIVE',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94aab6c31432785221bae58327ef5f6ea58',1,'nc::coordinates']]] + ['positive_2435',['POSITIVE',['../namespacenc_1_1coordinates.html#a07a05f0462e5f74f05cbd04664c4ca94aab6c31432785221bae58327ef5f6ea58',1,'nc::coordinates']]] ]; diff --git a/docs/doxygen/html/search/enumvalues_6.html b/docs/doxygen/html/search/enumvalues_6.html index fe6bf8e5b..f985df91d 100644 --- a/docs/doxygen/html/search/enumvalues_6.html +++ b/docs/doxygen/html/search/enumvalues_6.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enumvalues_6.js b/docs/doxygen/html/search/enumvalues_6.js index 541387c36..ecbd01737 100644 --- a/docs/doxygen/html/search/enumvalues_6.js +++ b/docs/doxygen/html/search/enumvalues_6.js @@ -1,5 +1,5 @@ var searchData= [ - ['reflect_2334',['REFLECT',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6ae4f6a05f82ed398f984f4bc1a55838df',1,'nc::filter']]], - ['row_2335',['ROW',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84a54c1ed33c810f895d48c008d89f880b7',1,'nc']]] + ['reflect_2436',['REFLECT',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6ae4f6a05f82ed398f984f4bc1a55838df',1,'nc::filter']]], + ['row_2437',['ROW',['../namespacenc.html#a5edb9ac6f596ae1256faa3f5d797dc84a54c1ed33c810f895d48c008d89f880b7',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/enumvalues_7.html b/docs/doxygen/html/search/enumvalues_7.html index 6b045ef3e..7fdf663dd 100644 --- a/docs/doxygen/html/search/enumvalues_7.html +++ b/docs/doxygen/html/search/enumvalues_7.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/enumvalues_7.js b/docs/doxygen/html/search/enumvalues_7.js index bc493da49..cf8510219 100644 --- a/docs/doxygen/html/search/enumvalues_7.js +++ b/docs/doxygen/html/search/enumvalues_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['wrap_2336',['WRAP',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6ae1c8555fcf0ea2bb648a6fd527d658c0',1,'nc::filter']]] + ['wrap_2438',['WRAP',['../namespacenc_1_1filter.html#ada517a46ea965fa51ed51101135c6ac6ae1c8555fcf0ea2bb648a6fd527d658c0',1,'nc::filter']]] ]; diff --git a/docs/doxygen/html/search/files_0.html b/docs/doxygen/html/search/files_0.html index 844f0d648..9498842a6 100644 --- a/docs/doxygen/html/search/files_0.html +++ b/docs/doxygen/html/search/files_0.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_0.js b/docs/doxygen/html/search/files_0.js index 42e56468d..9337d8710 100644 --- a/docs/doxygen/html/search/files_0.js +++ b/docs/doxygen/html/search/files_0.js @@ -1,40 +1,40 @@ var searchData= [ - ['abs_2ehpp_1218',['abs.hpp',['../abs_8hpp.html',1,'']]], - ['add_2ehpp_1219',['add.hpp',['../add_8hpp.html',1,'']]], - ['addboundary1d_2ehpp_1220',['addBoundary1d.hpp',['../add_boundary1d_8hpp.html',1,'']]], - ['addboundary2d_2ehpp_1221',['addBoundary2d.hpp',['../add_boundary2d_8hpp.html',1,'']]], - ['airy_5fai_2ehpp_1222',['airy_ai.hpp',['../airy__ai_8hpp.html',1,'']]], - ['airy_5fai_5fprime_2ehpp_1223',['airy_ai_prime.hpp',['../airy__ai__prime_8hpp.html',1,'']]], - ['airy_5fbi_2ehpp_1224',['airy_bi.hpp',['../airy__bi_8hpp.html',1,'']]], - ['airy_5fbi_5fprime_2ehpp_1225',['airy_bi_prime.hpp',['../airy__bi__prime_8hpp.html',1,'']]], - ['alen_2ehpp_1226',['alen.hpp',['../alen_8hpp.html',1,'']]], - ['all_2ehpp_1227',['all.hpp',['../all_8hpp.html',1,'']]], - ['allclose_2ehpp_1228',['allclose.hpp',['../allclose_8hpp.html',1,'']]], - ['amax_2ehpp_1229',['amax.hpp',['../amax_8hpp.html',1,'']]], - ['amin_2ehpp_1230',['amin.hpp',['../amin_8hpp.html',1,'']]], - ['angle_2ehpp_1231',['angle.hpp',['../angle_8hpp.html',1,'']]], - ['any_2ehpp_1232',['any.hpp',['../any_8hpp.html',1,'']]], - ['append_2ehpp_1233',['append.hpp',['../append_8hpp.html',1,'']]], - ['applyfunction_2ehpp_1234',['applyFunction.hpp',['../apply_function_8hpp.html',1,'']]], - ['applypoly1d_2ehpp_1235',['applyPoly1d.hpp',['../apply_poly1d_8hpp.html',1,'']]], - ['applythreshold_2ehpp_1236',['applyThreshold.hpp',['../apply_threshold_8hpp.html',1,'']]], - ['arange_2ehpp_1237',['arange.hpp',['../arange_8hpp.html',1,'']]], - ['arccos_2ehpp_1238',['arccos.hpp',['../arccos_8hpp.html',1,'']]], - ['arccosh_2ehpp_1239',['arccosh.hpp',['../arccosh_8hpp.html',1,'']]], - ['arcsin_2ehpp_1240',['arcsin.hpp',['../arcsin_8hpp.html',1,'']]], - ['arcsinh_2ehpp_1241',['arcsinh.hpp',['../arcsinh_8hpp.html',1,'']]], - ['arctan_2ehpp_1242',['arctan.hpp',['../arctan_8hpp.html',1,'']]], - ['arctan2_2ehpp_1243',['arctan2.hpp',['../arctan2_8hpp.html',1,'']]], - ['arctanh_2ehpp_1244',['arctanh.hpp',['../arctanh_8hpp.html',1,'']]], - ['argmax_2ehpp_1245',['argmax.hpp',['../argmax_8hpp.html',1,'']]], - ['argmin_2ehpp_1246',['argmin.hpp',['../argmin_8hpp.html',1,'']]], - ['argsort_2ehpp_1247',['argsort.hpp',['../argsort_8hpp.html',1,'']]], - ['argwhere_2ehpp_1248',['argwhere.hpp',['../argwhere_8hpp.html',1,'']]], - ['around_2ehpp_1249',['around.hpp',['../around_8hpp.html',1,'']]], - ['array_5fequal_2ehpp_1250',['array_equal.hpp',['../array__equal_8hpp.html',1,'']]], - ['array_5fequiv_2ehpp_1251',['array_equiv.hpp',['../array__equiv_8hpp.html',1,'']]], - ['asarray_2ehpp_1252',['asarray.hpp',['../asarray_8hpp.html',1,'']]], - ['astype_2ehpp_1253',['astype.hpp',['../astype_8hpp.html',1,'']]], - ['average_2ehpp_1254',['average.hpp',['../average_8hpp.html',1,'']]] + ['abs_2ehpp_1274',['abs.hpp',['../abs_8hpp.html',1,'']]], + ['add_2ehpp_1275',['add.hpp',['../add_8hpp.html',1,'']]], + ['addboundary1d_2ehpp_1276',['addBoundary1d.hpp',['../add_boundary1d_8hpp.html',1,'']]], + ['addboundary2d_2ehpp_1277',['addBoundary2d.hpp',['../add_boundary2d_8hpp.html',1,'']]], + ['airy_5fai_2ehpp_1278',['airy_ai.hpp',['../airy__ai_8hpp.html',1,'']]], + ['airy_5fai_5fprime_2ehpp_1279',['airy_ai_prime.hpp',['../airy__ai__prime_8hpp.html',1,'']]], + ['airy_5fbi_2ehpp_1280',['airy_bi.hpp',['../airy__bi_8hpp.html',1,'']]], + ['airy_5fbi_5fprime_2ehpp_1281',['airy_bi_prime.hpp',['../airy__bi__prime_8hpp.html',1,'']]], + ['alen_2ehpp_1282',['alen.hpp',['../alen_8hpp.html',1,'']]], + ['all_2ehpp_1283',['all.hpp',['../all_8hpp.html',1,'']]], + ['allclose_2ehpp_1284',['allclose.hpp',['../allclose_8hpp.html',1,'']]], + ['amax_2ehpp_1285',['amax.hpp',['../amax_8hpp.html',1,'']]], + ['amin_2ehpp_1286',['amin.hpp',['../amin_8hpp.html',1,'']]], + ['angle_2ehpp_1287',['angle.hpp',['../angle_8hpp.html',1,'']]], + ['any_2ehpp_1288',['any.hpp',['../any_8hpp.html',1,'']]], + ['append_2ehpp_1289',['append.hpp',['../append_8hpp.html',1,'']]], + ['applyfunction_2ehpp_1290',['applyFunction.hpp',['../apply_function_8hpp.html',1,'']]], + ['applypoly1d_2ehpp_1291',['applyPoly1d.hpp',['../apply_poly1d_8hpp.html',1,'']]], + ['applythreshold_2ehpp_1292',['applyThreshold.hpp',['../apply_threshold_8hpp.html',1,'']]], + ['arange_2ehpp_1293',['arange.hpp',['../arange_8hpp.html',1,'']]], + ['arccos_2ehpp_1294',['arccos.hpp',['../arccos_8hpp.html',1,'']]], + ['arccosh_2ehpp_1295',['arccosh.hpp',['../arccosh_8hpp.html',1,'']]], + ['arcsin_2ehpp_1296',['arcsin.hpp',['../arcsin_8hpp.html',1,'']]], + ['arcsinh_2ehpp_1297',['arcsinh.hpp',['../arcsinh_8hpp.html',1,'']]], + ['arctan_2ehpp_1298',['arctan.hpp',['../arctan_8hpp.html',1,'']]], + ['arctan2_2ehpp_1299',['arctan2.hpp',['../arctan2_8hpp.html',1,'']]], + ['arctanh_2ehpp_1300',['arctanh.hpp',['../arctanh_8hpp.html',1,'']]], + ['argmax_2ehpp_1301',['argmax.hpp',['../argmax_8hpp.html',1,'']]], + ['argmin_2ehpp_1302',['argmin.hpp',['../argmin_8hpp.html',1,'']]], + ['argsort_2ehpp_1303',['argsort.hpp',['../argsort_8hpp.html',1,'']]], + ['argwhere_2ehpp_1304',['argwhere.hpp',['../argwhere_8hpp.html',1,'']]], + ['around_2ehpp_1305',['around.hpp',['../around_8hpp.html',1,'']]], + ['array_5fequal_2ehpp_1306',['array_equal.hpp',['../array__equal_8hpp.html',1,'']]], + ['array_5fequiv_2ehpp_1307',['array_equiv.hpp',['../array__equiv_8hpp.html',1,'']]], + ['asarray_2ehpp_1308',['asarray.hpp',['../asarray_8hpp.html',1,'']]], + ['astype_2ehpp_1309',['astype.hpp',['../astype_8hpp.html',1,'']]], + ['average_2ehpp_1310',['average.hpp',['../average_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_1.html b/docs/doxygen/html/search/files_1.html index 92739573b..7050ef48a 100644 --- a/docs/doxygen/html/search/files_1.html +++ b/docs/doxygen/html/search/files_1.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_1.js b/docs/doxygen/html/search/files_1.js index 14387623d..39be6ed9e 100644 --- a/docs/doxygen/html/search/files_1.js +++ b/docs/doxygen/html/search/files_1.js @@ -1,27 +1,29 @@ var searchData= [ - ['bernoilli_2ehpp_1255',['bernoilli.hpp',['../bernoilli_8hpp.html',1,'']]], - ['bernoulli_2ehpp_1256',['bernoulli.hpp',['../bernoulli_8hpp.html',1,'']]], - ['bessel_5fin_2ehpp_1257',['bessel_in.hpp',['../bessel__in_8hpp.html',1,'']]], - ['bessel_5fin_5fprime_2ehpp_1258',['bessel_in_prime.hpp',['../bessel__in__prime_8hpp.html',1,'']]], - ['bessel_5fjn_2ehpp_1259',['bessel_jn.hpp',['../bessel__jn_8hpp.html',1,'']]], - ['bessel_5fjn_5fprime_2ehpp_1260',['bessel_jn_prime.hpp',['../bessel__jn__prime_8hpp.html',1,'']]], - ['bessel_5fkn_2ehpp_1261',['bessel_kn.hpp',['../bessel__kn_8hpp.html',1,'']]], - ['bessel_5fkn_5fprime_2ehpp_1262',['bessel_kn_prime.hpp',['../bessel__kn__prime_8hpp.html',1,'']]], - ['bessel_5fyn_2ehpp_1263',['bessel_yn.hpp',['../bessel__yn_8hpp.html',1,'']]], - ['bessel_5fyn_5fprime_2ehpp_1264',['bessel_yn_prime.hpp',['../bessel__yn__prime_8hpp.html',1,'']]], - ['binaryrepr_2ehpp_1265',['binaryRepr.hpp',['../binary_repr_8hpp.html',1,'']]], - ['bincount_2ehpp_1266',['bincount.hpp',['../bincount_8hpp.html',1,'']]], - ['binomial_2ehpp_1267',['binomial.hpp',['../binomial_8hpp.html',1,'']]], - ['bisection_2ehpp_1268',['Bisection.hpp',['../_bisection_8hpp.html',1,'']]], - ['bitwise_5fand_2ehpp_1269',['bitwise_and.hpp',['../bitwise__and_8hpp.html',1,'']]], - ['bitwise_5fnot_2ehpp_1270',['bitwise_not.hpp',['../bitwise__not_8hpp.html',1,'']]], - ['bitwise_5for_2ehpp_1271',['bitwise_or.hpp',['../bitwise__or_8hpp.html',1,'']]], - ['bitwise_5fxor_2ehpp_1272',['bitwise_xor.hpp',['../bitwise__xor_8hpp.html',1,'']]], - ['boostinterface_2ehpp_1273',['BoostInterface.hpp',['../_boost_interface_8hpp.html',1,'']]], - ['boostnumpyndarrayhelper_2ehpp_1274',['BoostNumpyNdarrayHelper.hpp',['../_boost_numpy_ndarray_helper_8hpp.html',1,'']]], - ['boundary_2ehpp_1275',['Boundary.hpp',['../_boundary_8hpp.html',1,'']]], - ['brent_2ehpp_1276',['Brent.hpp',['../_brent_8hpp.html',1,'']]], - ['building_2emd_1277',['Building.md',['../_building_8md.html',1,'']]], - ['byteswap_2ehpp_1278',['byteswap.hpp',['../byteswap_8hpp.html',1,'']]] + ['bartlett_2ehpp_1311',['bartlett.hpp',['../bartlett_8hpp.html',1,'']]], + ['bernoilli_2ehpp_1312',['bernoilli.hpp',['../bernoilli_8hpp.html',1,'']]], + ['bernoulli_2ehpp_1313',['bernoulli.hpp',['../bernoulli_8hpp.html',1,'']]], + ['bessel_5fin_2ehpp_1314',['bessel_in.hpp',['../bessel__in_8hpp.html',1,'']]], + ['bessel_5fin_5fprime_2ehpp_1315',['bessel_in_prime.hpp',['../bessel__in__prime_8hpp.html',1,'']]], + ['bessel_5fjn_2ehpp_1316',['bessel_jn.hpp',['../bessel__jn_8hpp.html',1,'']]], + ['bessel_5fjn_5fprime_2ehpp_1317',['bessel_jn_prime.hpp',['../bessel__jn__prime_8hpp.html',1,'']]], + ['bessel_5fkn_2ehpp_1318',['bessel_kn.hpp',['../bessel__kn_8hpp.html',1,'']]], + ['bessel_5fkn_5fprime_2ehpp_1319',['bessel_kn_prime.hpp',['../bessel__kn__prime_8hpp.html',1,'']]], + ['bessel_5fyn_2ehpp_1320',['bessel_yn.hpp',['../bessel__yn_8hpp.html',1,'']]], + ['bessel_5fyn_5fprime_2ehpp_1321',['bessel_yn_prime.hpp',['../bessel__yn__prime_8hpp.html',1,'']]], + ['binaryrepr_2ehpp_1322',['binaryRepr.hpp',['../binary_repr_8hpp.html',1,'']]], + ['bincount_2ehpp_1323',['bincount.hpp',['../bincount_8hpp.html',1,'']]], + ['binomial_2ehpp_1324',['binomial.hpp',['../binomial_8hpp.html',1,'']]], + ['bisection_2ehpp_1325',['Bisection.hpp',['../_bisection_8hpp.html',1,'']]], + ['bitwise_5fand_2ehpp_1326',['bitwise_and.hpp',['../bitwise__and_8hpp.html',1,'']]], + ['bitwise_5fnot_2ehpp_1327',['bitwise_not.hpp',['../bitwise__not_8hpp.html',1,'']]], + ['bitwise_5for_2ehpp_1328',['bitwise_or.hpp',['../bitwise__or_8hpp.html',1,'']]], + ['bitwise_5fxor_2ehpp_1329',['bitwise_xor.hpp',['../bitwise__xor_8hpp.html',1,'']]], + ['blackman_2ehpp_1330',['blackman.hpp',['../blackman_8hpp.html',1,'']]], + ['boostinterface_2ehpp_1331',['BoostInterface.hpp',['../_boost_interface_8hpp.html',1,'']]], + ['boostnumpyndarrayhelper_2ehpp_1332',['BoostNumpyNdarrayHelper.hpp',['../_boost_numpy_ndarray_helper_8hpp.html',1,'']]], + ['boundary_2ehpp_1333',['Boundary.hpp',['../_boundary_8hpp.html',1,'']]], + ['brent_2ehpp_1334',['Brent.hpp',['../_brent_8hpp.html',1,'']]], + ['building_2emd_1335',['Building.md',['../_building_8md.html',1,'']]], + ['byteswap_2ehpp_1336',['byteswap.hpp',['../byteswap_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_10.html b/docs/doxygen/html/search/files_10.html index 809de9c1d..e52318ed3 100644 --- a/docs/doxygen/html/search/files_10.html +++ b/docs/doxygen/html/search/files_10.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_10.js b/docs/doxygen/html/search/files_10.js index 13aae4ea8..81b9e428a 100644 --- a/docs/doxygen/html/search/files_10.js +++ b/docs/doxygen/html/search/files_10.js @@ -1,41 +1,42 @@ var searchData= [ - ['beta_2ehpp_1572',['beta.hpp',['../_special_2beta_8hpp.html',1,'']]], - ['gamma_2ehpp_1573',['gamma.hpp',['../_special_2gamma_8hpp.html',1,'']]], - ['secant_2ehpp_1574',['Secant.hpp',['../_secant_8hpp.html',1,'']]], - ['setdiff1d_2ehpp_1575',['setdiff1d.hpp',['../setdiff1d_8hpp.html',1,'']]], - ['shuffle_2ehpp_1576',['shuffle.hpp',['../shuffle_8hpp.html',1,'']]], - ['sign_2ehpp_1577',['sign.hpp',['../sign_8hpp.html',1,'']]], - ['signbit_2ehpp_1578',['signbit.hpp',['../signbit_8hpp.html',1,'']]], - ['simpson_2ehpp_1579',['simpson.hpp',['../simpson_8hpp.html',1,'']]], - ['sin_2ehpp_1580',['sin.hpp',['../sin_8hpp.html',1,'']]], - ['sinc_2ehpp_1581',['sinc.hpp',['../sinc_8hpp.html',1,'']]], - ['sinh_2ehpp_1582',['sinh.hpp',['../sinh_8hpp.html',1,'']]], - ['size_2ehpp_1583',['size.hpp',['../size_8hpp.html',1,'']]], - ['slice_2ehpp_1584',['Slice.hpp',['../_slice_8hpp.html',1,'']]], - ['softmax_2ehpp_1585',['softmax.hpp',['../softmax_8hpp.html',1,'']]], - ['solve_2ehpp_1586',['solve.hpp',['../solve_8hpp.html',1,'']]], - ['sort_2ehpp_1587',['sort.hpp',['../sort_8hpp.html',1,'']]], - ['special_2ehpp_1588',['Special.hpp',['../_special_8hpp.html',1,'']]], - ['spherical_5fbessel_5fjn_2ehpp_1589',['spherical_bessel_jn.hpp',['../spherical__bessel__jn_8hpp.html',1,'']]], - ['spherical_5fbessel_5fyn_2ehpp_1590',['spherical_bessel_yn.hpp',['../spherical__bessel__yn_8hpp.html',1,'']]], - ['spherical_5fhankel_5f1_2ehpp_1591',['spherical_hankel_1.hpp',['../spherical__hankel__1_8hpp.html',1,'']]], - ['spherical_5fhankel_5f2_2ehpp_1592',['spherical_hankel_2.hpp',['../spherical__hankel__2_8hpp.html',1,'']]], - ['spherical_5fharmonic_2ehpp_1593',['spherical_harmonic.hpp',['../spherical__harmonic_8hpp.html',1,'']]], - ['sqr_2ehpp_1594',['sqr.hpp',['../sqr_8hpp.html',1,'']]], - ['sqrt_2ehpp_1595',['sqrt.hpp',['../sqrt_8hpp.html',1,'']]], - ['square_2ehpp_1596',['square.hpp',['../square_8hpp.html',1,'']]], - ['stack_2ehpp_1597',['stack.hpp',['../stack_8hpp.html',1,'']]], - ['standardnormal_2ehpp_1598',['standardNormal.hpp',['../standard_normal_8hpp.html',1,'']]], - ['staticasserts_2ehpp_1599',['StaticAsserts.hpp',['../_static_asserts_8hpp.html',1,'']]], - ['stdcomplexoperators_2ehpp_1600',['StdComplexOperators.hpp',['../_std_complex_operators_8hpp.html',1,'']]], - ['stdev_2ehpp_1601',['stdev.hpp',['../stdev_8hpp.html',1,'']]], - ['stlalgorithms_2ehpp_1602',['StlAlgorithms.hpp',['../_stl_algorithms_8hpp.html',1,'']]], - ['studentt_2ehpp_1603',['studentT.hpp',['../student_t_8hpp.html',1,'']]], - ['subtract_2ehpp_1604',['subtract.hpp',['../subtract_8hpp.html',1,'']]], - ['sum_2ehpp_1605',['sum.hpp',['../sum_8hpp.html',1,'']]], - ['svd_2ehpp_1606',['svd.hpp',['../svd_8hpp.html',1,'']]], - ['svdclass_2ehpp_1607',['SVDClass.hpp',['../_s_v_d_class_8hpp.html',1,'']]], - ['swap_2ehpp_1608',['swap.hpp',['../swap_8hpp.html',1,'']]], - ['swapaxes_2ehpp_1609',['swapaxes.hpp',['../swapaxes_8hpp.html',1,'']]] + ['beta_2ehpp_1607',['beta.hpp',['../_random_2beta_8hpp.html',1,'']]], + ['gamma_2ehpp_1608',['gamma.hpp',['../_random_2gamma_8hpp.html',1,'']]], + ['laplace_2ehpp_1609',['laplace.hpp',['../_random_2laplace_8hpp.html',1,'']]], + ['ra_2ehpp_1610',['RA.hpp',['../_r_a_8hpp.html',1,'']]], + ['rad2deg_2ehpp_1611',['rad2deg.hpp',['../rad2deg_8hpp.html',1,'']]], + ['radians_2ehpp_1612',['radians.hpp',['../radians_8hpp.html',1,'']]], + ['radianseperation_2ehpp_1613',['radianSeperation.hpp',['../radian_seperation_8hpp.html',1,'']]], + ['rand_2ehpp_1614',['rand.hpp',['../rand_8hpp.html',1,'']]], + ['randfloat_2ehpp_1615',['randFloat.hpp',['../rand_float_8hpp.html',1,'']]], + ['randint_2ehpp_1616',['randInt.hpp',['../rand_int_8hpp.html',1,'']]], + ['randn_2ehpp_1617',['randN.hpp',['../rand_n_8hpp.html',1,'']]], + ['random_2ehpp_1618',['Random.hpp',['../_random_8hpp.html',1,'']]], + ['rankfilter_2ehpp_1619',['rankFilter.hpp',['../rank_filter_8hpp.html',1,'']]], + ['rankfilter1d_2ehpp_1620',['rankFilter1d.hpp',['../rank_filter1d_8hpp.html',1,'']]], + ['ravel_2ehpp_1621',['ravel.hpp',['../ravel_8hpp.html',1,'']]], + ['readme_2emd_1622',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]], + ['real_2ehpp_1623',['real.hpp',['../real_8hpp.html',1,'']]], + ['reciprocal_2ehpp_1624',['reciprocal.hpp',['../reciprocal_8hpp.html',1,'']]], + ['reflect1d_2ehpp_1625',['reflect1d.hpp',['../reflect1d_8hpp.html',1,'']]], + ['reflect2d_2ehpp_1626',['reflect2d.hpp',['../reflect2d_8hpp.html',1,'']]], + ['releasenotes_2emd_1627',['ReleaseNotes.md',['../_release_notes_8md.html',1,'']]], + ['remainder_2ehpp_1628',['remainder.hpp',['../remainder_8hpp.html',1,'']]], + ['repeat_2ehpp_1629',['repeat.hpp',['../repeat_8hpp.html',1,'']]], + ['replace_2ehpp_1630',['replace.hpp',['../replace_8hpp.html',1,'']]], + ['reshape_2ehpp_1631',['reshape.hpp',['../reshape_8hpp.html',1,'']]], + ['resizefast_2ehpp_1632',['resizeFast.hpp',['../resize_fast_8hpp.html',1,'']]], + ['resizeslow_2ehpp_1633',['resizeSlow.hpp',['../resize_slow_8hpp.html',1,'']]], + ['riemann_5fzeta_2ehpp_1634',['riemann_zeta.hpp',['../riemann__zeta_8hpp.html',1,'']]], + ['right_5fshift_2ehpp_1635',['right_shift.hpp',['../right__shift_8hpp.html',1,'']]], + ['rint_2ehpp_1636',['rint.hpp',['../rint_8hpp.html',1,'']]], + ['rms_2ehpp_1637',['rms.hpp',['../rms_8hpp.html',1,'']]], + ['rodriguesrotation_2ehpp_1638',['rodriguesRotation.hpp',['../rodrigues_rotation_8hpp.html',1,'']]], + ['roll_2ehpp_1639',['roll.hpp',['../roll_8hpp.html',1,'']]], + ['romberg_2ehpp_1640',['romberg.hpp',['../romberg_8hpp.html',1,'']]], + ['roots_2ehpp_1641',['Roots.hpp',['../_roots_8hpp.html',1,'']]], + ['rot90_2ehpp_1642',['rot90.hpp',['../rot90_8hpp.html',1,'']]], + ['rotations_2ehpp_1643',['Rotations.hpp',['../_rotations_8hpp.html',1,'']]], + ['round_2ehpp_1644',['round.hpp',['../round_8hpp.html',1,'']]], + ['row_5fstack_2ehpp_1645',['row_stack.hpp',['../row__stack_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_11.html b/docs/doxygen/html/search/files_11.html index 7e7888f9a..02edc0913 100644 --- a/docs/doxygen/html/search/files_11.html +++ b/docs/doxygen/html/search/files_11.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_11.js b/docs/doxygen/html/search/files_11.js index e99d4ecb4..3d7d17ae2 100644 --- a/docs/doxygen/html/search/files_11.js +++ b/docs/doxygen/html/search/files_11.js @@ -1,22 +1,42 @@ var searchData= [ - ['tan_2ehpp_1610',['tan.hpp',['../tan_8hpp.html',1,'']]], - ['tanh_2ehpp_1611',['tanh.hpp',['../tanh_8hpp.html',1,'']]], - ['tile_2ehpp_1612',['tile.hpp',['../tile_8hpp.html',1,'']]], - ['timer_2ehpp_1613',['Timer.hpp',['../_timer_8hpp.html',1,'']]], - ['tofile_2ehpp_1614',['tofile.hpp',['../tofile_8hpp.html',1,'']]], - ['tostlvector_2ehpp_1615',['toStlVector.hpp',['../to_stl_vector_8hpp.html',1,'']]], - ['trace_2ehpp_1616',['trace.hpp',['../trace_8hpp.html',1,'']]], - ['transpose_2ehpp_1617',['transpose.hpp',['../transpose_8hpp.html',1,'']]], - ['trapazoidal_2ehpp_1618',['trapazoidal.hpp',['../trapazoidal_8hpp.html',1,'']]], - ['trapz_2ehpp_1619',['trapz.hpp',['../trapz_8hpp.html',1,'']]], - ['tri_2ehpp_1620',['tri.hpp',['../tri_8hpp.html',1,'']]], - ['triangle_2ehpp_1621',['triangle.hpp',['../triangle_8hpp.html',1,'']]], - ['trigamma_2ehpp_1622',['trigamma.hpp',['../trigamma_8hpp.html',1,'']]], - ['trim_5fzeros_2ehpp_1623',['trim_zeros.hpp',['../trim__zeros_8hpp.html',1,'']]], - ['trimboundary1d_2ehpp_1624',['trimBoundary1d.hpp',['../trim_boundary1d_8hpp.html',1,'']]], - ['trimboundary2d_2ehpp_1625',['trimBoundary2d.hpp',['../trim_boundary2d_8hpp.html',1,'']]], - ['trunc_2ehpp_1626',['trunc.hpp',['../trunc_8hpp.html',1,'']]], - ['types_2ehpp_1627',['Types.hpp',['../_types_8hpp.html',1,'']]], - ['typetraits_2ehpp_1628',['TypeTraits.hpp',['../_type_traits_8hpp.html',1,'']]] + ['beta_2ehpp_1646',['beta.hpp',['../_special_2beta_8hpp.html',1,'']]], + ['gamma_2ehpp_1647',['gamma.hpp',['../_special_2gamma_8hpp.html',1,'']]], + ['secant_2ehpp_1648',['Secant.hpp',['../_secant_8hpp.html',1,'']]], + ['select_2ehpp_1649',['select.hpp',['../select_8hpp.html',1,'']]], + ['setdiff1d_2ehpp_1650',['setdiff1d.hpp',['../setdiff1d_8hpp.html',1,'']]], + ['shuffle_2ehpp_1651',['shuffle.hpp',['../shuffle_8hpp.html',1,'']]], + ['sign_2ehpp_1652',['sign.hpp',['../sign_8hpp.html',1,'']]], + ['signbit_2ehpp_1653',['signbit.hpp',['../signbit_8hpp.html',1,'']]], + ['simpson_2ehpp_1654',['simpson.hpp',['../simpson_8hpp.html',1,'']]], + ['sin_2ehpp_1655',['sin.hpp',['../sin_8hpp.html',1,'']]], + ['sinc_2ehpp_1656',['sinc.hpp',['../sinc_8hpp.html',1,'']]], + ['sinh_2ehpp_1657',['sinh.hpp',['../sinh_8hpp.html',1,'']]], + ['size_2ehpp_1658',['size.hpp',['../size_8hpp.html',1,'']]], + ['slice_2ehpp_1659',['Slice.hpp',['../_slice_8hpp.html',1,'']]], + ['softmax_2ehpp_1660',['softmax.hpp',['../softmax_8hpp.html',1,'']]], + ['solve_2ehpp_1661',['solve.hpp',['../solve_8hpp.html',1,'']]], + ['sort_2ehpp_1662',['sort.hpp',['../sort_8hpp.html',1,'']]], + ['special_2ehpp_1663',['Special.hpp',['../_special_8hpp.html',1,'']]], + ['spherical_5fbessel_5fjn_2ehpp_1664',['spherical_bessel_jn.hpp',['../spherical__bessel__jn_8hpp.html',1,'']]], + ['spherical_5fbessel_5fyn_2ehpp_1665',['spherical_bessel_yn.hpp',['../spherical__bessel__yn_8hpp.html',1,'']]], + ['spherical_5fhankel_5f1_2ehpp_1666',['spherical_hankel_1.hpp',['../spherical__hankel__1_8hpp.html',1,'']]], + ['spherical_5fhankel_5f2_2ehpp_1667',['spherical_hankel_2.hpp',['../spherical__hankel__2_8hpp.html',1,'']]], + ['spherical_5fharmonic_2ehpp_1668',['spherical_harmonic.hpp',['../spherical__harmonic_8hpp.html',1,'']]], + ['sqr_2ehpp_1669',['sqr.hpp',['../sqr_8hpp.html',1,'']]], + ['sqrt_2ehpp_1670',['sqrt.hpp',['../sqrt_8hpp.html',1,'']]], + ['square_2ehpp_1671',['square.hpp',['../square_8hpp.html',1,'']]], + ['stack_2ehpp_1672',['stack.hpp',['../stack_8hpp.html',1,'']]], + ['standardnormal_2ehpp_1673',['standardNormal.hpp',['../standard_normal_8hpp.html',1,'']]], + ['staticasserts_2ehpp_1674',['StaticAsserts.hpp',['../_static_asserts_8hpp.html',1,'']]], + ['stdcomplexoperators_2ehpp_1675',['StdComplexOperators.hpp',['../_std_complex_operators_8hpp.html',1,'']]], + ['stdev_2ehpp_1676',['stdev.hpp',['../stdev_8hpp.html',1,'']]], + ['stlalgorithms_2ehpp_1677',['StlAlgorithms.hpp',['../_stl_algorithms_8hpp.html',1,'']]], + ['studentt_2ehpp_1678',['studentT.hpp',['../student_t_8hpp.html',1,'']]], + ['subtract_2ehpp_1679',['subtract.hpp',['../subtract_8hpp.html',1,'']]], + ['sum_2ehpp_1680',['sum.hpp',['../sum_8hpp.html',1,'']]], + ['svd_2ehpp_1681',['svd.hpp',['../svd_8hpp.html',1,'']]], + ['svdclass_2ehpp_1682',['SVDClass.hpp',['../_s_v_d_class_8hpp.html',1,'']]], + ['swap_2ehpp_1683',['swap.hpp',['../swap_8hpp.html',1,'']]], + ['swapaxes_2ehpp_1684',['swapaxes.hpp',['../swapaxes_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_12.html b/docs/doxygen/html/search/files_12.html index 82cd0f33b..bd79f3c5f 100644 --- a/docs/doxygen/html/search/files_12.html +++ b/docs/doxygen/html/search/files_12.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_12.js b/docs/doxygen/html/search/files_12.js index 23557b69f..67bac1ed3 100644 --- a/docs/doxygen/html/search/files_12.js +++ b/docs/doxygen/html/search/files_12.js @@ -1,15 +1,22 @@ var searchData= [ - ['cube_2ehpp_1629',['cube.hpp',['../_utils_2cube_8hpp.html',1,'']]], - ['interp_2ehpp_1630',['interp.hpp',['../_utils_2interp_8hpp.html',1,'']]], - ['power_2ehpp_1631',['power.hpp',['../_utils_2power_8hpp.html',1,'']]], - ['powerf_2ehpp_1632',['powerf.hpp',['../_utils_2powerf_8hpp.html',1,'']]], - ['uniform_2ehpp_1633',['uniform.hpp',['../uniform_8hpp.html',1,'']]], - ['uniformfilter_2ehpp_1634',['uniformFilter.hpp',['../uniform_filter_8hpp.html',1,'']]], - ['uniformfilter1d_2ehpp_1635',['uniformFilter1d.hpp',['../uniform_filter1d_8hpp.html',1,'']]], - ['uniformonsphere_2ehpp_1636',['uniformOnSphere.hpp',['../uniform_on_sphere_8hpp.html',1,'']]], - ['union1d_2ehpp_1637',['union1d.hpp',['../union1d_8hpp.html',1,'']]], - ['unique_2ehpp_1638',['unique.hpp',['../unique_8hpp.html',1,'']]], - ['unwrap_2ehpp_1639',['unwrap.hpp',['../unwrap_8hpp.html',1,'']]], - ['utils_2ehpp_1640',['Utils.hpp',['../_utils_8hpp.html',1,'']]] + ['tan_2ehpp_1685',['tan.hpp',['../tan_8hpp.html',1,'']]], + ['tanh_2ehpp_1686',['tanh.hpp',['../tanh_8hpp.html',1,'']]], + ['tile_2ehpp_1687',['tile.hpp',['../tile_8hpp.html',1,'']]], + ['timer_2ehpp_1688',['Timer.hpp',['../_timer_8hpp.html',1,'']]], + ['tofile_2ehpp_1689',['tofile.hpp',['../tofile_8hpp.html',1,'']]], + ['tostlvector_2ehpp_1690',['toStlVector.hpp',['../to_stl_vector_8hpp.html',1,'']]], + ['trace_2ehpp_1691',['trace.hpp',['../trace_8hpp.html',1,'']]], + ['transpose_2ehpp_1692',['transpose.hpp',['../transpose_8hpp.html',1,'']]], + ['trapazoidal_2ehpp_1693',['trapazoidal.hpp',['../trapazoidal_8hpp.html',1,'']]], + ['trapz_2ehpp_1694',['trapz.hpp',['../trapz_8hpp.html',1,'']]], + ['tri_2ehpp_1695',['tri.hpp',['../tri_8hpp.html',1,'']]], + ['triangle_2ehpp_1696',['triangle.hpp',['../triangle_8hpp.html',1,'']]], + ['trigamma_2ehpp_1697',['trigamma.hpp',['../trigamma_8hpp.html',1,'']]], + ['trim_5fzeros_2ehpp_1698',['trim_zeros.hpp',['../trim__zeros_8hpp.html',1,'']]], + ['trimboundary1d_2ehpp_1699',['trimBoundary1d.hpp',['../trim_boundary1d_8hpp.html',1,'']]], + ['trimboundary2d_2ehpp_1700',['trimBoundary2d.hpp',['../trim_boundary2d_8hpp.html',1,'']]], + ['trunc_2ehpp_1701',['trunc.hpp',['../trunc_8hpp.html',1,'']]], + ['types_2ehpp_1702',['Types.hpp',['../_types_8hpp.html',1,'']]], + ['typetraits_2ehpp_1703',['TypeTraits.hpp',['../_type_traits_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_13.html b/docs/doxygen/html/search/files_13.html index 7e9e11917..7cbb5b01e 100644 --- a/docs/doxygen/html/search/files_13.html +++ b/docs/doxygen/html/search/files_13.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_13.js b/docs/doxygen/html/search/files_13.js index 027bf06bf..beb369532 100644 --- a/docs/doxygen/html/search/files_13.js +++ b/docs/doxygen/html/search/files_13.js @@ -1,10 +1,15 @@ var searchData= [ - ['value2str_2ehpp_1641',['value2str.hpp',['../value2str_8hpp.html',1,'']]], - ['var_2ehpp_1642',['var.hpp',['../var_8hpp.html',1,'']]], - ['vec2_2ehpp_1643',['Vec2.hpp',['../_vec2_8hpp.html',1,'']]], - ['vec3_2ehpp_1644',['Vec3.hpp',['../_vec3_8hpp.html',1,'']]], - ['vector_2ehpp_1645',['Vector.hpp',['../_vector_8hpp.html',1,'']]], - ['version_2ehpp_1646',['Version.hpp',['../_version_8hpp.html',1,'']]], - ['vstack_2ehpp_1647',['vstack.hpp',['../vstack_8hpp.html',1,'']]] + ['cube_2ehpp_1704',['cube.hpp',['../_utils_2cube_8hpp.html',1,'']]], + ['interp_2ehpp_1705',['interp.hpp',['../_utils_2interp_8hpp.html',1,'']]], + ['power_2ehpp_1706',['power.hpp',['../_utils_2power_8hpp.html',1,'']]], + ['powerf_2ehpp_1707',['powerf.hpp',['../_utils_2powerf_8hpp.html',1,'']]], + ['uniform_2ehpp_1708',['uniform.hpp',['../uniform_8hpp.html',1,'']]], + ['uniformfilter_2ehpp_1709',['uniformFilter.hpp',['../uniform_filter_8hpp.html',1,'']]], + ['uniformfilter1d_2ehpp_1710',['uniformFilter1d.hpp',['../uniform_filter1d_8hpp.html',1,'']]], + ['uniformonsphere_2ehpp_1711',['uniformOnSphere.hpp',['../uniform_on_sphere_8hpp.html',1,'']]], + ['union1d_2ehpp_1712',['union1d.hpp',['../union1d_8hpp.html',1,'']]], + ['unique_2ehpp_1713',['unique.hpp',['../unique_8hpp.html',1,'']]], + ['unwrap_2ehpp_1714',['unwrap.hpp',['../unwrap_8hpp.html',1,'']]], + ['utils_2ehpp_1715',['Utils.hpp',['../_utils_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_14.html b/docs/doxygen/html/search/files_14.html index 1a700d1ad..c8da77bcc 100644 --- a/docs/doxygen/html/search/files_14.html +++ b/docs/doxygen/html/search/files_14.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_14.js b/docs/doxygen/html/search/files_14.js index 6824cc68c..57318d5f3 100644 --- a/docs/doxygen/html/search/files_14.js +++ b/docs/doxygen/html/search/files_14.js @@ -1,9 +1,10 @@ var searchData= [ - ['wahbasproblem_2ehpp_1648',['wahbasProblem.hpp',['../wahbas_problem_8hpp.html',1,'']]], - ['weibull_2ehpp_1649',['weibull.hpp',['../weibull_8hpp.html',1,'']]], - ['where_2ehpp_1650',['where.hpp',['../where_8hpp.html',1,'']]], - ['windowexceedances_2ehpp_1651',['windowExceedances.hpp',['../window_exceedances_8hpp.html',1,'']]], - ['wrap1d_2ehpp_1652',['wrap1d.hpp',['../wrap1d_8hpp.html',1,'']]], - ['wrap2d_2ehpp_1653',['wrap2d.hpp',['../wrap2d_8hpp.html',1,'']]] + ['value2str_2ehpp_1716',['value2str.hpp',['../value2str_8hpp.html',1,'']]], + ['var_2ehpp_1717',['var.hpp',['../var_8hpp.html',1,'']]], + ['vec2_2ehpp_1718',['Vec2.hpp',['../_vec2_8hpp.html',1,'']]], + ['vec3_2ehpp_1719',['Vec3.hpp',['../_vec3_8hpp.html',1,'']]], + ['vector_2ehpp_1720',['Vector.hpp',['../_vector_8hpp.html',1,'']]], + ['version_2ehpp_1721',['Version.hpp',['../_version_8hpp.html',1,'']]], + ['vstack_2ehpp_1722',['vstack.hpp',['../vstack_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_15.html b/docs/doxygen/html/search/files_15.html index 09d19ca3a..2672868ce 100644 --- a/docs/doxygen/html/search/files_15.html +++ b/docs/doxygen/html/search/files_15.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_15.js b/docs/doxygen/html/search/files_15.js index 7fe8d0afb..7d46c6179 100644 --- a/docs/doxygen/html/search/files_15.js +++ b/docs/doxygen/html/search/files_15.js @@ -1,5 +1,9 @@ var searchData= [ - ['zeros_2ehpp_1654',['zeros.hpp',['../zeros_8hpp.html',1,'']]], - ['zeros_5flike_2ehpp_1655',['zeros_like.hpp',['../zeros__like_8hpp.html',1,'']]] + ['wahbasproblem_2ehpp_1723',['wahbasProblem.hpp',['../wahbas_problem_8hpp.html',1,'']]], + ['weibull_2ehpp_1724',['weibull.hpp',['../weibull_8hpp.html',1,'']]], + ['where_2ehpp_1725',['where.hpp',['../where_8hpp.html',1,'']]], + ['windowexceedances_2ehpp_1726',['windowExceedances.hpp',['../window_exceedances_8hpp.html',1,'']]], + ['wrap1d_2ehpp_1727',['wrap1d.hpp',['../wrap1d_8hpp.html',1,'']]], + ['wrap2d_2ehpp_1728',['wrap2d.hpp',['../wrap2d_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_16.html b/docs/doxygen/html/search/files_16.html new file mode 100644 index 000000000..b48235e24 --- /dev/null +++ b/docs/doxygen/html/search/files_16.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
+
Loading...
+
+ +
Searching...
+
No Matches
+ +
+ + diff --git a/docs/doxygen/html/search/files_16.js b/docs/doxygen/html/search/files_16.js new file mode 100644 index 000000000..bae1f944f --- /dev/null +++ b/docs/doxygen/html/search/files_16.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['zeros_2ehpp_1729',['zeros.hpp',['../zeros_8hpp.html',1,'']]], + ['zeros_5flike_2ehpp_1730',['zeros_like.hpp',['../zeros__like_8hpp.html',1,'']]] +]; diff --git a/docs/doxygen/html/search/files_2.html b/docs/doxygen/html/search/files_2.html index 185170ad0..497cdf5c7 100644 --- a/docs/doxygen/html/search/files_2.html +++ b/docs/doxygen/html/search/files_2.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_2.js b/docs/doxygen/html/search/files_2.js index 62ac89df4..121dbb938 100644 --- a/docs/doxygen/html/search/files_2.js +++ b/docs/doxygen/html/search/files_2.js @@ -1,50 +1,53 @@ var searchData= [ - ['cauchy_2ehpp_1279',['cauchy.hpp',['../cauchy_8hpp.html',1,'']]], - ['cbrt_2ehpp_1280',['cbrt.hpp',['../cbrt_8hpp.html',1,'']]], - ['ceil_2ehpp_1281',['ceil.hpp',['../ceil_8hpp.html',1,'']]], - ['centerofmass_2ehpp_1282',['centerOfMass.hpp',['../center_of_mass_8hpp.html',1,'']]], - ['centroid_2ehpp_1283',['Centroid.hpp',['../_centroid_8hpp.html',1,'']]], - ['centroidclusters_2ehpp_1284',['centroidClusters.hpp',['../centroid_clusters_8hpp.html',1,'']]], - ['chebyshev_5ft_2ehpp_1285',['chebyshev_t.hpp',['../chebyshev__t_8hpp.html',1,'']]], - ['chebyshev_5fu_2ehpp_1286',['chebyshev_u.hpp',['../chebyshev__u_8hpp.html',1,'']]], - ['chisquare_2ehpp_1287',['chiSquare.hpp',['../chi_square_8hpp.html',1,'']]], - ['choice_2ehpp_1288',['choice.hpp',['../choice_8hpp.html',1,'']]], - ['cholesky_2ehpp_1289',['cholesky.hpp',['../cholesky_8hpp.html',1,'']]], - ['clip_2ehpp_1290',['clip.hpp',['../clip_8hpp.html',1,'']]], - ['cluster_2ehpp_1291',['Cluster.hpp',['../_cluster_8hpp.html',1,'']]], - ['clustermaker_2ehpp_1292',['ClusterMaker.hpp',['../_cluster_maker_8hpp.html',1,'']]], - ['clusterpixels_2ehpp_1293',['clusterPixels.hpp',['../cluster_pixels_8hpp.html',1,'']]], - ['cnr_2ehpp_1294',['cnr.hpp',['../cnr_8hpp.html',1,'']]], - ['column_5fstack_2ehpp_1295',['column_stack.hpp',['../column__stack_8hpp.html',1,'']]], - ['comp_5fellint_5f1_2ehpp_1296',['comp_ellint_1.hpp',['../comp__ellint__1_8hpp.html',1,'']]], - ['comp_5fellint_5f2_2ehpp_1297',['comp_ellint_2.hpp',['../comp__ellint__2_8hpp.html',1,'']]], - ['comp_5fellint_5f3_2ehpp_1298',['comp_ellint_3.hpp',['../comp__ellint__3_8hpp.html',1,'']]], - ['compilerflags_2emd_1299',['CompilerFlags.md',['../_compiler_flags_8md.html',1,'']]], - ['complementarymedianfilter_2ehpp_1300',['complementaryMedianFilter.hpp',['../complementary_median_filter_8hpp.html',1,'']]], - ['complementarymedianfilter1d_2ehpp_1301',['complementaryMedianFilter1d.hpp',['../complementary_median_filter1d_8hpp.html',1,'']]], - ['complex_2ehpp_1302',['complex.hpp',['../complex_8hpp.html',1,'']]], - ['concatenate_2ehpp_1303',['concatenate.hpp',['../concatenate_8hpp.html',1,'']]], - ['conj_2ehpp_1304',['conj.hpp',['../conj_8hpp.html',1,'']]], - ['constant1d_2ehpp_1305',['constant1d.hpp',['../constant1d_8hpp.html',1,'']]], - ['constant2d_2ehpp_1306',['constant2d.hpp',['../constant2d_8hpp.html',1,'']]], - ['constants_2ehpp_1307',['Constants.hpp',['../_constants_8hpp.html',1,'']]], - ['contains_2ehpp_1308',['contains.hpp',['../contains_8hpp.html',1,'']]], - ['convolve_2ehpp_1309',['convolve.hpp',['../convolve_8hpp.html',1,'']]], - ['convolve1d_2ehpp_1310',['convolve1d.hpp',['../convolve1d_8hpp.html',1,'']]], - ['coordinate_2ehpp_1311',['Coordinate.hpp',['../_coordinate_8hpp.html',1,'']]], - ['coordinates_2ehpp_1312',['Coordinates.hpp',['../_coordinates_8hpp.html',1,'']]], - ['copy_2ehpp_1313',['copy.hpp',['../copy_8hpp.html',1,'']]], - ['copysign_2ehpp_1314',['copySign.hpp',['../copy_sign_8hpp.html',1,'']]], - ['copyto_2ehpp_1315',['copyto.hpp',['../copyto_8hpp.html',1,'']]], - ['core_2ehpp_1316',['Core.hpp',['../_core_8hpp.html',1,'']]], - ['cos_2ehpp_1317',['cos.hpp',['../cos_8hpp.html',1,'']]], - ['cosh_2ehpp_1318',['cosh.hpp',['../cosh_8hpp.html',1,'']]], - ['count_5fnonzero_2ehpp_1319',['count_nonzero.hpp',['../count__nonzero_8hpp.html',1,'']]], - ['cross_2ehpp_1320',['cross.hpp',['../cross_8hpp.html',1,'']]], - ['cumprod_2ehpp_1321',['cumprod.hpp',['../cumprod_8hpp.html',1,'']]], - ['cumsum_2ehpp_1322',['cumsum.hpp',['../cumsum_8hpp.html',1,'']]], - ['cyclic_5fhankel_5f1_2ehpp_1323',['cyclic_hankel_1.hpp',['../cyclic__hankel__1_8hpp.html',1,'']]], - ['cyclic_5fhankel_5f2_2ehpp_1324',['cyclic_hankel_2.hpp',['../cyclic__hankel__2_8hpp.html',1,'']]], - ['shape_2ehpp_1325',['Shape.hpp',['../_core_2_shape_8hpp.html',1,'']]] + ['cauchy_2ehpp_1337',['cauchy.hpp',['../cauchy_8hpp.html',1,'']]], + ['cbrt_2ehpp_1338',['cbrt.hpp',['../cbrt_8hpp.html',1,'']]], + ['ceil_2ehpp_1339',['ceil.hpp',['../ceil_8hpp.html',1,'']]], + ['centerofmass_2ehpp_1340',['centerOfMass.hpp',['../center_of_mass_8hpp.html',1,'']]], + ['centroid_2ehpp_1341',['Centroid.hpp',['../_centroid_8hpp.html',1,'']]], + ['centroidclusters_2ehpp_1342',['centroidClusters.hpp',['../centroid_clusters_8hpp.html',1,'']]], + ['chebyshev_5ft_2ehpp_1343',['chebyshev_t.hpp',['../chebyshev__t_8hpp.html',1,'']]], + ['chebyshev_5fu_2ehpp_1344',['chebyshev_u.hpp',['../chebyshev__u_8hpp.html',1,'']]], + ['chisquare_2ehpp_1345',['chiSquare.hpp',['../chi_square_8hpp.html',1,'']]], + ['choice_2ehpp_1346',['choice.hpp',['../choice_8hpp.html',1,'']]], + ['cholesky_2ehpp_1347',['cholesky.hpp',['../cholesky_8hpp.html',1,'']]], + ['clip_2ehpp_1348',['clip.hpp',['../clip_8hpp.html',1,'']]], + ['cluster_2ehpp_1349',['Cluster.hpp',['../_cluster_8hpp.html',1,'']]], + ['clustermaker_2ehpp_1350',['ClusterMaker.hpp',['../_cluster_maker_8hpp.html',1,'']]], + ['clusterpixels_2ehpp_1351',['clusterPixels.hpp',['../cluster_pixels_8hpp.html',1,'']]], + ['cnr_2ehpp_1352',['cnr.hpp',['../cnr_8hpp.html',1,'']]], + ['column_5fstack_2ehpp_1353',['column_stack.hpp',['../column__stack_8hpp.html',1,'']]], + ['comp_5fellint_5f1_2ehpp_1354',['comp_ellint_1.hpp',['../comp__ellint__1_8hpp.html',1,'']]], + ['comp_5fellint_5f2_2ehpp_1355',['comp_ellint_2.hpp',['../comp__ellint__2_8hpp.html',1,'']]], + ['comp_5fellint_5f3_2ehpp_1356',['comp_ellint_3.hpp',['../comp__ellint__3_8hpp.html',1,'']]], + ['compilerflags_2emd_1357',['CompilerFlags.md',['../_compiler_flags_8md.html',1,'']]], + ['complementarymedianfilter_2ehpp_1358',['complementaryMedianFilter.hpp',['../complementary_median_filter_8hpp.html',1,'']]], + ['complementarymedianfilter1d_2ehpp_1359',['complementaryMedianFilter1d.hpp',['../complementary_median_filter1d_8hpp.html',1,'']]], + ['complex_2ehpp_1360',['complex.hpp',['../complex_8hpp.html',1,'']]], + ['concatenate_2ehpp_1361',['concatenate.hpp',['../concatenate_8hpp.html',1,'']]], + ['conj_2ehpp_1362',['conj.hpp',['../conj_8hpp.html',1,'']]], + ['constant1d_2ehpp_1363',['constant1d.hpp',['../constant1d_8hpp.html',1,'']]], + ['constant2d_2ehpp_1364',['constant2d.hpp',['../constant2d_8hpp.html',1,'']]], + ['constants_2ehpp_1365',['Constants.hpp',['../_constants_8hpp.html',1,'']]], + ['contains_2ehpp_1366',['contains.hpp',['../contains_8hpp.html',1,'']]], + ['convolve_2ehpp_1367',['convolve.hpp',['../convolve_8hpp.html',1,'']]], + ['convolve1d_2ehpp_1368',['convolve1d.hpp',['../convolve1d_8hpp.html',1,'']]], + ['coordinate_2ehpp_1369',['Coordinate.hpp',['../_coordinate_8hpp.html',1,'']]], + ['coordinates_2ehpp_1370',['Coordinates.hpp',['../_coordinates_8hpp.html',1,'']]], + ['copy_2ehpp_1371',['copy.hpp',['../copy_8hpp.html',1,'']]], + ['copysign_2ehpp_1372',['copySign.hpp',['../copy_sign_8hpp.html',1,'']]], + ['copyto_2ehpp_1373',['copyto.hpp',['../copyto_8hpp.html',1,'']]], + ['core_2ehpp_1374',['Core.hpp',['../_core_8hpp.html',1,'']]], + ['corrcoef_2ehpp_1375',['corrcoef.hpp',['../corrcoef_8hpp.html',1,'']]], + ['cos_2ehpp_1376',['cos.hpp',['../cos_8hpp.html',1,'']]], + ['cosh_2ehpp_1377',['cosh.hpp',['../cosh_8hpp.html',1,'']]], + ['count_5fnonzero_2ehpp_1378',['count_nonzero.hpp',['../count__nonzero_8hpp.html',1,'']]], + ['cov_2ehpp_1379',['cov.hpp',['../cov_8hpp.html',1,'']]], + ['cov_5finv_2ehpp_1380',['cov_inv.hpp',['../cov__inv_8hpp.html',1,'']]], + ['cross_2ehpp_1381',['cross.hpp',['../cross_8hpp.html',1,'']]], + ['cumprod_2ehpp_1382',['cumprod.hpp',['../cumprod_8hpp.html',1,'']]], + ['cumsum_2ehpp_1383',['cumsum.hpp',['../cumsum_8hpp.html',1,'']]], + ['cyclic_5fhankel_5f1_2ehpp_1384',['cyclic_hankel_1.hpp',['../cyclic__hankel__1_8hpp.html',1,'']]], + ['cyclic_5fhankel_5f2_2ehpp_1385',['cyclic_hankel_2.hpp',['../cyclic__hankel__2_8hpp.html',1,'']]], + ['shape_2ehpp_1386',['Shape.hpp',['../_core_2_shape_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_3.html b/docs/doxygen/html/search/files_3.html index 982b95229..1ba106b2d 100644 --- a/docs/doxygen/html/search/files_3.html +++ b/docs/doxygen/html/search/files_3.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_3.js b/docs/doxygen/html/search/files_3.js index 0e1340ee9..a619217cb 100644 --- a/docs/doxygen/html/search/files_3.js +++ b/docs/doxygen/html/search/files_3.js @@ -1,22 +1,22 @@ var searchData= [ - ['datacube_2ehpp_1326',['DataCube.hpp',['../_data_cube_8hpp.html',1,'']]], - ['dcm_2ehpp_1327',['DCM.hpp',['../_d_c_m_8hpp.html',1,'']]], - ['dec_2ehpp_1328',['Dec.hpp',['../_dec_8hpp.html',1,'']]], - ['deg2rad_2ehpp_1329',['deg2rad.hpp',['../deg2rad_8hpp.html',1,'']]], - ['degrees_2ehpp_1330',['degrees.hpp',['../degrees_8hpp.html',1,'']]], - ['degreeseperation_2ehpp_1331',['degreeSeperation.hpp',['../degree_seperation_8hpp.html',1,'']]], - ['dekker_2ehpp_1332',['Dekker.hpp',['../_dekker_8hpp.html',1,'']]], - ['deleteindices_2ehpp_1333',['deleteIndices.hpp',['../delete_indices_8hpp.html',1,'']]], - ['det_2ehpp_1334',['det.hpp',['../det_8hpp.html',1,'']]], - ['diag_2ehpp_1335',['diag.hpp',['../diag_8hpp.html',1,'']]], - ['diagflat_2ehpp_1336',['diagflat.hpp',['../diagflat_8hpp.html',1,'']]], - ['diagonal_2ehpp_1337',['diagonal.hpp',['../diagonal_8hpp.html',1,'']]], - ['diff_2ehpp_1338',['diff.hpp',['../diff_8hpp.html',1,'']]], - ['digamma_2ehpp_1339',['digamma.hpp',['../digamma_8hpp.html',1,'']]], - ['discrete_2ehpp_1340',['discrete.hpp',['../discrete_8hpp.html',1,'']]], - ['divide_2ehpp_1341',['divide.hpp',['../divide_8hpp.html',1,'']]], - ['dot_2ehpp_1342',['dot.hpp',['../dot_8hpp.html',1,'']]], - ['dtypeinfo_2ehpp_1343',['DtypeInfo.hpp',['../_dtype_info_8hpp.html',1,'']]], - ['dump_2ehpp_1344',['dump.hpp',['../dump_8hpp.html',1,'']]] + ['datacube_2ehpp_1387',['DataCube.hpp',['../_data_cube_8hpp.html',1,'']]], + ['dcm_2ehpp_1388',['DCM.hpp',['../_d_c_m_8hpp.html',1,'']]], + ['dec_2ehpp_1389',['Dec.hpp',['../_dec_8hpp.html',1,'']]], + ['deg2rad_2ehpp_1390',['deg2rad.hpp',['../deg2rad_8hpp.html',1,'']]], + ['degrees_2ehpp_1391',['degrees.hpp',['../degrees_8hpp.html',1,'']]], + ['degreeseperation_2ehpp_1392',['degreeSeperation.hpp',['../degree_seperation_8hpp.html',1,'']]], + ['dekker_2ehpp_1393',['Dekker.hpp',['../_dekker_8hpp.html',1,'']]], + ['deleteindices_2ehpp_1394',['deleteIndices.hpp',['../delete_indices_8hpp.html',1,'']]], + ['det_2ehpp_1395',['det.hpp',['../det_8hpp.html',1,'']]], + ['diag_2ehpp_1396',['diag.hpp',['../diag_8hpp.html',1,'']]], + ['diagflat_2ehpp_1397',['diagflat.hpp',['../diagflat_8hpp.html',1,'']]], + ['diagonal_2ehpp_1398',['diagonal.hpp',['../diagonal_8hpp.html',1,'']]], + ['diff_2ehpp_1399',['diff.hpp',['../diff_8hpp.html',1,'']]], + ['digamma_2ehpp_1400',['digamma.hpp',['../digamma_8hpp.html',1,'']]], + ['discrete_2ehpp_1401',['discrete.hpp',['../discrete_8hpp.html',1,'']]], + ['divide_2ehpp_1402',['divide.hpp',['../divide_8hpp.html',1,'']]], + ['dot_2ehpp_1403',['dot.hpp',['../dot_8hpp.html',1,'']]], + ['dtypeinfo_2ehpp_1404',['DtypeInfo.hpp',['../_dtype_info_8hpp.html',1,'']]], + ['dump_2ehpp_1405',['dump.hpp',['../dump_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_4.html b/docs/doxygen/html/search/files_4.html index bcac70223..753b7b109 100644 --- a/docs/doxygen/html/search/files_4.html +++ b/docs/doxygen/html/search/files_4.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_4.js b/docs/doxygen/html/search/files_4.js index d5a699e87..5ee16f72a 100644 --- a/docs/doxygen/html/search/files_4.js +++ b/docs/doxygen/html/search/files_4.js @@ -1,24 +1,25 @@ var searchData= [ - ['ellint_5f1_2ehpp_1345',['ellint_1.hpp',['../ellint__1_8hpp.html',1,'']]], - ['ellint_5f2_2ehpp_1346',['ellint_2.hpp',['../ellint__2_8hpp.html',1,'']]], - ['ellint_5f3_2ehpp_1347',['ellint_3.hpp',['../ellint__3_8hpp.html',1,'']]], - ['empty_2ehpp_1348',['empty.hpp',['../empty_8hpp.html',1,'']]], - ['empty_5flike_2ehpp_1349',['empty_like.hpp',['../empty__like_8hpp.html',1,'']]], - ['endian_2ehpp_1350',['Endian.hpp',['../_endian_8hpp.html',1,'']]], - ['endianess_2ehpp_1351',['endianess.hpp',['../endianess_8hpp.html',1,'']]], - ['equal_2ehpp_1352',['equal.hpp',['../equal_8hpp.html',1,'']]], - ['erf_2ehpp_1353',['erf.hpp',['../erf_8hpp.html',1,'']]], - ['erf_5finv_2ehpp_1354',['erf_inv.hpp',['../erf__inv_8hpp.html',1,'']]], - ['erfc_2ehpp_1355',['erfc.hpp',['../erfc_8hpp.html',1,'']]], - ['erfc_5finv_2ehpp_1356',['erfc_inv.hpp',['../erfc__inv_8hpp.html',1,'']]], - ['error_2ehpp_1357',['Error.hpp',['../_error_8hpp.html',1,'']]], - ['essentiallyequal_2ehpp_1358',['essentiallyEqual.hpp',['../essentially_equal_8hpp.html',1,'']]], - ['exp_2ehpp_1359',['exp.hpp',['../exp_8hpp.html',1,'']]], - ['exp2_2ehpp_1360',['exp2.hpp',['../exp2_8hpp.html',1,'']]], - ['expint_2ehpp_1361',['expint.hpp',['../expint_8hpp.html',1,'']]], - ['expm1_2ehpp_1362',['expm1.hpp',['../expm1_8hpp.html',1,'']]], - ['exponential_2ehpp_1363',['exponential.hpp',['../exponential_8hpp.html',1,'']]], - ['extremevalue_2ehpp_1364',['extremeValue.hpp',['../extreme_value_8hpp.html',1,'']]], - ['eye_2ehpp_1365',['eye.hpp',['../eye_8hpp.html',1,'']]] + ['ellint_5f1_2ehpp_1406',['ellint_1.hpp',['../ellint__1_8hpp.html',1,'']]], + ['ellint_5f2_2ehpp_1407',['ellint_2.hpp',['../ellint__2_8hpp.html',1,'']]], + ['ellint_5f3_2ehpp_1408',['ellint_3.hpp',['../ellint__3_8hpp.html',1,'']]], + ['empty_2ehpp_1409',['empty.hpp',['../empty_8hpp.html',1,'']]], + ['empty_5flike_2ehpp_1410',['empty_like.hpp',['../empty__like_8hpp.html',1,'']]], + ['endian_2ehpp_1411',['Endian.hpp',['../_endian_8hpp.html',1,'']]], + ['endianess_2ehpp_1412',['endianess.hpp',['../endianess_8hpp.html',1,'']]], + ['equal_2ehpp_1413',['equal.hpp',['../equal_8hpp.html',1,'']]], + ['erf_2ehpp_1414',['erf.hpp',['../erf_8hpp.html',1,'']]], + ['erf_5finv_2ehpp_1415',['erf_inv.hpp',['../erf__inv_8hpp.html',1,'']]], + ['erfc_2ehpp_1416',['erfc.hpp',['../erfc_8hpp.html',1,'']]], + ['erfc_5finv_2ehpp_1417',['erfc_inv.hpp',['../erfc__inv_8hpp.html',1,'']]], + ['error_2ehpp_1418',['Error.hpp',['../_error_8hpp.html',1,'']]], + ['essentiallyequal_2ehpp_1419',['essentiallyEqual.hpp',['../essentially_equal_8hpp.html',1,'']]], + ['exp_2ehpp_1420',['exp.hpp',['../exp_8hpp.html',1,'']]], + ['exp2_2ehpp_1421',['exp2.hpp',['../exp2_8hpp.html',1,'']]], + ['expint_2ehpp_1422',['expint.hpp',['../expint_8hpp.html',1,'']]], + ['expm1_2ehpp_1423',['expm1.hpp',['../expm1_8hpp.html',1,'']]], + ['exponential_2ehpp_1424',['exponential.hpp',['../exponential_8hpp.html',1,'']]], + ['extract_2ehpp_1425',['extract.hpp',['../extract_8hpp.html',1,'']]], + ['extremevalue_2ehpp_1426',['extremeValue.hpp',['../extreme_value_8hpp.html',1,'']]], + ['eye_2ehpp_1427',['eye.hpp',['../eye_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_5.html b/docs/doxygen/html/search/files_5.html index 9b2d69718..7b6affd7f 100644 --- a/docs/doxygen/html/search/files_5.html +++ b/docs/doxygen/html/search/files_5.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_5.js b/docs/doxygen/html/search/files_5.js index 52cf2a27c..d8eaccae9 100644 --- a/docs/doxygen/html/search/files_5.js +++ b/docs/doxygen/html/search/files_5.js @@ -1,33 +1,33 @@ var searchData= [ - ['cube_2ehpp_1366',['cube.hpp',['../_functions_2cube_8hpp.html',1,'']]], - ['f_2ehpp_1367',['f.hpp',['../f_8hpp.html',1,'']]], - ['factorial_2ehpp_1368',['factorial.hpp',['../factorial_8hpp.html',1,'']]], - ['filesystem_2ehpp_1369',['Filesystem.hpp',['../_filesystem_8hpp.html',1,'']]], - ['fillcorners_2ehpp_1370',['fillCorners.hpp',['../fill_corners_8hpp.html',1,'']]], - ['filldiagnol_2ehpp_1371',['fillDiagnol.hpp',['../fill_diagnol_8hpp.html',1,'']]], - ['filter_2ehpp_1372',['Filter.hpp',['../_filter_8hpp.html',1,'']]], - ['find_2ehpp_1373',['find.hpp',['../find_8hpp.html',1,'']]], - ['fix_2ehpp_1374',['fix.hpp',['../fix_8hpp.html',1,'']]], - ['flatnonzero_2ehpp_1375',['flatnonzero.hpp',['../flatnonzero_8hpp.html',1,'']]], - ['flatten_2ehpp_1376',['flatten.hpp',['../flatten_8hpp.html',1,'']]], - ['flip_2ehpp_1377',['flip.hpp',['../flip_8hpp.html',1,'']]], - ['fliplr_2ehpp_1378',['fliplr.hpp',['../fliplr_8hpp.html',1,'']]], - ['flipud_2ehpp_1379',['flipud.hpp',['../flipud_8hpp.html',1,'']]], - ['floor_2ehpp_1380',['floor.hpp',['../floor_8hpp.html',1,'']]], - ['floor_5fdivide_2ehpp_1381',['floor_divide.hpp',['../floor__divide_8hpp.html',1,'']]], - ['fmax_2ehpp_1382',['fmax.hpp',['../fmax_8hpp.html',1,'']]], - ['fmin_2ehpp_1383',['fmin.hpp',['../fmin_8hpp.html',1,'']]], - ['fmod_2ehpp_1384',['fmod.hpp',['../fmod_8hpp.html',1,'']]], - ['frombuffer_2ehpp_1385',['frombuffer.hpp',['../frombuffer_8hpp.html',1,'']]], - ['fromfile_2ehpp_1386',['fromfile.hpp',['../fromfile_8hpp.html',1,'']]], - ['fromiter_2ehpp_1387',['fromiter.hpp',['../fromiter_8hpp.html',1,'']]], - ['full_2ehpp_1388',['full.hpp',['../full_8hpp.html',1,'']]], - ['full_5flike_2ehpp_1389',['full_like.hpp',['../full__like_8hpp.html',1,'']]], - ['functions_2ehpp_1390',['Functions.hpp',['../_functions_8hpp.html',1,'']]], - ['interp_2ehpp_1391',['interp.hpp',['../_functions_2interp_8hpp.html',1,'']]], - ['laplace_2ehpp_1392',['laplace.hpp',['../_filter_2_filters_2_filters2d_2laplace_8hpp.html',1,'']]], - ['power_2ehpp_1393',['power.hpp',['../_functions_2power_8hpp.html',1,'']]], - ['powerf_2ehpp_1394',['powerf.hpp',['../_functions_2powerf_8hpp.html',1,'']]], - ['shape_2ehpp_1395',['shape.hpp',['../_functions_2_shape_8hpp.html',1,'']]] + ['cube_2ehpp_1428',['cube.hpp',['../_functions_2cube_8hpp.html',1,'']]], + ['f_2ehpp_1429',['f.hpp',['../f_8hpp.html',1,'']]], + ['factorial_2ehpp_1430',['factorial.hpp',['../factorial_8hpp.html',1,'']]], + ['filesystem_2ehpp_1431',['Filesystem.hpp',['../_filesystem_8hpp.html',1,'']]], + ['fillcorners_2ehpp_1432',['fillCorners.hpp',['../fill_corners_8hpp.html',1,'']]], + ['filldiagnol_2ehpp_1433',['fillDiagnol.hpp',['../fill_diagnol_8hpp.html',1,'']]], + ['filter_2ehpp_1434',['Filter.hpp',['../_filter_8hpp.html',1,'']]], + ['find_2ehpp_1435',['find.hpp',['../find_8hpp.html',1,'']]], + ['fix_2ehpp_1436',['fix.hpp',['../fix_8hpp.html',1,'']]], + ['flatnonzero_2ehpp_1437',['flatnonzero.hpp',['../flatnonzero_8hpp.html',1,'']]], + ['flatten_2ehpp_1438',['flatten.hpp',['../flatten_8hpp.html',1,'']]], + ['flip_2ehpp_1439',['flip.hpp',['../flip_8hpp.html',1,'']]], + ['fliplr_2ehpp_1440',['fliplr.hpp',['../fliplr_8hpp.html',1,'']]], + ['flipud_2ehpp_1441',['flipud.hpp',['../flipud_8hpp.html',1,'']]], + ['floor_2ehpp_1442',['floor.hpp',['../floor_8hpp.html',1,'']]], + ['floor_5fdivide_2ehpp_1443',['floor_divide.hpp',['../floor__divide_8hpp.html',1,'']]], + ['fmax_2ehpp_1444',['fmax.hpp',['../fmax_8hpp.html',1,'']]], + ['fmin_2ehpp_1445',['fmin.hpp',['../fmin_8hpp.html',1,'']]], + ['fmod_2ehpp_1446',['fmod.hpp',['../fmod_8hpp.html',1,'']]], + ['frombuffer_2ehpp_1447',['frombuffer.hpp',['../frombuffer_8hpp.html',1,'']]], + ['fromfile_2ehpp_1448',['fromfile.hpp',['../fromfile_8hpp.html',1,'']]], + ['fromiter_2ehpp_1449',['fromiter.hpp',['../fromiter_8hpp.html',1,'']]], + ['full_2ehpp_1450',['full.hpp',['../full_8hpp.html',1,'']]], + ['full_5flike_2ehpp_1451',['full_like.hpp',['../full__like_8hpp.html',1,'']]], + ['functions_2ehpp_1452',['Functions.hpp',['../_functions_8hpp.html',1,'']]], + ['interp_2ehpp_1453',['interp.hpp',['../_functions_2interp_8hpp.html',1,'']]], + ['laplace_2ehpp_1454',['laplace.hpp',['../_filter_2_filters_2_filters2d_2laplace_8hpp.html',1,'']]], + ['power_2ehpp_1455',['power.hpp',['../_functions_2power_8hpp.html',1,'']]], + ['powerf_2ehpp_1456',['powerf.hpp',['../_functions_2powerf_8hpp.html',1,'']]], + ['shape_2ehpp_1457',['shape.hpp',['../_functions_2_shape_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_6.html b/docs/doxygen/html/search/files_6.html index 087793155..802ebf715 100644 --- a/docs/doxygen/html/search/files_6.html +++ b/docs/doxygen/html/search/files_6.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_6.js b/docs/doxygen/html/search/files_6.js index bd48f2d76..6406d7db9 100644 --- a/docs/doxygen/html/search/files_6.js +++ b/docs/doxygen/html/search/files_6.js @@ -1,18 +1,19 @@ var searchData= [ - ['gamma1pm1_2ehpp_1396',['gamma1pm1.hpp',['../gamma1pm1_8hpp.html',1,'']]], - ['gauss_5flegendre_2ehpp_1397',['gauss_legendre.hpp',['../gauss__legendre_8hpp.html',1,'']]], - ['gaussian_2ehpp_1398',['gaussian.hpp',['../gaussian_8hpp.html',1,'']]], - ['gaussian1d_2ehpp_1399',['gaussian1d.hpp',['../gaussian1d_8hpp.html',1,'']]], - ['gaussianfilter_2ehpp_1400',['gaussianFilter.hpp',['../gaussian_filter_8hpp.html',1,'']]], - ['gaussianfilter1d_2ehpp_1401',['gaussianFilter1d.hpp',['../gaussian_filter1d_8hpp.html',1,'']]], - ['gaussnewtonnlls_2ehpp_1402',['gaussNewtonNlls.hpp',['../gauss_newton_nlls_8hpp.html',1,'']]], - ['gcd_2ehpp_1403',['gcd.hpp',['../gcd_8hpp.html',1,'']]], - ['generatecentroids_2ehpp_1404',['generateCentroids.hpp',['../generate_centroids_8hpp.html',1,'']]], - ['generatethreshold_2ehpp_1405',['generateThreshold.hpp',['../generate_threshold_8hpp.html',1,'']]], - ['generator_2ehpp_1406',['generator.hpp',['../generator_8hpp.html',1,'']]], - ['geometric_2ehpp_1407',['geometric.hpp',['../geometric_8hpp.html',1,'']]], - ['gradient_2ehpp_1408',['gradient.hpp',['../gradient_8hpp.html',1,'']]], - ['greater_2ehpp_1409',['greater.hpp',['../greater_8hpp.html',1,'']]], - ['greater_5fequal_2ehpp_1410',['greater_equal.hpp',['../greater__equal_8hpp.html',1,'']]] + ['gamma1pm1_2ehpp_1458',['gamma1pm1.hpp',['../gamma1pm1_8hpp.html',1,'']]], + ['gauss_5flegendre_2ehpp_1459',['gauss_legendre.hpp',['../gauss__legendre_8hpp.html',1,'']]], + ['gaussian_2ehpp_1460',['gaussian.hpp',['../gaussian_8hpp.html',1,'']]], + ['gaussian1d_2ehpp_1461',['gaussian1d.hpp',['../gaussian1d_8hpp.html',1,'']]], + ['gaussianfilter_2ehpp_1462',['gaussianFilter.hpp',['../gaussian_filter_8hpp.html',1,'']]], + ['gaussianfilter1d_2ehpp_1463',['gaussianFilter1d.hpp',['../gaussian_filter1d_8hpp.html',1,'']]], + ['gaussnewtonnlls_2ehpp_1464',['gaussNewtonNlls.hpp',['../gauss_newton_nlls_8hpp.html',1,'']]], + ['gcd_2ehpp_1465',['gcd.hpp',['../gcd_8hpp.html',1,'']]], + ['generatecentroids_2ehpp_1466',['generateCentroids.hpp',['../generate_centroids_8hpp.html',1,'']]], + ['generatethreshold_2ehpp_1467',['generateThreshold.hpp',['../generate_threshold_8hpp.html',1,'']]], + ['generator_2ehpp_1468',['generator.hpp',['../generator_8hpp.html',1,'']]], + ['geometric_2ehpp_1469',['geometric.hpp',['../geometric_8hpp.html',1,'']]], + ['geomspace_2ehpp_1470',['geomspace.hpp',['../geomspace_8hpp.html',1,'']]], + ['gradient_2ehpp_1471',['gradient.hpp',['../gradient_8hpp.html',1,'']]], + ['greater_2ehpp_1472',['greater.hpp',['../greater_8hpp.html',1,'']]], + ['greater_5fequal_2ehpp_1473',['greater_equal.hpp',['../greater__equal_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_7.html b/docs/doxygen/html/search/files_7.html index c02d5f4d2..365e6484f 100644 --- a/docs/doxygen/html/search/files_7.html +++ b/docs/doxygen/html/search/files_7.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_7.js b/docs/doxygen/html/search/files_7.js index e054fcb13..b7a0088b0 100644 --- a/docs/doxygen/html/search/files_7.js +++ b/docs/doxygen/html/search/files_7.js @@ -1,8 +1,11 @@ var searchData= [ - ['hat_2ehpp_1411',['hat.hpp',['../hat_8hpp.html',1,'']]], - ['hermite_2ehpp_1412',['hermite.hpp',['../hermite_8hpp.html',1,'']]], - ['histogram_2ehpp_1413',['histogram.hpp',['../histogram_8hpp.html',1,'']]], - ['hstack_2ehpp_1414',['hstack.hpp',['../hstack_8hpp.html',1,'']]], - ['hypot_2ehpp_1415',['hypot.hpp',['../hypot_8hpp.html',1,'']]] + ['hamming_2ehpp_1474',['hamming.hpp',['../hamming_8hpp.html',1,'']]], + ['hammingencode_2ehpp_1475',['hammingEncode.hpp',['../hamming_encode_8hpp.html',1,'']]], + ['hanning_2ehpp_1476',['hanning.hpp',['../hanning_8hpp.html',1,'']]], + ['hat_2ehpp_1477',['hat.hpp',['../hat_8hpp.html',1,'']]], + ['hermite_2ehpp_1478',['hermite.hpp',['../hermite_8hpp.html',1,'']]], + ['histogram_2ehpp_1479',['histogram.hpp',['../histogram_8hpp.html',1,'']]], + ['hstack_2ehpp_1480',['hstack.hpp',['../hstack_8hpp.html',1,'']]], + ['hypot_2ehpp_1481',['hypot.hpp',['../hypot_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_8.html b/docs/doxygen/html/search/files_8.html index 03ad9ee60..3df0f2fae 100644 --- a/docs/doxygen/html/search/files_8.html +++ b/docs/doxygen/html/search/files_8.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_8.js b/docs/doxygen/html/search/files_8.js index 4b59d6663..799bbd0d3 100644 --- a/docs/doxygen/html/search/files_8.js +++ b/docs/doxygen/html/search/files_8.js @@ -1,15 +1,18 @@ var searchData= [ - ['identity_2ehpp_1416',['identity.hpp',['../identity_8hpp.html',1,'']]], - ['imag_2ehpp_1417',['imag.hpp',['../imag_8hpp.html',1,'']]], - ['imageprocessing_2ehpp_1418',['ImageProcessing.hpp',['../_image_processing_8hpp.html',1,'']]], - ['installation_2emd_1419',['Installation.md',['../_installation_8md.html',1,'']]], - ['integrate_2ehpp_1420',['Integrate.hpp',['../_integrate_8hpp.html',1,'']]], - ['intersect1d_2ehpp_1421',['intersect1d.hpp',['../intersect1d_8hpp.html',1,'']]], - ['inv_2ehpp_1422',['inv.hpp',['../inv_8hpp.html',1,'']]], - ['invert_2ehpp_1423',['invert.hpp',['../invert_8hpp.html',1,'']]], - ['isclose_2ehpp_1424',['isclose.hpp',['../isclose_8hpp.html',1,'']]], - ['isinf_2ehpp_1425',['isinf.hpp',['../isinf_8hpp.html',1,'']]], - ['isnan_2ehpp_1426',['isnan.hpp',['../isnan_8hpp.html',1,'']]], - ['iteration_2ehpp_1427',['Iteration.hpp',['../_iteration_8hpp.html',1,'']]] + ['identity_2ehpp_1482',['identity.hpp',['../identity_8hpp.html',1,'']]], + ['imag_2ehpp_1483',['imag.hpp',['../imag_8hpp.html',1,'']]], + ['imageprocessing_2ehpp_1484',['ImageProcessing.hpp',['../_image_processing_8hpp.html',1,'']]], + ['inner_2ehpp_1485',['inner.hpp',['../inner_8hpp.html',1,'']]], + ['installation_2emd_1486',['Installation.md',['../_installation_8md.html',1,'']]], + ['integrate_2ehpp_1487',['Integrate.hpp',['../_integrate_8hpp.html',1,'']]], + ['intersect1d_2ehpp_1488',['intersect1d.hpp',['../intersect1d_8hpp.html',1,'']]], + ['inv_2ehpp_1489',['inv.hpp',['../inv_8hpp.html',1,'']]], + ['invert_2ehpp_1490',['invert.hpp',['../invert_8hpp.html',1,'']]], + ['isclose_2ehpp_1491',['isclose.hpp',['../isclose_8hpp.html',1,'']]], + ['isinf_2ehpp_1492',['isinf.hpp',['../isinf_8hpp.html',1,'']]], + ['isnan_2ehpp_1493',['isnan.hpp',['../isnan_8hpp.html',1,'']]], + ['isneginf_2ehpp_1494',['isneginf.hpp',['../isneginf_8hpp.html',1,'']]], + ['isposinf_2ehpp_1495',['isposinf.hpp',['../isposinf_8hpp.html',1,'']]], + ['iteration_2ehpp_1496',['Iteration.hpp',['../_iteration_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_9.html b/docs/doxygen/html/search/files_9.html index 0e459a2cd..52f8b6c07 100644 --- a/docs/doxygen/html/search/files_9.html +++ b/docs/doxygen/html/search/files_9.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_9.js b/docs/doxygen/html/search/files_9.js index 4aa28c796..75de83199 100644 --- a/docs/doxygen/html/search/files_9.js +++ b/docs/doxygen/html/search/files_9.js @@ -1,26 +1,4 @@ var searchData= [ - ['laguerre_2ehpp_1428',['laguerre.hpp',['../laguerre_8hpp.html',1,'']]], - ['lcm_2ehpp_1429',['lcm.hpp',['../lcm_8hpp.html',1,'']]], - ['ldexp_2ehpp_1430',['ldexp.hpp',['../ldexp_8hpp.html',1,'']]], - ['left_5fshift_2ehpp_1431',['left_shift.hpp',['../left__shift_8hpp.html',1,'']]], - ['legendre_5fp_2ehpp_1432',['legendre_p.hpp',['../legendre__p_8hpp.html',1,'']]], - ['legendre_5fq_2ehpp_1433',['legendre_q.hpp',['../legendre__q_8hpp.html',1,'']]], - ['less_2ehpp_1434',['less.hpp',['../less_8hpp.html',1,'']]], - ['less_5fequal_2ehpp_1435',['less_equal.hpp',['../less__equal_8hpp.html',1,'']]], - ['linalg_2ehpp_1436',['Linalg.hpp',['../_linalg_8hpp.html',1,'']]], - ['linspace_2ehpp_1437',['linspace.hpp',['../linspace_8hpp.html',1,'']]], - ['load_2ehpp_1438',['load.hpp',['../load_8hpp.html',1,'']]], - ['log_2ehpp_1439',['log.hpp',['../log_8hpp.html',1,'']]], - ['log10_2ehpp_1440',['log10.hpp',['../log10_8hpp.html',1,'']]], - ['log1p_2ehpp_1441',['log1p.hpp',['../log1p_8hpp.html',1,'']]], - ['log2_2ehpp_1442',['log2.hpp',['../log2_8hpp.html',1,'']]], - ['log_5fgamma_2ehpp_1443',['log_gamma.hpp',['../log__gamma_8hpp.html',1,'']]], - ['logical_5fand_2ehpp_1444',['logical_and.hpp',['../logical__and_8hpp.html',1,'']]], - ['logical_5fnot_2ehpp_1445',['logical_not.hpp',['../logical__not_8hpp.html',1,'']]], - ['logical_5for_2ehpp_1446',['logical_or.hpp',['../logical__or_8hpp.html',1,'']]], - ['logical_5fxor_2ehpp_1447',['logical_xor.hpp',['../logical__xor_8hpp.html',1,'']]], - ['lognormal_2ehpp_1448',['lognormal.hpp',['../lognormal_8hpp.html',1,'']]], - ['lstsq_2ehpp_1449',['lstsq.hpp',['../lstsq_8hpp.html',1,'']]], - ['lu_5fdecomposition_2ehpp_1450',['lu_decomposition.hpp',['../lu__decomposition_8hpp.html',1,'']]] + ['kaiser_2ehpp_1497',['kaiser.hpp',['../kaiser_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_a.html b/docs/doxygen/html/search/files_a.html index 53adebcf8..11d4c117b 100644 --- a/docs/doxygen/html/search/files_a.html +++ b/docs/doxygen/html/search/files_a.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_a.js b/docs/doxygen/html/search/files_a.js index 64546ddd1..1c541cf49 100644 --- a/docs/doxygen/html/search/files_a.js +++ b/docs/doxygen/html/search/files_a.js @@ -1,23 +1,28 @@ var searchData= [ - ['matmul_2ehpp_1451',['matmul.hpp',['../matmul_8hpp.html',1,'']]], - ['matrix_5fpower_2ehpp_1452',['matrix_power.hpp',['../matrix__power_8hpp.html',1,'']]], - ['max_2ehpp_1453',['max.hpp',['../max_8hpp.html',1,'']]], - ['maximum_2ehpp_1454',['maximum.hpp',['../maximum_8hpp.html',1,'']]], - ['maximumfilter_2ehpp_1455',['maximumFilter.hpp',['../maximum_filter_8hpp.html',1,'']]], - ['maximumfilter1d_2ehpp_1456',['maximumFilter1d.hpp',['../maximum_filter1d_8hpp.html',1,'']]], - ['mean_2ehpp_1457',['mean.hpp',['../mean_8hpp.html',1,'']]], - ['median_2ehpp_1458',['median.hpp',['../median_8hpp.html',1,'']]], - ['medianfilter_2ehpp_1459',['medianFilter.hpp',['../median_filter_8hpp.html',1,'']]], - ['medianfilter1d_2ehpp_1460',['medianFilter1d.hpp',['../median_filter1d_8hpp.html',1,'']]], - ['meshgrid_2ehpp_1461',['meshgrid.hpp',['../meshgrid_8hpp.html',1,'']]], - ['min_2ehpp_1462',['min.hpp',['../min_8hpp.html',1,'']]], - ['minimum_2ehpp_1463',['minimum.hpp',['../minimum_8hpp.html',1,'']]], - ['minimumfilter_2ehpp_1464',['minimumFilter.hpp',['../minimum_filter_8hpp.html',1,'']]], - ['minimumfilter1d_2ehpp_1465',['minimumFilter1d.hpp',['../minimum_filter1d_8hpp.html',1,'']]], - ['mirror1d_2ehpp_1466',['mirror1d.hpp',['../mirror1d_8hpp.html',1,'']]], - ['mirror2d_2ehpp_1467',['mirror2d.hpp',['../mirror2d_8hpp.html',1,'']]], - ['mod_2ehpp_1468',['mod.hpp',['../mod_8hpp.html',1,'']]], - ['multi_5fdot_2ehpp_1469',['multi_dot.hpp',['../multi__dot_8hpp.html',1,'']]], - ['multiply_2ehpp_1470',['multiply.hpp',['../multiply_8hpp.html',1,'']]] + ['laguerre_2ehpp_1498',['laguerre.hpp',['../laguerre_8hpp.html',1,'']]], + ['lcm_2ehpp_1499',['lcm.hpp',['../lcm_8hpp.html',1,'']]], + ['ldexp_2ehpp_1500',['ldexp.hpp',['../ldexp_8hpp.html',1,'']]], + ['left_5fshift_2ehpp_1501',['left_shift.hpp',['../left__shift_8hpp.html',1,'']]], + ['legendre_5fp_2ehpp_1502',['legendre_p.hpp',['../legendre__p_8hpp.html',1,'']]], + ['legendre_5fq_2ehpp_1503',['legendre_q.hpp',['../legendre__q_8hpp.html',1,'']]], + ['less_2ehpp_1504',['less.hpp',['../less_8hpp.html',1,'']]], + ['less_5fequal_2ehpp_1505',['less_equal.hpp',['../less__equal_8hpp.html',1,'']]], + ['linalg_2ehpp_1506',['Linalg.hpp',['../_linalg_8hpp.html',1,'']]], + ['linspace_2ehpp_1507',['linspace.hpp',['../linspace_8hpp.html',1,'']]], + ['load_2ehpp_1508',['load.hpp',['../load_8hpp.html',1,'']]], + ['log_2ehpp_1509',['log.hpp',['../log_8hpp.html',1,'']]], + ['log10_2ehpp_1510',['log10.hpp',['../log10_8hpp.html',1,'']]], + ['log1p_2ehpp_1511',['log1p.hpp',['../log1p_8hpp.html',1,'']]], + ['log2_2ehpp_1512',['log2.hpp',['../log2_8hpp.html',1,'']]], + ['log_5fgamma_2ehpp_1513',['log_gamma.hpp',['../log__gamma_8hpp.html',1,'']]], + ['logb_2ehpp_1514',['logb.hpp',['../logb_8hpp.html',1,'']]], + ['logical_5fand_2ehpp_1515',['logical_and.hpp',['../logical__and_8hpp.html',1,'']]], + ['logical_5fnot_2ehpp_1516',['logical_not.hpp',['../logical__not_8hpp.html',1,'']]], + ['logical_5for_2ehpp_1517',['logical_or.hpp',['../logical__or_8hpp.html',1,'']]], + ['logical_5fxor_2ehpp_1518',['logical_xor.hpp',['../logical__xor_8hpp.html',1,'']]], + ['lognormal_2ehpp_1519',['lognormal.hpp',['../lognormal_8hpp.html',1,'']]], + ['logspace_2ehpp_1520',['logspace.hpp',['../logspace_8hpp.html',1,'']]], + ['lstsq_2ehpp_1521',['lstsq.hpp',['../lstsq_8hpp.html',1,'']]], + ['lu_5fdecomposition_2ehpp_1522',['lu_decomposition.hpp',['../lu__decomposition_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_b.html b/docs/doxygen/html/search/files_b.html index d676c8396..9fc83436a 100644 --- a/docs/doxygen/html/search/files_b.html +++ b/docs/doxygen/html/search/files_b.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_b.js b/docs/doxygen/html/search/files_b.js index 985e28120..428077d00 100644 --- a/docs/doxygen/html/search/files_b.js +++ b/docs/doxygen/html/search/files_b.js @@ -1,38 +1,23 @@ var searchData= [ - ['nan_5fto_5fnum_2ehpp_1471',['nan_to_num.hpp',['../nan__to__num_8hpp.html',1,'']]], - ['nanargmax_2ehpp_1472',['nanargmax.hpp',['../nanargmax_8hpp.html',1,'']]], - ['nanargmin_2ehpp_1473',['nanargmin.hpp',['../nanargmin_8hpp.html',1,'']]], - ['nancumprod_2ehpp_1474',['nancumprod.hpp',['../nancumprod_8hpp.html',1,'']]], - ['nancumsum_2ehpp_1475',['nancumsum.hpp',['../nancumsum_8hpp.html',1,'']]], - ['nanmax_2ehpp_1476',['nanmax.hpp',['../nanmax_8hpp.html',1,'']]], - ['nanmean_2ehpp_1477',['nanmean.hpp',['../nanmean_8hpp.html',1,'']]], - ['nanmedian_2ehpp_1478',['nanmedian.hpp',['../nanmedian_8hpp.html',1,'']]], - ['nanmin_2ehpp_1479',['nanmin.hpp',['../nanmin_8hpp.html',1,'']]], - ['nanpercentile_2ehpp_1480',['nanpercentile.hpp',['../nanpercentile_8hpp.html',1,'']]], - ['nanprod_2ehpp_1481',['nanprod.hpp',['../nanprod_8hpp.html',1,'']]], - ['nans_2ehpp_1482',['nans.hpp',['../nans_8hpp.html',1,'']]], - ['nans_5flike_2ehpp_1483',['nans_like.hpp',['../nans__like_8hpp.html',1,'']]], - ['nanstdev_2ehpp_1484',['nanstdev.hpp',['../nanstdev_8hpp.html',1,'']]], - ['nansum_2ehpp_1485',['nansum.hpp',['../nansum_8hpp.html',1,'']]], - ['nanvar_2ehpp_1486',['nanvar.hpp',['../nanvar_8hpp.html',1,'']]], - ['nbytes_2ehpp_1487',['nbytes.hpp',['../nbytes_8hpp.html',1,'']]], - ['ndarray_2ehpp_1488',['NdArray.hpp',['../_nd_array_8hpp.html',1,'']]], - ['ndarraycore_2ehpp_1489',['NdArrayCore.hpp',['../_nd_array_core_8hpp.html',1,'']]], - ['ndarrayiterators_2ehpp_1490',['NdArrayIterators.hpp',['../_nd_array_iterators_8hpp.html',1,'']]], - ['ndarrayoperators_2ehpp_1491',['NdArrayOperators.hpp',['../_nd_array_operators_8hpp.html',1,'']]], - ['nearest1d_2ehpp_1492',['nearest1d.hpp',['../nearest1d_8hpp.html',1,'']]], - ['nearest2d_2ehpp_1493',['nearest2d.hpp',['../nearest2d_8hpp.html',1,'']]], - ['negative_2ehpp_1494',['negative.hpp',['../negative_8hpp.html',1,'']]], - ['negativebinomial_2ehpp_1495',['negativeBinomial.hpp',['../negative_binomial_8hpp.html',1,'']]], - ['newbyteorder_2ehpp_1496',['newbyteorder.hpp',['../newbyteorder_8hpp.html',1,'']]], - ['newton_2ehpp_1497',['Newton.hpp',['../_newton_8hpp.html',1,'']]], - ['noncentralchisquared_2ehpp_1498',['nonCentralChiSquared.hpp',['../non_central_chi_squared_8hpp.html',1,'']]], - ['none_2ehpp_1499',['none.hpp',['../none_8hpp.html',1,'']]], - ['nonzero_2ehpp_1500',['nonzero.hpp',['../nonzero_8hpp.html',1,'']]], - ['norm_2ehpp_1501',['norm.hpp',['../norm_8hpp.html',1,'']]], - ['normal_2ehpp_1502',['normal.hpp',['../normal_8hpp.html',1,'']]], - ['not_5fequal_2ehpp_1503',['not_equal.hpp',['../not__equal_8hpp.html',1,'']]], - ['num2str_2ehpp_1504',['num2str.hpp',['../num2str_8hpp.html',1,'']]], - ['numcpp_2ehpp_1505',['NumCpp.hpp',['../_num_cpp_8hpp.html',1,'']]] + ['matmul_2ehpp_1523',['matmul.hpp',['../matmul_8hpp.html',1,'']]], + ['matrix_5fpower_2ehpp_1524',['matrix_power.hpp',['../matrix__power_8hpp.html',1,'']]], + ['max_2ehpp_1525',['max.hpp',['../max_8hpp.html',1,'']]], + ['maximum_2ehpp_1526',['maximum.hpp',['../maximum_8hpp.html',1,'']]], + ['maximumfilter_2ehpp_1527',['maximumFilter.hpp',['../maximum_filter_8hpp.html',1,'']]], + ['maximumfilter1d_2ehpp_1528',['maximumFilter1d.hpp',['../maximum_filter1d_8hpp.html',1,'']]], + ['mean_2ehpp_1529',['mean.hpp',['../mean_8hpp.html',1,'']]], + ['median_2ehpp_1530',['median.hpp',['../median_8hpp.html',1,'']]], + ['medianfilter_2ehpp_1531',['medianFilter.hpp',['../median_filter_8hpp.html',1,'']]], + ['medianfilter1d_2ehpp_1532',['medianFilter1d.hpp',['../median_filter1d_8hpp.html',1,'']]], + ['meshgrid_2ehpp_1533',['meshgrid.hpp',['../meshgrid_8hpp.html',1,'']]], + ['min_2ehpp_1534',['min.hpp',['../min_8hpp.html',1,'']]], + ['minimum_2ehpp_1535',['minimum.hpp',['../minimum_8hpp.html',1,'']]], + ['minimumfilter_2ehpp_1536',['minimumFilter.hpp',['../minimum_filter_8hpp.html',1,'']]], + ['minimumfilter1d_2ehpp_1537',['minimumFilter1d.hpp',['../minimum_filter1d_8hpp.html',1,'']]], + ['mirror1d_2ehpp_1538',['mirror1d.hpp',['../mirror1d_8hpp.html',1,'']]], + ['mirror2d_2ehpp_1539',['mirror2d.hpp',['../mirror2d_8hpp.html',1,'']]], + ['mod_2ehpp_1540',['mod.hpp',['../mod_8hpp.html',1,'']]], + ['multi_5fdot_2ehpp_1541',['multi_dot.hpp',['../multi__dot_8hpp.html',1,'']]], + ['multiply_2ehpp_1542',['multiply.hpp',['../multiply_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_c.html b/docs/doxygen/html/search/files_c.html index 875db0f6a..c266b4c25 100644 --- a/docs/doxygen/html/search/files_c.html +++ b/docs/doxygen/html/search/files_c.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_c.js b/docs/doxygen/html/search/files_c.js index 982406ff3..a352756f6 100644 --- a/docs/doxygen/html/search/files_c.js +++ b/docs/doxygen/html/search/files_c.js @@ -1,6 +1,39 @@ var searchData= [ - ['ones_2ehpp_1506',['ones.hpp',['../ones_8hpp.html',1,'']]], - ['ones_5flike_2ehpp_1507',['ones_like.hpp',['../ones__like_8hpp.html',1,'']]], - ['outer_2ehpp_1508',['outer.hpp',['../outer_8hpp.html',1,'']]] + ['nan_5fto_5fnum_2ehpp_1543',['nan_to_num.hpp',['../nan__to__num_8hpp.html',1,'']]], + ['nanargmax_2ehpp_1544',['nanargmax.hpp',['../nanargmax_8hpp.html',1,'']]], + ['nanargmin_2ehpp_1545',['nanargmin.hpp',['../nanargmin_8hpp.html',1,'']]], + ['nancumprod_2ehpp_1546',['nancumprod.hpp',['../nancumprod_8hpp.html',1,'']]], + ['nancumsum_2ehpp_1547',['nancumsum.hpp',['../nancumsum_8hpp.html',1,'']]], + ['nanmax_2ehpp_1548',['nanmax.hpp',['../nanmax_8hpp.html',1,'']]], + ['nanmean_2ehpp_1549',['nanmean.hpp',['../nanmean_8hpp.html',1,'']]], + ['nanmedian_2ehpp_1550',['nanmedian.hpp',['../nanmedian_8hpp.html',1,'']]], + ['nanmin_2ehpp_1551',['nanmin.hpp',['../nanmin_8hpp.html',1,'']]], + ['nanpercentile_2ehpp_1552',['nanpercentile.hpp',['../nanpercentile_8hpp.html',1,'']]], + ['nanprod_2ehpp_1553',['nanprod.hpp',['../nanprod_8hpp.html',1,'']]], + ['nans_2ehpp_1554',['nans.hpp',['../nans_8hpp.html',1,'']]], + ['nans_5flike_2ehpp_1555',['nans_like.hpp',['../nans__like_8hpp.html',1,'']]], + ['nanstdev_2ehpp_1556',['nanstdev.hpp',['../nanstdev_8hpp.html',1,'']]], + ['nansum_2ehpp_1557',['nansum.hpp',['../nansum_8hpp.html',1,'']]], + ['nanvar_2ehpp_1558',['nanvar.hpp',['../nanvar_8hpp.html',1,'']]], + ['nbytes_2ehpp_1559',['nbytes.hpp',['../nbytes_8hpp.html',1,'']]], + ['ndarray_2ehpp_1560',['NdArray.hpp',['../_nd_array_8hpp.html',1,'']]], + ['ndarraycore_2ehpp_1561',['NdArrayCore.hpp',['../_nd_array_core_8hpp.html',1,'']]], + ['ndarrayiterators_2ehpp_1562',['NdArrayIterators.hpp',['../_nd_array_iterators_8hpp.html',1,'']]], + ['ndarrayoperators_2ehpp_1563',['NdArrayOperators.hpp',['../_nd_array_operators_8hpp.html',1,'']]], + ['nearest1d_2ehpp_1564',['nearest1d.hpp',['../nearest1d_8hpp.html',1,'']]], + ['nearest2d_2ehpp_1565',['nearest2d.hpp',['../nearest2d_8hpp.html',1,'']]], + ['negative_2ehpp_1566',['negative.hpp',['../negative_8hpp.html',1,'']]], + ['negativebinomial_2ehpp_1567',['negativeBinomial.hpp',['../negative_binomial_8hpp.html',1,'']]], + ['newbyteorder_2ehpp_1568',['newbyteorder.hpp',['../newbyteorder_8hpp.html',1,'']]], + ['newton_2ehpp_1569',['Newton.hpp',['../_newton_8hpp.html',1,'']]], + ['noncentralchisquared_2ehpp_1570',['nonCentralChiSquared.hpp',['../non_central_chi_squared_8hpp.html',1,'']]], + ['none_2ehpp_1571',['none.hpp',['../none_8hpp.html',1,'']]], + ['nonzero_2ehpp_1572',['nonzero.hpp',['../nonzero_8hpp.html',1,'']]], + ['norm_2ehpp_1573',['norm.hpp',['../norm_8hpp.html',1,'']]], + ['normal_2ehpp_1574',['normal.hpp',['../normal_8hpp.html',1,'']]], + ['not_5fequal_2ehpp_1575',['not_equal.hpp',['../not__equal_8hpp.html',1,'']]], + ['nth_5froot_2ehpp_1576',['nth_root.hpp',['../nth__root_8hpp.html',1,'']]], + ['num2str_2ehpp_1577',['num2str.hpp',['../num2str_8hpp.html',1,'']]], + ['numcpp_2ehpp_1578',['NumCpp.hpp',['../_num_cpp_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_d.html b/docs/doxygen/html/search/files_d.html index 484e7063c..d2ca3c1ca 100644 --- a/docs/doxygen/html/search/files_d.html +++ b/docs/doxygen/html/search/files_d.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_d.js b/docs/doxygen/html/search/files_d.js index b7cabd026..1a6badde8 100644 --- a/docs/doxygen/html/search/files_d.js +++ b/docs/doxygen/html/search/files_d.js @@ -1,26 +1,6 @@ var searchData= [ - ['pad_2ehpp_1509',['pad.hpp',['../pad_8hpp.html',1,'']]], - ['partition_2ehpp_1510',['partition.hpp',['../partition_8hpp.html',1,'']]], - ['percentile_2ehpp_1511',['percentile.hpp',['../percentile_8hpp.html',1,'']]], - ['percentilefilter_2ehpp_1512',['percentileFilter.hpp',['../percentile_filter_8hpp.html',1,'']]], - ['percentilefilter1d_2ehpp_1513',['percentileFilter1d.hpp',['../percentile_filter1d_8hpp.html',1,'']]], - ['permutation_2ehpp_1514',['permutation.hpp',['../permutation_8hpp.html',1,'']]], - ['pivotlu_5fdecomposition_2ehpp_1515',['pivotLU_decomposition.hpp',['../pivot_l_u__decomposition_8hpp.html',1,'']]], - ['pixel_2ehpp_1516',['Pixel.hpp',['../_pixel_8hpp.html',1,'']]], - ['pnr_2ehpp_1517',['pnr.hpp',['../pnr_8hpp.html',1,'']]], - ['poisson_2ehpp_1518',['poisson.hpp',['../poisson_8hpp.html',1,'']]], - ['polar_2ehpp_1519',['polar.hpp',['../polar_8hpp.html',1,'']]], - ['poly1d_2ehpp_1520',['Poly1d.hpp',['../_poly1d_8hpp.html',1,'']]], - ['polygamma_2ehpp_1521',['polygamma.hpp',['../polygamma_8hpp.html',1,'']]], - ['polynomial_2ehpp_1522',['Polynomial.hpp',['../_polynomial_8hpp.html',1,'']]], - ['prime_2ehpp_1523',['prime.hpp',['../prime_8hpp.html',1,'']]], - ['print_2ehpp_1524',['print.hpp',['../print_8hpp.html',1,'']]], - ['prod_2ehpp_1525',['prod.hpp',['../prod_8hpp.html',1,'']]], - ['proj_2ehpp_1526',['proj.hpp',['../proj_8hpp.html',1,'']]], - ['ptp_2ehpp_1527',['ptp.hpp',['../ptp_8hpp.html',1,'']]], - ['put_2ehpp_1528',['put.hpp',['../put_8hpp.html',1,'']]], - ['putmask_2ehpp_1529',['putmask.hpp',['../putmask_8hpp.html',1,'']]], - ['pybindinterface_2ehpp_1530',['PybindInterface.hpp',['../_pybind_interface_8hpp.html',1,'']]], - ['pythoninterface_2ehpp_1531',['PythonInterface.hpp',['../_python_interface_8hpp.html',1,'']]] + ['ones_2ehpp_1579',['ones.hpp',['../ones_8hpp.html',1,'']]], + ['ones_5flike_2ehpp_1580',['ones_like.hpp',['../ones__like_8hpp.html',1,'']]], + ['outer_2ehpp_1581',['outer.hpp',['../outer_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_e.html b/docs/doxygen/html/search/files_e.html index 640472b3d..9df411672 100644 --- a/docs/doxygen/html/search/files_e.html +++ b/docs/doxygen/html/search/files_e.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_e.js b/docs/doxygen/html/search/files_e.js index 11dac45e7..7bb36156a 100644 --- a/docs/doxygen/html/search/files_e.js +++ b/docs/doxygen/html/search/files_e.js @@ -1,4 +1,27 @@ var searchData= [ - ['quaternion_2ehpp_1532',['Quaternion.hpp',['../_quaternion_8hpp.html',1,'']]] + ['pad_2ehpp_1582',['pad.hpp',['../pad_8hpp.html',1,'']]], + ['partition_2ehpp_1583',['partition.hpp',['../partition_8hpp.html',1,'']]], + ['percentile_2ehpp_1584',['percentile.hpp',['../percentile_8hpp.html',1,'']]], + ['percentilefilter_2ehpp_1585',['percentileFilter.hpp',['../percentile_filter_8hpp.html',1,'']]], + ['percentilefilter1d_2ehpp_1586',['percentileFilter1d.hpp',['../percentile_filter1d_8hpp.html',1,'']]], + ['permutation_2ehpp_1587',['permutation.hpp',['../permutation_8hpp.html',1,'']]], + ['pivotlu_5fdecomposition_2ehpp_1588',['pivotLU_decomposition.hpp',['../pivot_l_u__decomposition_8hpp.html',1,'']]], + ['pixel_2ehpp_1589',['Pixel.hpp',['../_pixel_8hpp.html',1,'']]], + ['place_2ehpp_1590',['place.hpp',['../place_8hpp.html',1,'']]], + ['pnr_2ehpp_1591',['pnr.hpp',['../pnr_8hpp.html',1,'']]], + ['poisson_2ehpp_1592',['poisson.hpp',['../poisson_8hpp.html',1,'']]], + ['polar_2ehpp_1593',['polar.hpp',['../polar_8hpp.html',1,'']]], + ['poly1d_2ehpp_1594',['Poly1d.hpp',['../_poly1d_8hpp.html',1,'']]], + ['polygamma_2ehpp_1595',['polygamma.hpp',['../polygamma_8hpp.html',1,'']]], + ['polynomial_2ehpp_1596',['Polynomial.hpp',['../_polynomial_8hpp.html',1,'']]], + ['prime_2ehpp_1597',['prime.hpp',['../prime_8hpp.html',1,'']]], + ['print_2ehpp_1598',['print.hpp',['../print_8hpp.html',1,'']]], + ['prod_2ehpp_1599',['prod.hpp',['../prod_8hpp.html',1,'']]], + ['proj_2ehpp_1600',['proj.hpp',['../proj_8hpp.html',1,'']]], + ['ptp_2ehpp_1601',['ptp.hpp',['../ptp_8hpp.html',1,'']]], + ['put_2ehpp_1602',['put.hpp',['../put_8hpp.html',1,'']]], + ['putmask_2ehpp_1603',['putmask.hpp',['../putmask_8hpp.html',1,'']]], + ['pybindinterface_2ehpp_1604',['PybindInterface.hpp',['../_pybind_interface_8hpp.html',1,'']]], + ['pythoninterface_2ehpp_1605',['PythonInterface.hpp',['../_python_interface_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/files_f.html b/docs/doxygen/html/search/files_f.html index 6489d6a70..f75258bb5 100644 --- a/docs/doxygen/html/search/files_f.html +++ b/docs/doxygen/html/search/files_f.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/files_f.js b/docs/doxygen/html/search/files_f.js index 8923f008c..51e2c18fb 100644 --- a/docs/doxygen/html/search/files_f.js +++ b/docs/doxygen/html/search/files_f.js @@ -1,42 +1,4 @@ var searchData= [ - ['beta_2ehpp_1533',['beta.hpp',['../_random_2beta_8hpp.html',1,'']]], - ['gamma_2ehpp_1534',['gamma.hpp',['../_random_2gamma_8hpp.html',1,'']]], - ['laplace_2ehpp_1535',['laplace.hpp',['../_random_2laplace_8hpp.html',1,'']]], - ['ra_2ehpp_1536',['RA.hpp',['../_r_a_8hpp.html',1,'']]], - ['rad2deg_2ehpp_1537',['rad2deg.hpp',['../rad2deg_8hpp.html',1,'']]], - ['radians_2ehpp_1538',['radians.hpp',['../radians_8hpp.html',1,'']]], - ['radianseperation_2ehpp_1539',['radianSeperation.hpp',['../radian_seperation_8hpp.html',1,'']]], - ['rand_2ehpp_1540',['rand.hpp',['../rand_8hpp.html',1,'']]], - ['randfloat_2ehpp_1541',['randFloat.hpp',['../rand_float_8hpp.html',1,'']]], - ['randint_2ehpp_1542',['randInt.hpp',['../rand_int_8hpp.html',1,'']]], - ['randn_2ehpp_1543',['randN.hpp',['../rand_n_8hpp.html',1,'']]], - ['random_2ehpp_1544',['Random.hpp',['../_random_8hpp.html',1,'']]], - ['rankfilter_2ehpp_1545',['rankFilter.hpp',['../rank_filter_8hpp.html',1,'']]], - ['rankfilter1d_2ehpp_1546',['rankFilter1d.hpp',['../rank_filter1d_8hpp.html',1,'']]], - ['ravel_2ehpp_1547',['ravel.hpp',['../ravel_8hpp.html',1,'']]], - ['readme_2emd_1548',['README.md',['../_r_e_a_d_m_e_8md.html',1,'']]], - ['real_2ehpp_1549',['real.hpp',['../real_8hpp.html',1,'']]], - ['reciprocal_2ehpp_1550',['reciprocal.hpp',['../reciprocal_8hpp.html',1,'']]], - ['reflect1d_2ehpp_1551',['reflect1d.hpp',['../reflect1d_8hpp.html',1,'']]], - ['reflect2d_2ehpp_1552',['reflect2d.hpp',['../reflect2d_8hpp.html',1,'']]], - ['releasenotes_2emd_1553',['ReleaseNotes.md',['../_release_notes_8md.html',1,'']]], - ['remainder_2ehpp_1554',['remainder.hpp',['../remainder_8hpp.html',1,'']]], - ['repeat_2ehpp_1555',['repeat.hpp',['../repeat_8hpp.html',1,'']]], - ['replace_2ehpp_1556',['replace.hpp',['../replace_8hpp.html',1,'']]], - ['reshape_2ehpp_1557',['reshape.hpp',['../reshape_8hpp.html',1,'']]], - ['resizefast_2ehpp_1558',['resizeFast.hpp',['../resize_fast_8hpp.html',1,'']]], - ['resizeslow_2ehpp_1559',['resizeSlow.hpp',['../resize_slow_8hpp.html',1,'']]], - ['riemann_5fzeta_2ehpp_1560',['riemann_zeta.hpp',['../riemann__zeta_8hpp.html',1,'']]], - ['right_5fshift_2ehpp_1561',['right_shift.hpp',['../right__shift_8hpp.html',1,'']]], - ['rint_2ehpp_1562',['rint.hpp',['../rint_8hpp.html',1,'']]], - ['rms_2ehpp_1563',['rms.hpp',['../rms_8hpp.html',1,'']]], - ['rodriguesrotation_2ehpp_1564',['rodriguesRotation.hpp',['../rodrigues_rotation_8hpp.html',1,'']]], - ['roll_2ehpp_1565',['roll.hpp',['../roll_8hpp.html',1,'']]], - ['romberg_2ehpp_1566',['romberg.hpp',['../romberg_8hpp.html',1,'']]], - ['roots_2ehpp_1567',['Roots.hpp',['../_roots_8hpp.html',1,'']]], - ['rot90_2ehpp_1568',['rot90.hpp',['../rot90_8hpp.html',1,'']]], - ['rotations_2ehpp_1569',['Rotations.hpp',['../_rotations_8hpp.html',1,'']]], - ['round_2ehpp_1570',['round.hpp',['../round_8hpp.html',1,'']]], - ['row_5fstack_2ehpp_1571',['row_stack.hpp',['../row__stack_8hpp.html',1,'']]] + ['quaternion_2ehpp_1606',['Quaternion.hpp',['../_quaternion_8hpp.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/functions_0.html b/docs/doxygen/html/search/functions_0.html index 04d772fad..eb4c5014c 100644 --- a/docs/doxygen/html/search/functions_0.html +++ b/docs/doxygen/html/search/functions_0.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_0.js b/docs/doxygen/html/search/functions_0.js index bd5c5dc8d..f2caf0b0e 100644 --- a/docs/doxygen/html/search/functions_0.js +++ b/docs/doxygen/html/search/functions_0.js @@ -1,46 +1,46 @@ var searchData= [ - ['abs_1656',['abs',['../namespacenc.html#a6c2c40c4efcd5018f84f9aca0c03c29d',1,'nc::abs(dtype inValue) noexcept'],['../namespacenc.html#ad701f25dc97cf57005869ccb83357689',1,'nc::abs(const NdArray< dtype > &inArray)']]], - ['add_1657',['add',['../namespacenc.html#af5a087b8c1a96061e09f940143eda94a',1,'nc::add(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#abf179f45ed80c33c4093bab65e87f9d5',1,'nc::add(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#a9e0ebe00c9b81a6acdd1bfb328ca1e15',1,'nc::add(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a179128257dbcede363ccf942fb32e42f',1,'nc::add(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a8d76aea45bc47a83ec108b24f82b75ab',1,'nc::add(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a315d6d9acfc7fb154ebac4bea533857a',1,'nc::add(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#afe0e003d201511287b8954aa5b1b0d05',1,'nc::add(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a37845dd28b36310f6dba5aa6ebba9cff',1,'nc::add(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#a3f02320424da5d350eba50dc83cbb4cf',1,'nc::add(dtype value, const NdArray< std::complex< dtype >> &inArray)']]], - ['addboundary1d_1658',['addBoundary1d',['../namespacenc_1_1filter_1_1boundary.html#a794f239834d31e60ad7c9d5a552e3f7c',1,'nc::filter::boundary']]], - ['addboundary2d_1659',['addBoundary2d',['../namespacenc_1_1filter_1_1boundary.html#a43e1dba909451a24518231243181d79d',1,'nc::filter::boundary']]], - ['addpixel_1660',['addPixel',['../classnc_1_1image_processing_1_1_cluster.html#a9cab13be79b63d9151e60a798ca39cb5',1,'nc::imageProcessing::Cluster']]], - ['airy_5fai_1661',['airy_ai',['../namespacenc_1_1special.html#a90c6b73247014e03767ad66cefccc4d6',1,'nc::special::airy_ai(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#ae5fa8cc4efa56e60d061600b3f6903b2',1,'nc::special::airy_ai(dtype inValue)']]], - ['airy_5fai_5fprime_1662',['airy_ai_prime',['../namespacenc_1_1special.html#a10516c44f9bd0fb906dd12122401187a',1,'nc::special::airy_ai_prime(dtype inValue)'],['../namespacenc_1_1special.html#abd997d345e8fdf5440c0c16548113d4c',1,'nc::special::airy_ai_prime(const NdArray< dtype > &inArray)']]], - ['airy_5fbi_1663',['airy_bi',['../namespacenc_1_1special.html#a6e23c4a5cc7f4a44b384b0c2a9f3c56f',1,'nc::special::airy_bi(dtype inValue)'],['../namespacenc_1_1special.html#a9ea0f9f510fa0c67639ebf17690271d3',1,'nc::special::airy_bi(const NdArray< dtype > &inArray)']]], - ['airy_5fbi_5fprime_1664',['airy_bi_prime',['../namespacenc_1_1special.html#ab85b0e2d663c5ff84f92e321b9146ae1',1,'nc::special::airy_bi_prime(dtype inValue)'],['../namespacenc_1_1special.html#a9646b2d48062cebaeb627ab0ed8c68c6',1,'nc::special::airy_bi_prime(const NdArray< dtype > &inArray)']]], - ['alen_1665',['alen',['../namespacenc.html#a3c13463ad0ab59dcbd9d8efc99b83ca8',1,'nc']]], - ['all_1666',['all',['../namespacenc.html#ad5df164a8079cf9b22d25b6c62f1d10a',1,'nc::all()'],['../classnc_1_1_nd_array.html#afaba38e055338400eb8a404dfda573d5',1,'nc::NdArray::all()']]], - ['all_5fof_1667',['all_of',['../namespacenc_1_1stl__algorithms.html#a6c632e800fd350eb36ea01eb522eeb1f',1,'nc::stl_algorithms']]], - ['allclose_1668',['allclose',['../namespacenc.html#ac2a107bb7ecfcf649c408069166ed1ea',1,'nc']]], - ['amax_1669',['amax',['../namespacenc.html#a813ac533b98f739214f7ee23d1bc448c',1,'nc']]], - ['amin_1670',['amin',['../namespacenc.html#a4ea471f5a3dc23f638a8499151351435',1,'nc']]], - ['angle_1671',['angle',['../classnc_1_1_vec3.html#a523ca42cbdd088851cc5a299da988cee',1,'nc::Vec3::angle()'],['../classnc_1_1_vec2.html#a271ca2cae96a1df44486fbcc2c0f890f',1,'nc::Vec2::angle()'],['../namespacenc.html#a600c02680b7f5963cc305a4b5450f6f6',1,'nc::angle(const std::complex< dtype > &inValue)'],['../namespacenc.html#aa2ad52b9ebde8a5404642b190adb1bad',1,'nc::angle(const NdArray< std::complex< dtype >> &inArray)']]], - ['angularvelocity_1672',['angularVelocity',['../classnc_1_1rotations_1_1_quaternion.html#a7cbe975bfed4cd7e5b4606047a9ee7f9',1,'nc::rotations::Quaternion::angularVelocity(const Quaternion &inQuat1, const Quaternion &inQuat2, double inTime)'],['../classnc_1_1rotations_1_1_quaternion.html#a13ac87f70271d1771301011887d9d51a',1,'nc::rotations::Quaternion::angularVelocity(const Quaternion &inQuat2, double inTime) const']]], - ['any_1673',['any',['../classnc_1_1_nd_array.html#a1463c8f1cb95cb8546d02502d86bd91e',1,'nc::NdArray::any()'],['../namespacenc.html#a2101c957472f0cefeda9d6b2b7bc6935',1,'nc::any()']]], - ['any_5fof_1674',['any_of',['../namespacenc_1_1stl__algorithms.html#a0ae9c71c7298f83822ab49d270c867ba',1,'nc::stl_algorithms']]], - ['append_1675',['append',['../namespacenc.html#a95328595c782582b1e75e1c12e92bd81',1,'nc']]], - ['applyfunction_1676',['applyFunction',['../namespacenc.html#a9514d926dd13e0c80ae8b4f263752725',1,'nc']]], - ['applypoly1d_1677',['applyPoly1d',['../namespacenc.html#a52f3be5bbad0243643027a1477662356',1,'nc']]], - ['applythreshold_1678',['applyThreshold',['../namespacenc_1_1image_processing.html#afabcede2d9e7e67cc80fc822b30d70e6',1,'nc::imageProcessing']]], - ['arange_1679',['arange',['../namespacenc.html#a465e2385ac78ca4cc23928a4a0cd9f53',1,'nc::arange(dtype inStart, dtype inStop, dtype inStep=1)'],['../namespacenc.html#a2edad3e052b232bd9075c78aad3c9287',1,'nc::arange(dtype inStop)'],['../namespacenc.html#a724165d620d8bff96f8f004c18257ad6',1,'nc::arange(const Slice &inSlice)']]], - ['arccos_1680',['arccos',['../namespacenc.html#a0a87e0681917bdd812e139e6d6ea4bf1',1,'nc::arccos(dtype inValue) noexcept'],['../namespacenc.html#aa57707902e14b3f16aec516e183d5830',1,'nc::arccos(const NdArray< dtype > &inArray)']]], - ['arccosh_1681',['arccosh',['../namespacenc.html#a725eab730b946eca5d197933b9f955fa',1,'nc::arccosh(dtype inValue) noexcept'],['../namespacenc.html#a9063e7275b83f3201f74a0014a9b54d5',1,'nc::arccosh(const NdArray< dtype > &inArray)']]], - ['arcsin_1682',['arcsin',['../namespacenc.html#a6d18d24b8a33ec7df0e845d6a430d5f2',1,'nc::arcsin(dtype inValue) noexcept'],['../namespacenc.html#a4b1b8fc9752c90328e3cadce151d6370',1,'nc::arcsin(const NdArray< dtype > &inArray)']]], - ['arcsinh_1683',['arcsinh',['../namespacenc.html#a74ebb0003f6cf0d0dc0fd8af1e983969',1,'nc::arcsinh(dtype inValue) noexcept'],['../namespacenc.html#abbf91db9344e5d1a53325990ef5535a0',1,'nc::arcsinh(const NdArray< dtype > &inArray)']]], - ['arctan_1684',['arctan',['../namespacenc.html#ac7080b26d0d4d849197ae10ce6d94a53',1,'nc::arctan(const NdArray< dtype > &inArray)'],['../namespacenc.html#a0f63f816e660b0a4b3da191c8584a21a',1,'nc::arctan(dtype inValue) noexcept']]], - ['arctan2_1685',['arctan2',['../namespacenc.html#abdec674ddb32540775e97e0fca6016aa',1,'nc::arctan2(dtype inY, dtype inX) noexcept'],['../namespacenc.html#a3d3c4c6b273e6eee45cf6359cf621980',1,'nc::arctan2(const NdArray< dtype > &inY, const NdArray< dtype > &inX)']]], - ['arctanh_1686',['arctanh',['../namespacenc.html#a01f43fad4032a2823fc3ed56137b93de',1,'nc::arctanh(dtype inValue) noexcept'],['../namespacenc.html#a1b71f03b842e44890312fa09ed1aa594',1,'nc::arctanh(const NdArray< dtype > &inArray)']]], - ['area_1687',['area',['../classnc_1_1polynomial_1_1_poly1d.html#adcbfe7e5fe2ed3b73bc5c81a73ece1cb',1,'nc::polynomial::Poly1d']]], - ['argmax_1688',['argmax',['../classnc_1_1_nd_array.html#ad4a41193c4f364a817f51ac7f6932b1f',1,'nc::NdArray::argmax()'],['../namespacenc.html#a33dac7f03588175031847327655f0b5d',1,'nc::argmax()']]], - ['argmin_1689',['argmin',['../classnc_1_1_nd_array.html#a62a38761f6f8fd005e225a5d3328e073',1,'nc::NdArray::argmin()'],['../namespacenc.html#ae26281f75850e9b94272228b56544bd5',1,'nc::argmin()']]], - ['argsort_1690',['argsort',['../classnc_1_1_nd_array.html#ae0ec4abb78faecc68f8d7e2198894196',1,'nc::NdArray::argsort()'],['../namespacenc.html#a88c217359f5e295649dd0cabe648ce6a',1,'nc::argsort(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], - ['argwhere_1691',['argwhere',['../namespacenc.html#aeddef72feba83e0c7d053093c74ed686',1,'nc']]], - ['around_1692',['around',['../namespacenc.html#a32e869df2216c793407d6addea9bf890',1,'nc::around(dtype inValue, uint8 inNumDecimals=0)'],['../namespacenc.html#a332fc87fa0bae7583b6a6ca3ceb8a8d4',1,'nc::around(const NdArray< dtype > &inArray, uint8 inNumDecimals=0)']]], - ['array_5fequal_1693',['array_equal',['../namespacenc.html#a0e8c1396cc01ccd9ec8ba549b6347e21',1,'nc']]], - ['array_5fequiv_1694',['array_equiv',['../namespacenc.html#ac7cfdea4ac1caa81eabdb5dfe33b90b8',1,'nc']]], - ['asarray_1695',['asarray',['../namespacenc.html#a937b7ded9b21c92955e8ab137ad0b449',1,'nc::asarray(std::initializer_list< dtype > inList)'],['../namespacenc.html#a6a6f1083d41b9d345d6dae5093d7632b',1,'nc::asarray(std::initializer_list< std::initializer_list< dtype > > inList)'],['../namespacenc.html#ae2e0f4084163e9be08e324a6f3c10579',1,'nc::asarray(std::array< dtype, ArraySize > &inArray, bool copy=true)'],['../namespacenc.html#a35116b2646ecd25b63586fa987991f21',1,'nc::asarray(std::array< std::array< dtype, Dim1Size >, Dim0Size > &inArray, bool copy=true)'],['../namespacenc.html#a37aab9b1478f5d5abea3d02029fb2f2d',1,'nc::asarray(std::vector< dtype > &inVector, bool copy=true)'],['../namespacenc.html#a5ac399ecf8e26717e118be6d04164d31',1,'nc::asarray(const std::vector< std::vector< dtype >> &inVector)'],['../namespacenc.html#a39a0d39388c73f10ab8b462108675e98',1,'nc::asarray(dtype *ptr, uint32 numRows, uint32 numCols, Bool takeOwnership) noexcept'],['../namespacenc.html#ae2b23e323b2d5e16933587ede8c5d115',1,'nc::asarray(dtype *ptr, uint32 size, Bool takeOwnership) noexcept'],['../namespacenc.html#a49d751314929b591b3e1a9d79f81d6ff',1,'nc::asarray(const dtype *ptr, uint32 numRows, uint32 numCols)'],['../namespacenc.html#aab50ba883dd36c374c2b0d34c22f7bc1',1,'nc::asarray(std::vector< std::array< dtype, Dim1Size >> &inVector, bool copy=true)'],['../namespacenc.html#a430dab2027f102a689a812134e1f9655',1,'nc::asarray(const std::deque< dtype > &inDeque)'],['../namespacenc.html#ac7a31dc08b1ea7cbdc71c22cad70e328',1,'nc::asarray(const std::deque< std::deque< dtype >> &inDeque)'],['../namespacenc.html#aaef8615d9fb222814f2849fb0915dd81',1,'nc::asarray(const std::set< dtype, dtypeComp > &inSet)'],['../namespacenc.html#a6280fea16d0710fe5e257c3d4cb3a85d',1,'nc::asarray(const std::list< dtype > &inList)'],['../namespacenc.html#aa0127b6d17a87db3f9deed78e90f54bd',1,'nc::asarray(Iterator iterBegin, Iterator iterEnd)'],['../namespacenc.html#a35bad04da98984458f265fc1dcd66b00',1,'nc::asarray(const dtype *iterBegin, const dtype *iterEnd)'],['../namespacenc.html#ac2c02eb2fd3b28ab815ab5d678649a13',1,'nc::asarray(const dtype *ptr, uint32 size)']]], - ['astype_1696',['astype',['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype()'],['../namespacenc.html#a07250b272d24387fab405d29c14082e4',1,'nc::astype()'],['../classnc_1_1polynomial_1_1_poly1d.html#a0cf03b40603f490af100cdc65140ab9f',1,'nc::polynomial::Poly1d::astype()'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const']]], - ['at_1697',['at',['../classnc_1_1_nd_array.html#a7b5c383337c887ddf537708b29b64afd',1,'nc::NdArray::at()'],['../classnc_1_1_data_cube.html#a8925f65b525c2b4fe04c711851b66828',1,'nc::DataCube::at(uint32 inIndex)'],['../classnc_1_1_data_cube.html#ab78c6fc396ea087819cdef43f316da4e',1,'nc::DataCube::at(uint32 inIndex) const'],['../classnc_1_1image_processing_1_1_cluster.html#a5a8d82d40cea566786e8f80ad72a6d10',1,'nc::imageProcessing::Cluster::at()'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a679db8e4b1f175af3db67c756c54d6b1',1,'nc::imageProcessing::ClusterMaker::at()'],['../classnc_1_1_nd_array.html#a3ae4c372620db7cf0211867dcb886b48',1,'nc::NdArray::at(int32 inIndex)'],['../classnc_1_1_nd_array.html#a10ef25d07c5761028091cda2c7f20d1f',1,'nc::NdArray::at(int32 inIndex) const'],['../classnc_1_1_nd_array.html#ade8b486f8c2ffce283abea6126cb3a63',1,'nc::NdArray::at(int32 inRowIndex, int32 inColIndex)'],['../classnc_1_1_nd_array.html#a77807cb1488da10f8654dc6331426ca6',1,'nc::NdArray::at(int32 inRowIndex, int32 inColIndex) const'],['../classnc_1_1_nd_array.html#a39dc0db6c17edef6642b55b4ce68df48',1,'nc::NdArray::at(const Slice &inSlice) const'],['../classnc_1_1_nd_array.html#adf7b073b906cd66e1c8a78df865b5679',1,'nc::NdArray::at(const Slice &inRowSlice, const Slice &inColSlice) const'],['../classnc_1_1_nd_array.html#a1537e603e458ad93bdde061e476305d6',1,'nc::NdArray::at(const Slice &inRowSlice, int32 inColIndex) const'],['../classnc_1_1_nd_array.html#a023bd56ee5fd8b58a4d0eb2acd71f67a',1,'nc::NdArray::at(const NdArray< int32 > &rowIndices, const NdArray< int32 > &colIndices) const']]], - ['average_1698',['average',['../namespacenc.html#a9025fe780f7cb82e65c21738672f1d41',1,'nc::average(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a08d310c2089324a7106ff509b862f5c7',1,'nc::average(const NdArray< dtype > &inArray, const NdArray< dtype > &inWeights, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a4d65d31c652a1ab639089ab948d0d557',1,'nc::average(const NdArray< std::complex< dtype >> &inArray, const NdArray< dtype > &inWeights, Axis inAxis=Axis::NONE)']]] + ['abs_1731',['abs',['../namespacenc.html#ad701f25dc97cf57005869ccb83357689',1,'nc::abs(const NdArray< dtype > &inArray)'],['../namespacenc.html#a6c2c40c4efcd5018f84f9aca0c03c29d',1,'nc::abs(dtype inValue) noexcept']]], + ['add_1732',['add',['../namespacenc.html#a9e0ebe00c9b81a6acdd1bfb328ca1e15',1,'nc::add(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a37845dd28b36310f6dba5aa6ebba9cff',1,'nc::add(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#afe0e003d201511287b8954aa5b1b0d05',1,'nc::add(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a315d6d9acfc7fb154ebac4bea533857a',1,'nc::add(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a8d76aea45bc47a83ec108b24f82b75ab',1,'nc::add(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a179128257dbcede363ccf942fb32e42f',1,'nc::add(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#abf179f45ed80c33c4093bab65e87f9d5',1,'nc::add(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#af5a087b8c1a96061e09f940143eda94a',1,'nc::add(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a3f02320424da5d350eba50dc83cbb4cf',1,'nc::add(dtype value, const NdArray< std::complex< dtype >> &inArray)']]], + ['addboundary1d_1733',['addBoundary1d',['../namespacenc_1_1filter_1_1boundary.html#a794f239834d31e60ad7c9d5a552e3f7c',1,'nc::filter::boundary']]], + ['addboundary2d_1734',['addBoundary2d',['../namespacenc_1_1filter_1_1boundary.html#a43e1dba909451a24518231243181d79d',1,'nc::filter::boundary']]], + ['addpixel_1735',['addPixel',['../classnc_1_1image_processing_1_1_cluster.html#a9cab13be79b63d9151e60a798ca39cb5',1,'nc::imageProcessing::Cluster']]], + ['airy_5fai_1736',['airy_ai',['../namespacenc_1_1special.html#a90c6b73247014e03767ad66cefccc4d6',1,'nc::special::airy_ai(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#ae5fa8cc4efa56e60d061600b3f6903b2',1,'nc::special::airy_ai(dtype inValue)']]], + ['airy_5fai_5fprime_1737',['airy_ai_prime',['../namespacenc_1_1special.html#a10516c44f9bd0fb906dd12122401187a',1,'nc::special::airy_ai_prime(dtype inValue)'],['../namespacenc_1_1special.html#abd997d345e8fdf5440c0c16548113d4c',1,'nc::special::airy_ai_prime(const NdArray< dtype > &inArray)']]], + ['airy_5fbi_1738',['airy_bi',['../namespacenc_1_1special.html#a6e23c4a5cc7f4a44b384b0c2a9f3c56f',1,'nc::special::airy_bi(dtype inValue)'],['../namespacenc_1_1special.html#a9ea0f9f510fa0c67639ebf17690271d3',1,'nc::special::airy_bi(const NdArray< dtype > &inArray)']]], + ['airy_5fbi_5fprime_1739',['airy_bi_prime',['../namespacenc_1_1special.html#ab85b0e2d663c5ff84f92e321b9146ae1',1,'nc::special::airy_bi_prime(dtype inValue)'],['../namespacenc_1_1special.html#a9646b2d48062cebaeb627ab0ed8c68c6',1,'nc::special::airy_bi_prime(const NdArray< dtype > &inArray)']]], + ['alen_1740',['alen',['../namespacenc.html#a3c13463ad0ab59dcbd9d8efc99b83ca8',1,'nc']]], + ['all_1741',['all',['../classnc_1_1_nd_array.html#afaba38e055338400eb8a404dfda573d5',1,'nc::NdArray::all()'],['../namespacenc.html#ad5df164a8079cf9b22d25b6c62f1d10a',1,'nc::all()']]], + ['all_5fof_1742',['all_of',['../namespacenc_1_1stl__algorithms.html#a6c632e800fd350eb36ea01eb522eeb1f',1,'nc::stl_algorithms']]], + ['allclose_1743',['allclose',['../namespacenc.html#ac2a107bb7ecfcf649c408069166ed1ea',1,'nc']]], + ['amax_1744',['amax',['../namespacenc.html#a813ac533b98f739214f7ee23d1bc448c',1,'nc']]], + ['amin_1745',['amin',['../namespacenc.html#a4ea471f5a3dc23f638a8499151351435',1,'nc']]], + ['angle_1746',['angle',['../classnc_1_1_vec2.html#a271ca2cae96a1df44486fbcc2c0f890f',1,'nc::Vec2::angle()'],['../classnc_1_1_vec3.html#a523ca42cbdd088851cc5a299da988cee',1,'nc::Vec3::angle()'],['../namespacenc.html#aa2ad52b9ebde8a5404642b190adb1bad',1,'nc::angle(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a600c02680b7f5963cc305a4b5450f6f6',1,'nc::angle(const std::complex< dtype > &inValue)']]], + ['angularvelocity_1747',['angularVelocity',['../classnc_1_1rotations_1_1_quaternion.html#a7cbe975bfed4cd7e5b4606047a9ee7f9',1,'nc::rotations::Quaternion::angularVelocity(const Quaternion &inQuat1, const Quaternion &inQuat2, double inTime)'],['../classnc_1_1rotations_1_1_quaternion.html#a13ac87f70271d1771301011887d9d51a',1,'nc::rotations::Quaternion::angularVelocity(const Quaternion &inQuat2, double inTime) const']]], + ['any_1748',['any',['../classnc_1_1_nd_array.html#a1463c8f1cb95cb8546d02502d86bd91e',1,'nc::NdArray::any()'],['../namespacenc.html#a2101c957472f0cefeda9d6b2b7bc6935',1,'nc::any()']]], + ['any_5fof_1749',['any_of',['../namespacenc_1_1stl__algorithms.html#a0ae9c71c7298f83822ab49d270c867ba',1,'nc::stl_algorithms']]], + ['append_1750',['append',['../namespacenc.html#a95328595c782582b1e75e1c12e92bd81',1,'nc']]], + ['applyfunction_1751',['applyFunction',['../namespacenc.html#a9514d926dd13e0c80ae8b4f263752725',1,'nc']]], + ['applypoly1d_1752',['applyPoly1d',['../namespacenc.html#a52f3be5bbad0243643027a1477662356',1,'nc']]], + ['applythreshold_1753',['applyThreshold',['../namespacenc_1_1image_processing.html#afabcede2d9e7e67cc80fc822b30d70e6',1,'nc::imageProcessing']]], + ['arange_1754',['arange',['../namespacenc.html#a465e2385ac78ca4cc23928a4a0cd9f53',1,'nc::arange(dtype inStart, dtype inStop, dtype inStep=1)'],['../namespacenc.html#a2edad3e052b232bd9075c78aad3c9287',1,'nc::arange(dtype inStop)'],['../namespacenc.html#a724165d620d8bff96f8f004c18257ad6',1,'nc::arange(const Slice &inSlice)']]], + ['arccos_1755',['arccos',['../namespacenc.html#aa57707902e14b3f16aec516e183d5830',1,'nc::arccos(const NdArray< dtype > &inArray)'],['../namespacenc.html#a0a87e0681917bdd812e139e6d6ea4bf1',1,'nc::arccos(dtype inValue) noexcept']]], + ['arccosh_1756',['arccosh',['../namespacenc.html#a725eab730b946eca5d197933b9f955fa',1,'nc::arccosh(dtype inValue) noexcept'],['../namespacenc.html#a9063e7275b83f3201f74a0014a9b54d5',1,'nc::arccosh(const NdArray< dtype > &inArray)']]], + ['arcsin_1757',['arcsin',['../namespacenc.html#a6d18d24b8a33ec7df0e845d6a430d5f2',1,'nc::arcsin(dtype inValue) noexcept'],['../namespacenc.html#a4b1b8fc9752c90328e3cadce151d6370',1,'nc::arcsin(const NdArray< dtype > &inArray)']]], + ['arcsinh_1758',['arcsinh',['../namespacenc.html#a74ebb0003f6cf0d0dc0fd8af1e983969',1,'nc::arcsinh(dtype inValue) noexcept'],['../namespacenc.html#abbf91db9344e5d1a53325990ef5535a0',1,'nc::arcsinh(const NdArray< dtype > &inArray)']]], + ['arctan_1759',['arctan',['../namespacenc.html#a0f63f816e660b0a4b3da191c8584a21a',1,'nc::arctan(dtype inValue) noexcept'],['../namespacenc.html#ac7080b26d0d4d849197ae10ce6d94a53',1,'nc::arctan(const NdArray< dtype > &inArray)']]], + ['arctan2_1760',['arctan2',['../namespacenc.html#abdec674ddb32540775e97e0fca6016aa',1,'nc::arctan2(dtype inY, dtype inX) noexcept'],['../namespacenc.html#a3d3c4c6b273e6eee45cf6359cf621980',1,'nc::arctan2(const NdArray< dtype > &inY, const NdArray< dtype > &inX)']]], + ['arctanh_1761',['arctanh',['../namespacenc.html#a01f43fad4032a2823fc3ed56137b93de',1,'nc::arctanh(dtype inValue) noexcept'],['../namespacenc.html#a1b71f03b842e44890312fa09ed1aa594',1,'nc::arctanh(const NdArray< dtype > &inArray)']]], + ['area_1762',['area',['../classnc_1_1polynomial_1_1_poly1d.html#adcbfe7e5fe2ed3b73bc5c81a73ece1cb',1,'nc::polynomial::Poly1d']]], + ['argmax_1763',['argmax',['../classnc_1_1_nd_array.html#ad4a41193c4f364a817f51ac7f6932b1f',1,'nc::NdArray::argmax()'],['../namespacenc.html#a33dac7f03588175031847327655f0b5d',1,'nc::argmax()']]], + ['argmin_1764',['argmin',['../classnc_1_1_nd_array.html#a62a38761f6f8fd005e225a5d3328e073',1,'nc::NdArray::argmin()'],['../namespacenc.html#ae26281f75850e9b94272228b56544bd5',1,'nc::argmin()']]], + ['argsort_1765',['argsort',['../classnc_1_1_nd_array.html#ae0ec4abb78faecc68f8d7e2198894196',1,'nc::NdArray::argsort()'],['../namespacenc.html#a88c217359f5e295649dd0cabe648ce6a',1,'nc::argsort(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], + ['argwhere_1766',['argwhere',['../namespacenc.html#aeddef72feba83e0c7d053093c74ed686',1,'nc']]], + ['around_1767',['around',['../namespacenc.html#a32e869df2216c793407d6addea9bf890',1,'nc::around(dtype inValue, uint8 inNumDecimals=0)'],['../namespacenc.html#a332fc87fa0bae7583b6a6ca3ceb8a8d4',1,'nc::around(const NdArray< dtype > &inArray, uint8 inNumDecimals=0)']]], + ['array_5fequal_1768',['array_equal',['../namespacenc.html#a0e8c1396cc01ccd9ec8ba549b6347e21',1,'nc']]], + ['array_5fequiv_1769',['array_equiv',['../namespacenc.html#ac7cfdea4ac1caa81eabdb5dfe33b90b8',1,'nc']]], + ['asarray_1770',['asarray',['../namespacenc.html#a430dab2027f102a689a812134e1f9655',1,'nc::asarray(const std::deque< dtype > &inDeque)'],['../namespacenc.html#a937b7ded9b21c92955e8ab137ad0b449',1,'nc::asarray(std::initializer_list< dtype > inList)'],['../namespacenc.html#a6a6f1083d41b9d345d6dae5093d7632b',1,'nc::asarray(std::initializer_list< std::initializer_list< dtype > > inList)'],['../namespacenc.html#ae2e0f4084163e9be08e324a6f3c10579',1,'nc::asarray(std::array< dtype, ArraySize > &inArray, bool copy=true)'],['../namespacenc.html#a35116b2646ecd25b63586fa987991f21',1,'nc::asarray(std::array< std::array< dtype, Dim1Size >, Dim0Size > &inArray, bool copy=true)'],['../namespacenc.html#a37aab9b1478f5d5abea3d02029fb2f2d',1,'nc::asarray(std::vector< dtype > &inVector, bool copy=true)'],['../namespacenc.html#a5ac399ecf8e26717e118be6d04164d31',1,'nc::asarray(const std::vector< std::vector< dtype >> &inVector)'],['../namespacenc.html#aab50ba883dd36c374c2b0d34c22f7bc1',1,'nc::asarray(std::vector< std::array< dtype, Dim1Size >> &inVector, bool copy=true)'],['../namespacenc.html#ac7a31dc08b1ea7cbdc71c22cad70e328',1,'nc::asarray(const std::deque< std::deque< dtype >> &inDeque)'],['../namespacenc.html#aaef8615d9fb222814f2849fb0915dd81',1,'nc::asarray(const std::set< dtype, dtypeComp > &inSet)'],['../namespacenc.html#a6280fea16d0710fe5e257c3d4cb3a85d',1,'nc::asarray(const std::list< dtype > &inList)'],['../namespacenc.html#aa0127b6d17a87db3f9deed78e90f54bd',1,'nc::asarray(Iterator iterBegin, Iterator iterEnd)'],['../namespacenc.html#a35bad04da98984458f265fc1dcd66b00',1,'nc::asarray(const dtype *iterBegin, const dtype *iterEnd)'],['../namespacenc.html#ac2c02eb2fd3b28ab815ab5d678649a13',1,'nc::asarray(const dtype *ptr, uint32 size)'],['../namespacenc.html#a49d751314929b591b3e1a9d79f81d6ff',1,'nc::asarray(const dtype *ptr, uint32 numRows, uint32 numCols)'],['../namespacenc.html#ae2b23e323b2d5e16933587ede8c5d115',1,'nc::asarray(dtype *ptr, uint32 size, Bool takeOwnership) noexcept'],['../namespacenc.html#a39a0d39388c73f10ab8b462108675e98',1,'nc::asarray(dtype *ptr, uint32 numRows, uint32 numCols, Bool takeOwnership) noexcept']]], + ['astype_1771',['astype',['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype() const'],['../classnc_1_1polynomial_1_1_poly1d.html#a0cf03b40603f490af100cdc65140ab9f',1,'nc::polynomial::Poly1d::astype()'],['../classnc_1_1_nd_array.html#a028372744b6c41150c339088b1d1a0dc',1,'nc::NdArray::astype()'],['../namespacenc.html#a07250b272d24387fab405d29c14082e4',1,'nc::astype()']]], + ['at_1772',['at',['../classnc_1_1_nd_array.html#a023bd56ee5fd8b58a4d0eb2acd71f67a',1,'nc::NdArray::at(const NdArray< int32 > &rowIndices, const NdArray< int32 > &colIndices) const'],['../classnc_1_1_nd_array.html#a7b5c383337c887ddf537708b29b64afd',1,'nc::NdArray::at(int32 inRowIndex, const Slice &inColSlice) const'],['../classnc_1_1_nd_array.html#a1537e603e458ad93bdde061e476305d6',1,'nc::NdArray::at(const Slice &inRowSlice, int32 inColIndex) const'],['../classnc_1_1_nd_array.html#adf7b073b906cd66e1c8a78df865b5679',1,'nc::NdArray::at(const Slice &inRowSlice, const Slice &inColSlice) const'],['../classnc_1_1_nd_array.html#a39dc0db6c17edef6642b55b4ce68df48',1,'nc::NdArray::at(const Slice &inSlice) const'],['../classnc_1_1_nd_array.html#a77807cb1488da10f8654dc6331426ca6',1,'nc::NdArray::at(int32 inRowIndex, int32 inColIndex) const'],['../classnc_1_1_nd_array.html#ade8b486f8c2ffce283abea6126cb3a63',1,'nc::NdArray::at(int32 inRowIndex, int32 inColIndex)'],['../classnc_1_1_nd_array.html#a10ef25d07c5761028091cda2c7f20d1f',1,'nc::NdArray::at(int32 inIndex) const'],['../classnc_1_1_nd_array.html#a3ae4c372620db7cf0211867dcb886b48',1,'nc::NdArray::at(int32 inIndex)'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a679db8e4b1f175af3db67c756c54d6b1',1,'nc::imageProcessing::ClusterMaker::at()'],['../classnc_1_1image_processing_1_1_cluster.html#a5a8d82d40cea566786e8f80ad72a6d10',1,'nc::imageProcessing::Cluster::at()'],['../classnc_1_1_data_cube.html#ab78c6fc396ea087819cdef43f316da4e',1,'nc::DataCube::at(uint32 inIndex) const'],['../classnc_1_1_data_cube.html#a8925f65b525c2b4fe04c711851b66828',1,'nc::DataCube::at(uint32 inIndex)']]], + ['average_1773',['average',['../namespacenc.html#a9025fe780f7cb82e65c21738672f1d41',1,'nc::average(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a08d310c2089324a7106ff509b862f5c7',1,'nc::average(const NdArray< dtype > &inArray, const NdArray< dtype > &inWeights, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a4d65d31c652a1ab639089ab948d0d557',1,'nc::average(const NdArray< std::complex< dtype >> &inArray, const NdArray< dtype > &inWeights, Axis inAxis=Axis::NONE)']]] ]; diff --git a/docs/doxygen/html/search/functions_1.html b/docs/doxygen/html/search/functions_1.html index ca6e64fd3..ef4088b89 100644 --- a/docs/doxygen/html/search/functions_1.html +++ b/docs/doxygen/html/search/functions_1.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_1.js b/docs/doxygen/html/search/functions_1.js index bca6b9a9b..60416a0a5 100644 --- a/docs/doxygen/html/search/functions_1.js +++ b/docs/doxygen/html/search/functions_1.js @@ -1,29 +1,31 @@ var searchData= [ - ['back_1699',['back',['../classnc_1_1_nd_array.html#a6bb650c9e28ff25c9b58c9f4f08d78bb',1,'nc::NdArray::back() const noexcept'],['../classnc_1_1_nd_array.html#a555efdc758b47b107c9c94593b6c2470',1,'nc::NdArray::back() noexcept'],['../classnc_1_1_nd_array.html#a563cf4dcecda39a0599cc13c87363677',1,'nc::NdArray::back(size_type row) const'],['../classnc_1_1_nd_array.html#a20fb268d9bd6c25dd70b6772f5ff5b89',1,'nc::NdArray::back(size_type row)'],['../classnc_1_1_vec3.html#a44e50b4b49011ec94548558600c0b17c',1,'nc::Vec3::back()'],['../classnc_1_1_data_cube.html#abc8860c7c767170d003da447e7618bee',1,'nc::DataCube::back()']]], - ['begin_1700',['begin',['../classnc_1_1_nd_array.html#a57fa866d30c298337bfc906ae73b6a40',1,'nc::NdArray::begin(size_type inRow)'],['../classnc_1_1_nd_array.html#ab3cdc446e55744b31d42dfb53fcdc7cf',1,'nc::NdArray::begin(size_type inRow) const'],['../classnc_1_1_nd_array.html#ae47b79d2054d83dc0c7deb617ab7d1c2',1,'nc::NdArray::begin() const noexcept'],['../classnc_1_1_nd_array.html#ab57282e02905eeb2a932eeb73983221f',1,'nc::NdArray::begin() noexcept'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a37c172d7253190e76b065ed2547c3020',1,'nc::imageProcessing::ClusterMaker::begin()'],['../classnc_1_1image_processing_1_1_cluster.html#a6e761b470453d5506015b9332b12e4a4',1,'nc::imageProcessing::Cluster::begin()'],['../classnc_1_1_data_cube.html#a430de05758db67815f957784b298b011',1,'nc::DataCube::begin()']]], - ['bernoilli_1701',['bernoilli',['../namespacenc_1_1special.html#a59caf35b816a219aa2782dd45df207ca',1,'nc::special::bernoilli(const NdArray< uint32 > &inArray)'],['../namespacenc_1_1special.html#a1af26e52a24fca2b572605ec4b2c1f1b',1,'nc::special::bernoilli(uint32 n)']]], - ['bernoulli_1702',['bernoulli',['../namespacenc_1_1random.html#a8d4a1a62fc03a44cccfa4012413bd70f',1,'nc::random::bernoulli(const Shape &inShape, double inP=0.5)'],['../namespacenc_1_1random.html#a1a5af4283601fd8663dcdc34599aede3',1,'nc::random::bernoulli(double inP=0.5)']]], - ['bessel_5fin_1703',['bessel_in',['../namespacenc_1_1special.html#a92141b6d9ffda6c68c7cb13dee3eae60',1,'nc::special::bessel_in(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#a6e9dbda70e7c0732d0b63ea389e5af49',1,'nc::special::bessel_in(dtype1 inV, dtype2 inX)']]], - ['bessel_5fin_5fprime_1704',['bessel_in_prime',['../namespacenc_1_1special.html#a85979b28c3403361a3e818c9cf8cdf16',1,'nc::special::bessel_in_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#a416353fb98d37ed2e1a8ab587a16f6f8',1,'nc::special::bessel_in_prime(dtype1 inV, dtype2 inX)']]], - ['bessel_5fjn_1705',['bessel_jn',['../namespacenc_1_1special.html#a3986d3b42ddcd747d40fb6772b49536e',1,'nc::special::bessel_jn(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#ab310a9680ad09bc52377898876a27620',1,'nc::special::bessel_jn(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], - ['bessel_5fjn_5fprime_1706',['bessel_jn_prime',['../namespacenc_1_1special.html#a3eef0d1e8d31602e816578f778feefb5',1,'nc::special::bessel_jn_prime(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a6e4139a3ecc85275c4690d01453366dc',1,'nc::special::bessel_jn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], - ['bessel_5fkn_1707',['bessel_kn',['../namespacenc_1_1special.html#a614d69a09535948c87124fe5662452dc',1,'nc::special::bessel_kn(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a5727fa899a61975ffcb79d84fd2d231b',1,'nc::special::bessel_kn(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], - ['bessel_5fkn_5fprime_1708',['bessel_kn_prime',['../namespacenc_1_1special.html#a98aad61d58f7d046091f6f569d2c97fb',1,'nc::special::bessel_kn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#aa3159d6cbb77b6bc1b913c25d969fa3c',1,'nc::special::bessel_kn_prime(dtype1 inV, dtype2 inX)']]], - ['bessel_5fyn_1709',['bessel_yn',['../namespacenc_1_1special.html#a2a215c5881fc0d98e444942d3a67ed5b',1,'nc::special::bessel_yn(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#a55bbc44ffde64dfb7af7a803250cd2a6',1,'nc::special::bessel_yn(dtype1 inV, dtype2 inX)']]], - ['bessel_5fyn_5fprime_1710',['bessel_yn_prime',['../namespacenc_1_1special.html#a129b71949a9659519aea36dc64d47020',1,'nc::special::bessel_yn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#a742272fb70f0b85164b61409ad3f464f',1,'nc::special::bessel_yn_prime(dtype1 inV, dtype2 inX)']]], - ['beta_1711',['beta',['../namespacenc_1_1random.html#a9cf5ddddc350278c76e077c67b5254ab',1,'nc::random::beta(dtype inAlpha, dtype inBeta)'],['../namespacenc_1_1random.html#ab7de94b949521786b7bde650b1e813fa',1,'nc::random::beta(const Shape &inShape, dtype inAlpha, dtype inBeta)'],['../namespacenc_1_1special.html#a9b74f451f99338c909b7f73df6e5bff6',1,'nc::special::beta(dtype1 a, dtype2 b)'],['../namespacenc_1_1special.html#ad2ac5c7add77e243dc39899c15ad93e6',1,'nc::special::beta(const NdArray< dtype1 > &inArrayA, const NdArray< dtype2 > &inArrayB)']]], - ['binaryrepr_1712',['binaryRepr',['../namespacenc.html#a8c8a7dbf208bb2d31983140598e7cebe',1,'nc']]], - ['bincount_1713',['bincount',['../namespacenc.html#a60bb0f9e8bed0fd6f5c0973cf3b918ca',1,'nc::bincount(const NdArray< dtype > &inArray, uint16 inMinLength=1)'],['../namespacenc.html#aa31a10ae8201c637ab3d203844b81904',1,'nc::bincount(const NdArray< dtype > &inArray, const NdArray< dtype > &inWeights, uint16 inMinLength=1)']]], - ['binomial_1714',['binomial',['../namespacenc_1_1random.html#a13657004ec565f15648a520e3d060002',1,'nc::random::binomial(dtype inN, double inP=0.5)'],['../namespacenc_1_1random.html#a83099ec22905c3ad69984a94d823a3d8',1,'nc::random::binomial(const Shape &inShape, dtype inN, double inP=0.5)']]], - ['bisection_1715',['Bisection',['../classnc_1_1roots_1_1_bisection.html#ae9ccce420ccf01a829b0138f264956cb',1,'nc::roots::Bisection::Bisection(const double epsilon, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_bisection.html#a05985162d3dac7a0919319c6cde74895',1,'nc::roots::Bisection::Bisection(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept']]], - ['bits_1716',['bits',['../classnc_1_1_dtype_info.html#a3f6aa0cc80e59dc331bc0e8dfe2f20bb',1,'nc::DtypeInfo::bits()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ae35570f524474adaa2315bead3f9be9e',1,'nc::DtypeInfo< std::complex< dtype > >::bits()']]], - ['bitwise_5fand_1717',['bitwise_and',['../namespacenc.html#a4a7fa01dbe15029314c6204f930c09af',1,'nc']]], - ['bitwise_5fnot_1718',['bitwise_not',['../namespacenc.html#a172096cafc950983ccbbb05eb5426722',1,'nc']]], - ['bitwise_5for_1719',['bitwise_or',['../namespacenc.html#a6203fb3929a9c533eba79b64342eaa3a',1,'nc']]], - ['bitwise_5fxor_1720',['bitwise_xor',['../namespacenc.html#a07c69919a1dc382fd2ae3ebf1b358319',1,'nc']]], - ['brent_1721',['Brent',['../classnc_1_1roots_1_1_brent.html#a1e9cf8f7be13c7bbb42a073ec9eb5369',1,'nc::roots::Brent::Brent(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_brent.html#aecf6662d1b7128d38796cf4ab99143f4',1,'nc::roots::Brent::Brent(const double epsilon, std::function< double(double)> f) noexcept']]], - ['byteswap_1722',['byteswap',['../classnc_1_1_nd_array.html#a2d3f796540ca2966cd2964a358627630',1,'nc::NdArray']]], - ['byteswap_1723',['byteSwap',['../namespacenc_1_1endian.html#a28d96487f9ac66755e2dd4925a459e0d',1,'nc::endian']]], - ['byteswap_1724',['byteswap',['../namespacenc.html#a244a5b96158e15e74e2cc1e54c17edff',1,'nc']]] + ['back_1774',['back',['../classnc_1_1_data_cube.html#abc8860c7c767170d003da447e7618bee',1,'nc::DataCube::back()'],['../classnc_1_1_nd_array.html#a6bb650c9e28ff25c9b58c9f4f08d78bb',1,'nc::NdArray::back() const noexcept'],['../classnc_1_1_nd_array.html#a555efdc758b47b107c9c94593b6c2470',1,'nc::NdArray::back() noexcept'],['../classnc_1_1_nd_array.html#a563cf4dcecda39a0599cc13c87363677',1,'nc::NdArray::back(size_type row) const'],['../classnc_1_1_nd_array.html#a20fb268d9bd6c25dd70b6772f5ff5b89',1,'nc::NdArray::back(size_type row)'],['../classnc_1_1_vec3.html#a44e50b4b49011ec94548558600c0b17c',1,'nc::Vec3::back()']]], + ['bartlett_1775',['bartlett',['../namespacenc.html#a594225660881a1cd0caabba4946c07d4',1,'nc']]], + ['begin_1776',['begin',['../classnc_1_1_data_cube.html#a430de05758db67815f957784b298b011',1,'nc::DataCube::begin()'],['../classnc_1_1image_processing_1_1_cluster.html#a6e761b470453d5506015b9332b12e4a4',1,'nc::imageProcessing::Cluster::begin()'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a37c172d7253190e76b065ed2547c3020',1,'nc::imageProcessing::ClusterMaker::begin()'],['../classnc_1_1_nd_array.html#ab57282e02905eeb2a932eeb73983221f',1,'nc::NdArray::begin() noexcept'],['../classnc_1_1_nd_array.html#a57fa866d30c298337bfc906ae73b6a40',1,'nc::NdArray::begin(size_type inRow)'],['../classnc_1_1_nd_array.html#ae47b79d2054d83dc0c7deb617ab7d1c2',1,'nc::NdArray::begin() const noexcept'],['../classnc_1_1_nd_array.html#ab3cdc446e55744b31d42dfb53fcdc7cf',1,'nc::NdArray::begin(size_type inRow) const']]], + ['bernoilli_1777',['bernoilli',['../namespacenc_1_1special.html#a1af26e52a24fca2b572605ec4b2c1f1b',1,'nc::special::bernoilli(uint32 n)'],['../namespacenc_1_1special.html#a59caf35b816a219aa2782dd45df207ca',1,'nc::special::bernoilli(const NdArray< uint32 > &inArray)']]], + ['bernoulli_1778',['bernoulli',['../namespacenc_1_1random.html#a1a5af4283601fd8663dcdc34599aede3',1,'nc::random::bernoulli(double inP=0.5)'],['../namespacenc_1_1random.html#a8d4a1a62fc03a44cccfa4012413bd70f',1,'nc::random::bernoulli(const Shape &inShape, double inP=0.5)']]], + ['bessel_5fin_1779',['bessel_in',['../namespacenc_1_1special.html#a6e9dbda70e7c0732d0b63ea389e5af49',1,'nc::special::bessel_in(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a92141b6d9ffda6c68c7cb13dee3eae60',1,'nc::special::bessel_in(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['bessel_5fin_5fprime_1780',['bessel_in_prime',['../namespacenc_1_1special.html#a85979b28c3403361a3e818c9cf8cdf16',1,'nc::special::bessel_in_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#a416353fb98d37ed2e1a8ab587a16f6f8',1,'nc::special::bessel_in_prime(dtype1 inV, dtype2 inX)']]], + ['bessel_5fjn_1781',['bessel_jn',['../namespacenc_1_1special.html#a3986d3b42ddcd747d40fb6772b49536e',1,'nc::special::bessel_jn(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#ab310a9680ad09bc52377898876a27620',1,'nc::special::bessel_jn(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['bessel_5fjn_5fprime_1782',['bessel_jn_prime',['../namespacenc_1_1special.html#a3eef0d1e8d31602e816578f778feefb5',1,'nc::special::bessel_jn_prime(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a6e4139a3ecc85275c4690d01453366dc',1,'nc::special::bessel_jn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['bessel_5fkn_1783',['bessel_kn',['../namespacenc_1_1special.html#a614d69a09535948c87124fe5662452dc',1,'nc::special::bessel_kn(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a5727fa899a61975ffcb79d84fd2d231b',1,'nc::special::bessel_kn(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['bessel_5fkn_5fprime_1784',['bessel_kn_prime',['../namespacenc_1_1special.html#aa3159d6cbb77b6bc1b913c25d969fa3c',1,'nc::special::bessel_kn_prime(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a98aad61d58f7d046091f6f569d2c97fb',1,'nc::special::bessel_kn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['bessel_5fyn_1785',['bessel_yn',['../namespacenc_1_1special.html#a2a215c5881fc0d98e444942d3a67ed5b',1,'nc::special::bessel_yn(dtype1 inV, const NdArray< dtype2 > &inArrayX)'],['../namespacenc_1_1special.html#a55bbc44ffde64dfb7af7a803250cd2a6',1,'nc::special::bessel_yn(dtype1 inV, dtype2 inX)']]], + ['bessel_5fyn_5fprime_1786',['bessel_yn_prime',['../namespacenc_1_1special.html#a742272fb70f0b85164b61409ad3f464f',1,'nc::special::bessel_yn_prime(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a129b71949a9659519aea36dc64d47020',1,'nc::special::bessel_yn_prime(dtype1 inV, const NdArray< dtype2 > &inArrayX)']]], + ['beta_1787',['beta',['../namespacenc_1_1special.html#ad2ac5c7add77e243dc39899c15ad93e6',1,'nc::special::beta(const NdArray< dtype1 > &inArrayA, const NdArray< dtype2 > &inArrayB)'],['../namespacenc_1_1special.html#a9b74f451f99338c909b7f73df6e5bff6',1,'nc::special::beta(dtype1 a, dtype2 b)'],['../namespacenc_1_1random.html#ab7de94b949521786b7bde650b1e813fa',1,'nc::random::beta(const Shape &inShape, dtype inAlpha, dtype inBeta)'],['../namespacenc_1_1random.html#a9cf5ddddc350278c76e077c67b5254ab',1,'nc::random::beta(dtype inAlpha, dtype inBeta)']]], + ['binaryrepr_1788',['binaryRepr',['../namespacenc.html#a8c8a7dbf208bb2d31983140598e7cebe',1,'nc']]], + ['bincount_1789',['bincount',['../namespacenc.html#a60bb0f9e8bed0fd6f5c0973cf3b918ca',1,'nc::bincount(const NdArray< dtype > &inArray, uint16 inMinLength=1)'],['../namespacenc.html#aa31a10ae8201c637ab3d203844b81904',1,'nc::bincount(const NdArray< dtype > &inArray, const NdArray< dtype > &inWeights, uint16 inMinLength=1)']]], + ['binomial_1790',['binomial',['../namespacenc_1_1random.html#a13657004ec565f15648a520e3d060002',1,'nc::random::binomial(dtype inN, double inP=0.5)'],['../namespacenc_1_1random.html#a83099ec22905c3ad69984a94d823a3d8',1,'nc::random::binomial(const Shape &inShape, dtype inN, double inP=0.5)']]], + ['bisection_1791',['Bisection',['../classnc_1_1roots_1_1_bisection.html#ae9ccce420ccf01a829b0138f264956cb',1,'nc::roots::Bisection::Bisection(const double epsilon, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_bisection.html#a05985162d3dac7a0919319c6cde74895',1,'nc::roots::Bisection::Bisection(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept']]], + ['bits_1792',['bits',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ae35570f524474adaa2315bead3f9be9e',1,'nc::DtypeInfo< std::complex< dtype > >::bits()'],['../classnc_1_1_dtype_info.html#a3f6aa0cc80e59dc331bc0e8dfe2f20bb',1,'nc::DtypeInfo::bits()']]], + ['bitwise_5fand_1793',['bitwise_and',['../namespacenc.html#a4a7fa01dbe15029314c6204f930c09af',1,'nc']]], + ['bitwise_5fnot_1794',['bitwise_not',['../namespacenc.html#a172096cafc950983ccbbb05eb5426722',1,'nc']]], + ['bitwise_5for_1795',['bitwise_or',['../namespacenc.html#a6203fb3929a9c533eba79b64342eaa3a',1,'nc']]], + ['bitwise_5fxor_1796',['bitwise_xor',['../namespacenc.html#a07c69919a1dc382fd2ae3ebf1b358319',1,'nc']]], + ['blackman_1797',['blackman',['../namespacenc.html#aab31b376c91a94e877f236177dbab4d0',1,'nc']]], + ['brent_1798',['Brent',['../classnc_1_1roots_1_1_brent.html#a1e9cf8f7be13c7bbb42a073ec9eb5369',1,'nc::roots::Brent::Brent(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_brent.html#aecf6662d1b7128d38796cf4ab99143f4',1,'nc::roots::Brent::Brent(const double epsilon, std::function< double(double)> f) noexcept']]], + ['byteswap_1799',['byteswap',['../classnc_1_1_nd_array.html#a2d3f796540ca2966cd2964a358627630',1,'nc::NdArray']]], + ['byteswap_1800',['byteSwap',['../namespacenc_1_1endian.html#a28d96487f9ac66755e2dd4925a459e0d',1,'nc::endian']]], + ['byteswap_1801',['byteswap',['../namespacenc.html#a244a5b96158e15e74e2cc1e54c17edff',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/functions_10.html b/docs/doxygen/html/search/functions_10.html index 3cf61c9dc..1bdc12572 100644 --- a/docs/doxygen/html/search/functions_10.html +++ b/docs/doxygen/html/search/functions_10.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_10.js b/docs/doxygen/html/search/functions_10.js index 509090ece..0abcf6653 100644 --- a/docs/doxygen/html/search/functions_10.js +++ b/docs/doxygen/html/search/functions_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['quaternion_2084',['Quaternion',['../classnc_1_1rotations_1_1_quaternion.html#a3b6901fb3a079eb9249bd1bf3098c36c',1,'nc::rotations::Quaternion::Quaternion()=default'],['../classnc_1_1rotations_1_1_quaternion.html#a8c498c295071b8b787902044bf87d34d',1,'nc::rotations::Quaternion::Quaternion(double roll, double pitch, double yaw) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a3ba2fb2c68554ec78a0957dc1fd7752d',1,'nc::rotations::Quaternion::Quaternion(double inI, double inJ, double inK, double inS) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#addcc7fb7b4acd4201e7f5b90ef207f4d',1,'nc::rotations::Quaternion::Quaternion(const NdArray< double > &inArray)'],['../classnc_1_1rotations_1_1_quaternion.html#abbacae2cb36d4f7e93e1cf130f8ca6b4',1,'nc::rotations::Quaternion::Quaternion(const Vec3 &inAxis, double inAngle) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a81b7db9d5e593a61272e09ce7dcc1325',1,'nc::rotations::Quaternion::Quaternion(const NdArray< double > &inAxis, double inAngle)']]] + ['quaternion_2186',['Quaternion',['../classnc_1_1rotations_1_1_quaternion.html#a3b6901fb3a079eb9249bd1bf3098c36c',1,'nc::rotations::Quaternion::Quaternion()=default'],['../classnc_1_1rotations_1_1_quaternion.html#a8c498c295071b8b787902044bf87d34d',1,'nc::rotations::Quaternion::Quaternion(double roll, double pitch, double yaw) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a3ba2fb2c68554ec78a0957dc1fd7752d',1,'nc::rotations::Quaternion::Quaternion(double inI, double inJ, double inK, double inS) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#addcc7fb7b4acd4201e7f5b90ef207f4d',1,'nc::rotations::Quaternion::Quaternion(const NdArray< double > &inArray)'],['../classnc_1_1rotations_1_1_quaternion.html#abbacae2cb36d4f7e93e1cf130f8ca6b4',1,'nc::rotations::Quaternion::Quaternion(const Vec3 &inAxis, double inAngle) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a81b7db9d5e593a61272e09ce7dcc1325',1,'nc::rotations::Quaternion::Quaternion(const NdArray< double > &inAxis, double inAngle)']]] ]; diff --git a/docs/doxygen/html/search/functions_11.html b/docs/doxygen/html/search/functions_11.html index 22dd78b23..188076ef2 100644 --- a/docs/doxygen/html/search/functions_11.html +++ b/docs/doxygen/html/search/functions_11.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_11.js b/docs/doxygen/html/search/functions_11.js index 0f4a0e286..d6381908e 100644 --- a/docs/doxygen/html/search/functions_11.js +++ b/docs/doxygen/html/search/functions_11.js @@ -1,48 +1,47 @@ var searchData= [ - ['ra_2085',['RA',['../classnc_1_1coordinates_1_1_r_a.html#ab14fd57fb6ab65c4d8ca668d549a507f',1,'nc::coordinates::RA::RA(double inDegrees)'],['../classnc_1_1coordinates_1_1_r_a.html#a7566e8350b9075ae0f0406fce26b7900',1,'nc::coordinates::RA::RA(uint8 inHours, uint8 inMinutes, double inSeconds) noexcept']]], - ['ra_2086',['ra',['../classnc_1_1coordinates_1_1_coordinate.html#abf447494a1d0a769af81aeab79041e5b',1,'nc::coordinates::Coordinate']]], - ['ra_2087',['RA',['../classnc_1_1coordinates_1_1_r_a.html#a632d150cc8009f1ab61053161046f553',1,'nc::coordinates::RA']]], - ['rad2deg_2088',['rad2deg',['../namespacenc.html#a19a21c68cb53309ac33e9c1a7b5d2513',1,'nc::rad2deg(const NdArray< dtype > &inArray)'],['../namespacenc.html#a8c8fc041b633785104c583a8ce3d9cef',1,'nc::rad2deg(dtype inValue) noexcept']]], - ['radians_2089',['radians',['../namespacenc.html#ac0f2714a22ef5029abf0f3fee0028546',1,'nc::radians(dtype inValue) noexcept'],['../namespacenc.html#a746ecf69081dec55ceb2647726ee106b',1,'nc::radians(const NdArray< dtype > &inArray)'],['../classnc_1_1coordinates_1_1_r_a.html#a8a9f875774dd8375cbc72c7fbfbebc2a',1,'nc::coordinates::RA::radians()'],['../classnc_1_1coordinates_1_1_dec.html#af80282ccfb04054bbccb98735a28ac46',1,'nc::coordinates::Dec::radians()']]], - ['radianseperation_2090',['radianSeperation',['../classnc_1_1coordinates_1_1_coordinate.html#ae01f4143ae771a0f8bccefc4bba78b86',1,'nc::coordinates::Coordinate::radianSeperation(const NdArray< double > &inVector) const'],['../classnc_1_1coordinates_1_1_coordinate.html#a169974783c87c9bbc89ccb4ea2ea4123',1,'nc::coordinates::Coordinate::radianSeperation(const Coordinate &inOtherCoordinate) const'],['../namespacenc_1_1coordinates.html#aa009e573b47b51d34d3aae0b152566c8',1,'nc::coordinates::radianSeperation(const Coordinate &inCoordinate1, const Coordinate &inCoordinate2)'],['../namespacenc_1_1coordinates.html#a712fd847123cfde7948c36ca59c6a435',1,'nc::coordinates::radianSeperation(const NdArray< double > &inVector1, const NdArray< double > &inVector2)']]], - ['rand_2091',['rand',['../namespacenc_1_1random.html#a0f5694167e15a8bc566a3fa6f842c3b4',1,'nc::random::rand()'],['../namespacenc_1_1random.html#a4552f49c72dc1a4d8426643fce14f214',1,'nc::random::rand(const Shape &inShape)']]], - ['randfloat_2092',['randFloat',['../namespacenc_1_1random.html#a531b5487f2f3e54fab878340277f7283',1,'nc::random::randFloat(const Shape &inShape, dtype inLow, dtype inHigh=0.0)'],['../namespacenc_1_1random.html#a4a261ae2a0f7783f2a5262a22b18412f',1,'nc::random::randFloat(dtype inLow, dtype inHigh=0.0)']]], - ['randint_2093',['randInt',['../namespacenc_1_1random.html#a43201ec4ec8e0c99041647ab45ac0133',1,'nc::random::randInt(dtype inLow, dtype inHigh=0)'],['../namespacenc_1_1random.html#a2842db744ad52ca905a48cd281934fd3',1,'nc::random::randInt(const Shape &inShape, dtype inLow, dtype inHigh=0)']]], - ['randn_2094',['randN',['../namespacenc_1_1random.html#aeffa74d48c1fb2603f83eaa358f17501',1,'nc::random::randN()'],['../namespacenc_1_1random.html#a3c6b8fb355a9ec0bd4c9e9bb8062d1f2',1,'nc::random::randN(const Shape &inShape)']]], - ['rankfilter_2095',['rankFilter',['../namespacenc_1_1filter.html#a0c2cbe33d4d1ef4f6a1a10320db1c059',1,'nc::filter']]], - ['rankfilter1d_2096',['rankFilter1d',['../namespacenc_1_1filter.html#ac46eab01f172d2fb3818e0d1cfaf1274',1,'nc::filter']]], - ['ravel_2097',['ravel',['../namespacenc.html#a3e7af5d797200117ddc5e5e3e2a46ee9',1,'nc::ravel()'],['../classnc_1_1_nd_array.html#aeca85f2279281bd389225a76e23e1c45',1,'nc::NdArray::ravel() noexcept']]], - ['rbegin_2098',['rbegin',['../classnc_1_1_nd_array.html#a06b5c7ba13ae9f8750bca6d5f3803c73',1,'nc::NdArray::rbegin() noexcept'],['../classnc_1_1_nd_array.html#a9f983aabd3568e7bd1be0a0c4e2b881d',1,'nc::NdArray::rbegin(size_type inRow) const'],['../classnc_1_1_nd_array.html#ad779b3d2a2f094370be77e515533f143',1,'nc::NdArray::rbegin() const noexcept'],['../classnc_1_1_nd_array.html#a2aa9a0589da3c0b19b1b413e71f65667',1,'nc::NdArray::rbegin(size_type inRow)']]], - ['rcolbegin_2099',['rcolbegin',['../classnc_1_1_nd_array.html#a5f70273a5bbff4f0b0c5086649939301',1,'nc::NdArray::rcolbegin(size_type inCol) const'],['../classnc_1_1_nd_array.html#a012f1203a072caeba4221aaa3c044186',1,'nc::NdArray::rcolbegin() const noexcept'],['../classnc_1_1_nd_array.html#a56704aea2c006973065aaa2848faa7fb',1,'nc::NdArray::rcolbegin(size_type inCol)'],['../classnc_1_1_nd_array.html#a48fb313ad0eb8126c338a319a5a2fd98',1,'nc::NdArray::rcolbegin() noexcept']]], - ['rcolend_2100',['rcolend',['../classnc_1_1_nd_array.html#ad5f870f49c9601930423258dcc723c8e',1,'nc::NdArray::rcolend() noexcept'],['../classnc_1_1_nd_array.html#a434f10a7956f425882fbbbc90038e4cb',1,'nc::NdArray::rcolend(size_type inCol)'],['../classnc_1_1_nd_array.html#a2d5976e4cd61862c74dce30c94f8fb87',1,'nc::NdArray::rcolend() const noexcept'],['../classnc_1_1_nd_array.html#a51e2cddde9482a27bf73fa308e0268c6',1,'nc::NdArray::rcolend(size_type inCol) const']]], - ['real_2101',['real',['../namespacenc.html#af7cf60663e018e25b1b59016af7e8967',1,'nc::real(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a74174a26b4b6db41951d9ce4222ea724',1,'nc::real(const std::complex< dtype > &inValue)']]], - ['reciprocal_2102',['reciprocal',['../namespacenc.html#ac3d266878661a694e99329ab16fa5d25',1,'nc::reciprocal(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#af0dd0542b322f7f4f8124d13d25cf50e',1,'nc::reciprocal(const NdArray< dtype > &inArray)']]], - ['reflect1d_2103',['reflect1d',['../namespacenc_1_1filter_1_1boundary.html#ac423cb3e19b12651c02c2c16d0723b3f',1,'nc::filter::boundary']]], - ['reflect2d_2104',['reflect2d',['../namespacenc_1_1filter_1_1boundary.html#add9a7d70820161e370ecd37212b1f397',1,'nc::filter::boundary']]], - ['remainder_2105',['remainder',['../namespacenc.html#a12bfc5b4d937aa0366b70fb15270bd41',1,'nc::remainder(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#a14fb9f7c88fca02b0ef3f5ebd04d9099',1,'nc::remainder(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['rend_2106',['rend',['../classnc_1_1_nd_array.html#a92c90b8671a637ec7d7821f6e8bdfa56',1,'nc::NdArray::rend() noexcept'],['../classnc_1_1_nd_array.html#a9047b67188b652c471db37731659c598',1,'nc::NdArray::rend(size_type inRow)'],['../classnc_1_1_nd_array.html#a59de727a0db449ca5a28d436c9cec165',1,'nc::NdArray::rend() const noexcept'],['../classnc_1_1_nd_array.html#a93f962a3badfd82da685a2d7fdf006aa',1,'nc::NdArray::rend(size_type inRow) const']]], - ['repeat_2107',['repeat',['../classnc_1_1_nd_array.html#a7d72328d5853baedb1644ae387ed3331',1,'nc::NdArray::repeat(const Shape &inRepeatShape) const'],['../classnc_1_1_nd_array.html#acd2185e49f9cbe68b3d3fe6cef552d34',1,'nc::NdArray::repeat(uint32 inNumRows, uint32 inNumCols) const'],['../namespacenc.html#a5aaf1657514116d3556183665983e02a',1,'nc::repeat(const NdArray< dtype > &inArray, const Shape &inRepeatShape)'],['../namespacenc.html#a29f4287edbe473e6039e4566adfd3ea4',1,'nc::repeat(const NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)']]], - ['replace_2108',['replace',['../namespacenc_1_1stl__algorithms.html#aa8d46043c9c62a348687ef8aa0a3286b',1,'nc::stl_algorithms::replace()'],['../namespacenc.html#a8e35a8cdb9a2a053820c58d2a9eab4e2',1,'nc::replace()'],['../classnc_1_1_nd_array.html#aefaba20fd8cf6710714340ea9733f1d5',1,'nc::NdArray::replace()']]], - ['resetnumberofiterations_2109',['resetNumberOfIterations',['../classnc_1_1roots_1_1_iteration.html#a85e79a4794bc3a6ac6bc3564956737a2',1,'nc::roots::Iteration']]], - ['reshape_2110',['reshape',['../namespacenc.html#a45d9fc095ecf7a127211c507c03d95db',1,'nc::reshape()'],['../classnc_1_1_nd_array.html#aa646e053a4fcd7ef3356add1edb4240d',1,'nc::NdArray::reshape(int32 inNumRows, int32 inNumCols)'],['../classnc_1_1_nd_array.html#a81992957eaa4cf2da430e12296af79c7',1,'nc::NdArray::reshape(const Shape &inShape)'],['../classnc_1_1_nd_array.html#ace0dfa53f15057e5f505a41b67f000bb',1,'nc::NdArray::reshape(size_type inSize)'],['../namespacenc.html#a5fb8d978dec93ab8a07849b5dc0d2b06',1,'nc::reshape(NdArray< dtype > &inArray, uint32 inSize)'],['../namespacenc.html#a6858d6bf094cfeaa724b78133668d13d',1,'nc::reshape(NdArray< dtype > &inArray, int32 inNumRows, int32 inNumCols)']]], - ['resizefast_2111',['resizeFast',['../namespacenc.html#ac2bcb04348f201141d8f465e461269cc',1,'nc::resizeFast(NdArray< dtype > &inArray, const Shape &inNewShape)'],['../namespacenc.html#a4dcc5b3664678e2510ff1df693641619',1,'nc::resizeFast(NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)'],['../classnc_1_1_nd_array.html#a1f999dc4afd08a9bc9c696af66d3ccb3',1,'nc::NdArray::resizeFast(const Shape &inShape)'],['../classnc_1_1_nd_array.html#ac15af1559e8f8dcd8cd5930c5ce54377',1,'nc::NdArray::resizeFast(uint32 inNumRows, uint32 inNumCols)']]], - ['resizeslow_2112',['resizeSlow',['../namespacenc.html#acdf2d60461cf6779107dc00118b642f9',1,'nc::resizeSlow(NdArray< dtype > &inArray, const Shape &inNewShape)'],['../namespacenc.html#a845b9344102b55adc482616442765d93',1,'nc::resizeSlow(NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)'],['../classnc_1_1_nd_array.html#a9499c04345682f4bf0afd8a5d16df435',1,'nc::NdArray::resizeSlow(const Shape &inShape)'],['../classnc_1_1_nd_array.html#a091f587d753e4e4aec1bb6621ccbaa41',1,'nc::NdArray::resizeSlow(uint32 inNumRows, uint32 inNumCols)']]], - ['reverse_2113',['reverse',['../namespacenc_1_1stl__algorithms.html#a5334750b4a1bb38d3932bffcc32a71b4',1,'nc::stl_algorithms']]], - ['riemann_5fzeta_2114',['riemann_zeta',['../namespacenc_1_1special.html#a8d31d086f833496ad7eb98c5bd6304a2',1,'nc::special::riemann_zeta(dtype inValue)'],['../namespacenc_1_1special.html#a6a4ac80df3e9946630cf330d03cbbbd2',1,'nc::special::riemann_zeta(const NdArray< dtype > &inArray)']]], - ['right_2115',['right',['../classnc_1_1_vec2.html#ab84fdd231058aa0343e2249e209855bf',1,'nc::Vec2::right()'],['../classnc_1_1_vec3.html#af8862aed471260a45c7691c7c5c6b016',1,'nc::Vec3::right()']]], - ['right_5fshift_2116',['right_shift',['../namespacenc.html#ad66d86cf7f33128b1d7540ac7cde9f75',1,'nc']]], - ['rint_2117',['rint',['../namespacenc.html#ae37c534819fb5756874bf8972df7e2fa',1,'nc::rint(const NdArray< dtype > &inArray)'],['../namespacenc.html#a9ba33527dbca7d5482cf88899abd827d',1,'nc::rint(dtype inValue) noexcept']]], - ['rms_2118',['rms',['../namespacenc.html#a4e858c717929038ef196af3c4b4c53ae',1,'nc::rms(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a0da200d1221a9b1c526de48ccba57258',1,'nc::rms(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], - ['rodriguesrotation_2119',['rodriguesRotation',['../namespacenc_1_1rotations.html#ae7d7397eec3edcfbd8b6b9784ad2fd1c',1,'nc::rotations::rodriguesRotation(const Vec3 &k, double theta, const Vec3 &v) noexcept'],['../namespacenc_1_1rotations.html#ab0fbd9345e707b6efb023ec9b354fbb5',1,'nc::rotations::rodriguesRotation(const NdArray< dtype > &k, double theta, const NdArray< dtype > &v)']]], - ['roll_2120',['roll',['../classnc_1_1rotations_1_1_d_c_m.html#ac562518ebdec1ce36cf8897a16f16fca',1,'nc::rotations::DCM::roll()'],['../classnc_1_1rotations_1_1_quaternion.html#a26f2a9303f0521ee36d92467ab45e3ab',1,'nc::rotations::Quaternion::roll()'],['../namespacenc.html#a57ce5ac638626e5718c13f756af23bf2',1,'nc::roll()']]], - ['romberg_2121',['romberg',['../namespacenc_1_1integrate.html#a5406412619aa59539dd19f62f0be8caf',1,'nc::integrate']]], - ['rot90_2122',['rot90',['../namespacenc.html#a2f52b32644f8f4da903e9c096d283da6',1,'nc']]], - ['rotate_2123',['rotate',['../namespacenc_1_1stl__algorithms.html#acfc1538e29a04fe5158405c710e5eaa7',1,'nc::stl_algorithms::rotate()'],['../classnc_1_1rotations_1_1_quaternion.html#a2e19c4d0b48d7f73e0aa273d85435370',1,'nc::rotations::Quaternion::rotate(const NdArray< double > &inVector) const'],['../classnc_1_1rotations_1_1_quaternion.html#a382d4e4c045bce131c5cce634ed077c7',1,'nc::rotations::Quaternion::rotate(const Vec3 &inVec3) const']]], - ['round_2124',['round',['../classnc_1_1_nd_array.html#a13b0f7af99772cfbca83b6734fbef04d',1,'nc::NdArray::round()'],['../namespacenc.html#af9c0b27b59e8a7be27130c9f470c4ef3',1,'nc::round(dtype inValue, uint8 inDecimals=0)'],['../namespacenc.html#a2a3a666494e7c95975d40ce80b156f0f',1,'nc::round(const NdArray< dtype > &inArray, uint8 inDecimals=0)']]], - ['row_2125',['row',['../classnc_1_1image_processing_1_1_centroid.html#aa3546b7b2430b51650f40fb344ab55a8',1,'nc::imageProcessing::Centroid::row()'],['../classnc_1_1_nd_array.html#ab24cce75b03204af139d8d32090cdae8',1,'nc::NdArray::row()']]], - ['row_5fstack_2126',['row_stack',['../namespacenc.html#a0d82f81eba247f95974bd20039bd56fc',1,'nc']]], - ['rowmax_2127',['rowMax',['../classnc_1_1image_processing_1_1_cluster.html#a58eea870dca4a5c61cfd4db24ea50267',1,'nc::imageProcessing::Cluster']]], - ['rowmin_2128',['rowMin',['../classnc_1_1image_processing_1_1_cluster.html#ac3f0c485f193a71a6caca9f553970383',1,'nc::imageProcessing::Cluster']]], - ['rslice_2129',['rSlice',['../classnc_1_1_nd_array.html#af0fb0a32e08456603964206487aebc88',1,'nc::NdArray']]] + ['ra_2187',['RA',['../classnc_1_1coordinates_1_1_r_a.html#a632d150cc8009f1ab61053161046f553',1,'nc::coordinates::RA::RA()=default'],['../classnc_1_1coordinates_1_1_r_a.html#ab14fd57fb6ab65c4d8ca668d549a507f',1,'nc::coordinates::RA::RA(double inDegrees)'],['../classnc_1_1coordinates_1_1_r_a.html#a7566e8350b9075ae0f0406fce26b7900',1,'nc::coordinates::RA::RA(uint8 inHours, uint8 inMinutes, double inSeconds) noexcept']]], + ['ra_2188',['ra',['../classnc_1_1coordinates_1_1_coordinate.html#abf447494a1d0a769af81aeab79041e5b',1,'nc::coordinates::Coordinate']]], + ['rad2deg_2189',['rad2deg',['../namespacenc.html#a8c8fc041b633785104c583a8ce3d9cef',1,'nc::rad2deg(dtype inValue) noexcept'],['../namespacenc.html#a19a21c68cb53309ac33e9c1a7b5d2513',1,'nc::rad2deg(const NdArray< dtype > &inArray)']]], + ['radians_2190',['radians',['../classnc_1_1coordinates_1_1_dec.html#af80282ccfb04054bbccb98735a28ac46',1,'nc::coordinates::Dec::radians()'],['../classnc_1_1coordinates_1_1_r_a.html#a8a9f875774dd8375cbc72c7fbfbebc2a',1,'nc::coordinates::RA::radians()'],['../namespacenc.html#a746ecf69081dec55ceb2647726ee106b',1,'nc::radians(const NdArray< dtype > &inArray)'],['../namespacenc.html#ac0f2714a22ef5029abf0f3fee0028546',1,'nc::radians(dtype inValue) noexcept']]], + ['radianseperation_2191',['radianSeperation',['../classnc_1_1coordinates_1_1_coordinate.html#a169974783c87c9bbc89ccb4ea2ea4123',1,'nc::coordinates::Coordinate::radianSeperation(const Coordinate &inOtherCoordinate) const'],['../classnc_1_1coordinates_1_1_coordinate.html#ae01f4143ae771a0f8bccefc4bba78b86',1,'nc::coordinates::Coordinate::radianSeperation(const NdArray< double > &inVector) const'],['../namespacenc_1_1coordinates.html#a712fd847123cfde7948c36ca59c6a435',1,'nc::coordinates::radianSeperation(const NdArray< double > &inVector1, const NdArray< double > &inVector2)'],['../namespacenc_1_1coordinates.html#aa009e573b47b51d34d3aae0b152566c8',1,'nc::coordinates::radianSeperation(const Coordinate &inCoordinate1, const Coordinate &inCoordinate2)']]], + ['rand_2192',['rand',['../namespacenc_1_1random.html#a4552f49c72dc1a4d8426643fce14f214',1,'nc::random::rand(const Shape &inShape)'],['../namespacenc_1_1random.html#a0f5694167e15a8bc566a3fa6f842c3b4',1,'nc::random::rand()']]], + ['randfloat_2193',['randFloat',['../namespacenc_1_1random.html#a4a261ae2a0f7783f2a5262a22b18412f',1,'nc::random::randFloat(dtype inLow, dtype inHigh=0.0)'],['../namespacenc_1_1random.html#a531b5487f2f3e54fab878340277f7283',1,'nc::random::randFloat(const Shape &inShape, dtype inLow, dtype inHigh=0.0)']]], + ['randint_2194',['randInt',['../namespacenc_1_1random.html#a2842db744ad52ca905a48cd281934fd3',1,'nc::random::randInt(const Shape &inShape, dtype inLow, dtype inHigh=0)'],['../namespacenc_1_1random.html#a43201ec4ec8e0c99041647ab45ac0133',1,'nc::random::randInt(dtype inLow, dtype inHigh=0)']]], + ['randn_2195',['randN',['../namespacenc_1_1random.html#a3c6b8fb355a9ec0bd4c9e9bb8062d1f2',1,'nc::random::randN(const Shape &inShape)'],['../namespacenc_1_1random.html#aeffa74d48c1fb2603f83eaa358f17501',1,'nc::random::randN()']]], + ['rankfilter_2196',['rankFilter',['../namespacenc_1_1filter.html#a0c2cbe33d4d1ef4f6a1a10320db1c059',1,'nc::filter']]], + ['rankfilter1d_2197',['rankFilter1d',['../namespacenc_1_1filter.html#ac46eab01f172d2fb3818e0d1cfaf1274',1,'nc::filter']]], + ['ravel_2198',['ravel',['../classnc_1_1_nd_array.html#aeca85f2279281bd389225a76e23e1c45',1,'nc::NdArray::ravel()'],['../namespacenc.html#a3e7af5d797200117ddc5e5e3e2a46ee9',1,'nc::ravel()']]], + ['rbegin_2199',['rbegin',['../classnc_1_1_nd_array.html#a06b5c7ba13ae9f8750bca6d5f3803c73',1,'nc::NdArray::rbegin() noexcept'],['../classnc_1_1_nd_array.html#a2aa9a0589da3c0b19b1b413e71f65667',1,'nc::NdArray::rbegin(size_type inRow)'],['../classnc_1_1_nd_array.html#ad779b3d2a2f094370be77e515533f143',1,'nc::NdArray::rbegin() const noexcept'],['../classnc_1_1_nd_array.html#a9f983aabd3568e7bd1be0a0c4e2b881d',1,'nc::NdArray::rbegin(size_type inRow) const']]], + ['rcolbegin_2200',['rcolbegin',['../classnc_1_1_nd_array.html#a48fb313ad0eb8126c338a319a5a2fd98',1,'nc::NdArray::rcolbegin() noexcept'],['../classnc_1_1_nd_array.html#a56704aea2c006973065aaa2848faa7fb',1,'nc::NdArray::rcolbegin(size_type inCol)'],['../classnc_1_1_nd_array.html#a012f1203a072caeba4221aaa3c044186',1,'nc::NdArray::rcolbegin() const noexcept'],['../classnc_1_1_nd_array.html#a5f70273a5bbff4f0b0c5086649939301',1,'nc::NdArray::rcolbegin(size_type inCol) const']]], + ['rcolend_2201',['rcolend',['../classnc_1_1_nd_array.html#ad5f870f49c9601930423258dcc723c8e',1,'nc::NdArray::rcolend() noexcept'],['../classnc_1_1_nd_array.html#a434f10a7956f425882fbbbc90038e4cb',1,'nc::NdArray::rcolend(size_type inCol)'],['../classnc_1_1_nd_array.html#a2d5976e4cd61862c74dce30c94f8fb87',1,'nc::NdArray::rcolend() const noexcept'],['../classnc_1_1_nd_array.html#a51e2cddde9482a27bf73fa308e0268c6',1,'nc::NdArray::rcolend(size_type inCol) const']]], + ['real_2202',['real',['../namespacenc.html#af7cf60663e018e25b1b59016af7e8967',1,'nc::real(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a74174a26b4b6db41951d9ce4222ea724',1,'nc::real(const std::complex< dtype > &inValue)']]], + ['reciprocal_2203',['reciprocal',['../namespacenc.html#ac3d266878661a694e99329ab16fa5d25',1,'nc::reciprocal(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#af0dd0542b322f7f4f8124d13d25cf50e',1,'nc::reciprocal(const NdArray< dtype > &inArray)']]], + ['reflect1d_2204',['reflect1d',['../namespacenc_1_1filter_1_1boundary.html#ac423cb3e19b12651c02c2c16d0723b3f',1,'nc::filter::boundary']]], + ['reflect2d_2205',['reflect2d',['../namespacenc_1_1filter_1_1boundary.html#add9a7d70820161e370ecd37212b1f397',1,'nc::filter::boundary']]], + ['remainder_2206',['remainder',['../namespacenc.html#a14fb9f7c88fca02b0ef3f5ebd04d9099',1,'nc::remainder(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a12bfc5b4d937aa0366b70fb15270bd41',1,'nc::remainder(dtype inValue1, dtype inValue2) noexcept']]], + ['rend_2207',['rend',['../classnc_1_1_nd_array.html#a92c90b8671a637ec7d7821f6e8bdfa56',1,'nc::NdArray::rend() noexcept'],['../classnc_1_1_nd_array.html#a9047b67188b652c471db37731659c598',1,'nc::NdArray::rend(size_type inRow)'],['../classnc_1_1_nd_array.html#a59de727a0db449ca5a28d436c9cec165',1,'nc::NdArray::rend() const noexcept'],['../classnc_1_1_nd_array.html#a93f962a3badfd82da685a2d7fdf006aa',1,'nc::NdArray::rend(size_type inRow) const']]], + ['repeat_2208',['repeat',['../classnc_1_1_nd_array.html#acd2185e49f9cbe68b3d3fe6cef552d34',1,'nc::NdArray::repeat(uint32 inNumRows, uint32 inNumCols) const'],['../classnc_1_1_nd_array.html#a7d72328d5853baedb1644ae387ed3331',1,'nc::NdArray::repeat(const Shape &inRepeatShape) const'],['../namespacenc.html#a5aaf1657514116d3556183665983e02a',1,'nc::repeat(const NdArray< dtype > &inArray, const Shape &inRepeatShape)'],['../namespacenc.html#a29f4287edbe473e6039e4566adfd3ea4',1,'nc::repeat(const NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)']]], + ['replace_2209',['replace',['../classnc_1_1_nd_array.html#aefaba20fd8cf6710714340ea9733f1d5',1,'nc::NdArray::replace()'],['../namespacenc_1_1stl__algorithms.html#aa8d46043c9c62a348687ef8aa0a3286b',1,'nc::stl_algorithms::replace()'],['../namespacenc.html#a8e35a8cdb9a2a053820c58d2a9eab4e2',1,'nc::replace()']]], + ['resetnumberofiterations_2210',['resetNumberOfIterations',['../classnc_1_1roots_1_1_iteration.html#a85e79a4794bc3a6ac6bc3564956737a2',1,'nc::roots::Iteration']]], + ['reshape_2211',['reshape',['../classnc_1_1_nd_array.html#ace0dfa53f15057e5f505a41b67f000bb',1,'nc::NdArray::reshape(size_type inSize)'],['../classnc_1_1_nd_array.html#aa646e053a4fcd7ef3356add1edb4240d',1,'nc::NdArray::reshape(int32 inNumRows, int32 inNumCols)'],['../classnc_1_1_nd_array.html#a81992957eaa4cf2da430e12296af79c7',1,'nc::NdArray::reshape(const Shape &inShape)'],['../namespacenc.html#a45d9fc095ecf7a127211c507c03d95db',1,'nc::reshape(NdArray< dtype > &inArray, const Shape &inNewShape)'],['../namespacenc.html#a5fb8d978dec93ab8a07849b5dc0d2b06',1,'nc::reshape(NdArray< dtype > &inArray, uint32 inSize)'],['../namespacenc.html#a6858d6bf094cfeaa724b78133668d13d',1,'nc::reshape(NdArray< dtype > &inArray, int32 inNumRows, int32 inNumCols)']]], + ['resizefast_2212',['resizeFast',['../classnc_1_1_nd_array.html#ac15af1559e8f8dcd8cd5930c5ce54377',1,'nc::NdArray::resizeFast(uint32 inNumRows, uint32 inNumCols)'],['../classnc_1_1_nd_array.html#a1f999dc4afd08a9bc9c696af66d3ccb3',1,'nc::NdArray::resizeFast(const Shape &inShape)'],['../namespacenc.html#ac2bcb04348f201141d8f465e461269cc',1,'nc::resizeFast(NdArray< dtype > &inArray, const Shape &inNewShape)'],['../namespacenc.html#a4dcc5b3664678e2510ff1df693641619',1,'nc::resizeFast(NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)']]], + ['resizeslow_2213',['resizeSlow',['../classnc_1_1_nd_array.html#a091f587d753e4e4aec1bb6621ccbaa41',1,'nc::NdArray::resizeSlow()'],['../namespacenc.html#a845b9344102b55adc482616442765d93',1,'nc::resizeSlow()'],['../classnc_1_1_nd_array.html#a9499c04345682f4bf0afd8a5d16df435',1,'nc::NdArray::resizeSlow()'],['../namespacenc.html#acdf2d60461cf6779107dc00118b642f9',1,'nc::resizeSlow()']]], + ['reverse_2214',['reverse',['../namespacenc_1_1stl__algorithms.html#a5334750b4a1bb38d3932bffcc32a71b4',1,'nc::stl_algorithms']]], + ['riemann_5fzeta_2215',['riemann_zeta',['../namespacenc_1_1special.html#a8d31d086f833496ad7eb98c5bd6304a2',1,'nc::special::riemann_zeta(dtype inValue)'],['../namespacenc_1_1special.html#a6a4ac80df3e9946630cf330d03cbbbd2',1,'nc::special::riemann_zeta(const NdArray< dtype > &inArray)']]], + ['right_2216',['right',['../classnc_1_1_vec3.html#af8862aed471260a45c7691c7c5c6b016',1,'nc::Vec3::right()'],['../classnc_1_1_vec2.html#ab84fdd231058aa0343e2249e209855bf',1,'nc::Vec2::right()']]], + ['right_5fshift_2217',['right_shift',['../namespacenc.html#ad66d86cf7f33128b1d7540ac7cde9f75',1,'nc']]], + ['rint_2218',['rint',['../namespacenc.html#a9ba33527dbca7d5482cf88899abd827d',1,'nc::rint(dtype inValue) noexcept'],['../namespacenc.html#ae37c534819fb5756874bf8972df7e2fa',1,'nc::rint(const NdArray< dtype > &inArray)']]], + ['rms_2219',['rms',['../namespacenc.html#a4e858c717929038ef196af3c4b4c53ae',1,'nc::rms(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a0da200d1221a9b1c526de48ccba57258',1,'nc::rms(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], + ['rodriguesrotation_2220',['rodriguesRotation',['../namespacenc_1_1rotations.html#ae7d7397eec3edcfbd8b6b9784ad2fd1c',1,'nc::rotations::rodriguesRotation(const Vec3 &k, double theta, const Vec3 &v) noexcept'],['../namespacenc_1_1rotations.html#ab0fbd9345e707b6efb023ec9b354fbb5',1,'nc::rotations::rodriguesRotation(const NdArray< dtype > &k, double theta, const NdArray< dtype > &v)']]], + ['roll_2221',['roll',['../classnc_1_1rotations_1_1_d_c_m.html#ac562518ebdec1ce36cf8897a16f16fca',1,'nc::rotations::DCM::roll()'],['../classnc_1_1rotations_1_1_quaternion.html#a26f2a9303f0521ee36d92467ab45e3ab',1,'nc::rotations::Quaternion::roll()'],['../namespacenc.html#a57ce5ac638626e5718c13f756af23bf2',1,'nc::roll()']]], + ['romberg_2222',['romberg',['../namespacenc_1_1integrate.html#a5406412619aa59539dd19f62f0be8caf',1,'nc::integrate']]], + ['rot90_2223',['rot90',['../namespacenc.html#a2f52b32644f8f4da903e9c096d283da6',1,'nc']]], + ['rotate_2224',['rotate',['../classnc_1_1rotations_1_1_quaternion.html#a2e19c4d0b48d7f73e0aa273d85435370',1,'nc::rotations::Quaternion::rotate(const NdArray< double > &inVector) const'],['../classnc_1_1rotations_1_1_quaternion.html#a382d4e4c045bce131c5cce634ed077c7',1,'nc::rotations::Quaternion::rotate(const Vec3 &inVec3) const'],['../namespacenc_1_1stl__algorithms.html#acfc1538e29a04fe5158405c710e5eaa7',1,'nc::stl_algorithms::rotate()']]], + ['round_2225',['round',['../classnc_1_1_nd_array.html#a13b0f7af99772cfbca83b6734fbef04d',1,'nc::NdArray::round()'],['../namespacenc.html#af9c0b27b59e8a7be27130c9f470c4ef3',1,'nc::round(dtype inValue, uint8 inDecimals=0)'],['../namespacenc.html#a2a3a666494e7c95975d40ce80b156f0f',1,'nc::round(const NdArray< dtype > &inArray, uint8 inDecimals=0)']]], + ['row_2226',['row',['../classnc_1_1_nd_array.html#ab24cce75b03204af139d8d32090cdae8',1,'nc::NdArray::row()'],['../classnc_1_1image_processing_1_1_centroid.html#aa3546b7b2430b51650f40fb344ab55a8',1,'nc::imageProcessing::Centroid::row()']]], + ['row_5fstack_2227',['row_stack',['../namespacenc.html#a0d82f81eba247f95974bd20039bd56fc',1,'nc']]], + ['rowmax_2228',['rowMax',['../classnc_1_1image_processing_1_1_cluster.html#a58eea870dca4a5c61cfd4db24ea50267',1,'nc::imageProcessing::Cluster']]], + ['rowmin_2229',['rowMin',['../classnc_1_1image_processing_1_1_cluster.html#ac3f0c485f193a71a6caca9f553970383',1,'nc::imageProcessing::Cluster']]], + ['rslice_2230',['rSlice',['../classnc_1_1_nd_array.html#af0fb0a32e08456603964206487aebc88',1,'nc::NdArray']]] ]; diff --git a/docs/doxygen/html/search/functions_12.html b/docs/doxygen/html/search/functions_12.html index cb20ca7b7..eb29d8f9a 100644 --- a/docs/doxygen/html/search/functions_12.html +++ b/docs/doxygen/html/search/functions_12.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_12.js b/docs/doxygen/html/search/functions_12.js index 914307a92..44869ea83 100644 --- a/docs/doxygen/html/search/functions_12.js +++ b/docs/doxygen/html/search/functions_12.js @@ -1,56 +1,56 @@ var searchData= [ - ['s_2130',['s',['../classnc_1_1rotations_1_1_quaternion.html#a075b6f1befef247f5d638c91e1a451fd',1,'nc::rotations::Quaternion::s()'],['../classnc_1_1linalg_1_1_s_v_d.html#a323915fbe7cbaabadef01ffa948d2f1a',1,'nc::linalg::SVD::s()']]], - ['secant_2131',['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']]], - ['seconds_2132',['seconds',['../classnc_1_1coordinates_1_1_dec.html#a2927e30c2059f09bd30be622cf9b52ea',1,'nc::coordinates::Dec::seconds()'],['../classnc_1_1coordinates_1_1_r_a.html#af0c9b649f60a70bbf421a6eb5b169cda',1,'nc::coordinates::RA::seconds()']]], - ['seed_2133',['seed',['../namespacenc_1_1random.html#a93fe76208181d041adb08a02de0966d8',1,'nc::random']]], - ['set_5fdifference_2134',['set_difference',['../namespacenc_1_1stl__algorithms.html#a8a145ff0f4cf32b64e7464347d1ea9b2',1,'nc::stl_algorithms::set_difference(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#a8cc83e2fb7a3d8302db0f4b19513ddd9',1,'nc::stl_algorithms::set_difference(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination)']]], - ['set_5fintersection_2135',['set_intersection',['../namespacenc_1_1stl__algorithms.html#ad9a963ad13c86117f01fe2960525e074',1,'nc::stl_algorithms::set_intersection(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#aa8ff8c5bb6003ff0f02a17deb4ced8e2',1,'nc::stl_algorithms::set_intersection(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination) noexcept']]], - ['set_5funion_2136',['set_union',['../namespacenc_1_1stl__algorithms.html#a33da2f830ebf2e7c04f1ac94e1ad20b7',1,'nc::stl_algorithms::set_union(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#a273ff7212f84bcd8de30e83ab0ae3bd1',1,'nc::stl_algorithms::set_union(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination) noexcept']]], - ['setdiff1d_2137',['setdiff1d',['../namespacenc.html#adb6b7ca658c4d613fe0c4a695ba3542b',1,'nc']]], - ['setname_2138',['setName',['../classnc_1_1_timer.html#a88dd680a63b38ae9989a40878a8fd65b',1,'nc::Timer']]], - ['shape_2139',['shape',['../classnc_1_1_nd_array.html#a2d1b4adfe3c9897ffe3dca45e357b2b4',1,'nc::NdArray::shape()'],['../namespacenc.html#ae2b224742bc8263190d451a44ebe5e34',1,'nc::shape()']]], - ['shape_2140',['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_2141',['shape',['../classnc_1_1_data_cube.html#a1e7e4ce08e0c57abb661a8f95192173e',1,'nc::DataCube']]], - ['shuffle_2142',['shuffle',['../namespacenc_1_1random.html#ad73d56152095ad55887c89f47490c070',1,'nc::random']]], - ['sign_2143',['sign',['../classnc_1_1coordinates_1_1_dec.html#ac551f7b1f2728f20fbdbd79dd00919f7',1,'nc::coordinates::Dec::sign()'],['../namespacenc.html#a4a5d98f334e0b50a3cf9c2718485e5e9',1,'nc::sign(dtype inValue) noexcept'],['../namespacenc.html#a22372b41fc480a7284967d2be4b87841',1,'nc::sign(const NdArray< dtype > &inArray)']]], - ['signbit_2144',['signbit',['../namespacenc.html#a09632f5c6c5d569ccfde17351811b3c0',1,'nc::signbit(const NdArray< dtype > &inArray)'],['../namespacenc.html#af6dcbdfea85cdc84b4ddcf6c978b71f1',1,'nc::signbit(dtype inValue) noexcept']]], - ['simpson_2145',['simpson',['../namespacenc_1_1integrate.html#aa7c55b05139ecfce5e5a9d0380df9eb1',1,'nc::integrate']]], - ['sin_2146',['sin',['../namespacenc.html#a3fa4e582cdeef0716309ad51378f2983',1,'nc::sin(dtype inValue) noexcept'],['../namespacenc.html#aff909cb0ae96644487adaedbbb498cea',1,'nc::sin(const NdArray< dtype > &inArray)']]], - ['sinc_2147',['sinc',['../namespacenc.html#aafe29b8d2e32e8e2af4d92074851b777',1,'nc::sinc(dtype inValue) noexcept'],['../namespacenc.html#a0c8e5bf6fca377445afd941d70bcac10',1,'nc::sinc(const NdArray< dtype > &inArray)']]], - ['sinh_2148',['sinh',['../namespacenc.html#a7672779bec72183de09ddc469739b385',1,'nc::sinh(dtype inValue) noexcept'],['../namespacenc.html#a8de43bfef3cdd2e1af1c521dcf3a2dcd',1,'nc::sinh(const NdArray< dtype > &inArray)']]], - ['size_2149',['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_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()']]], - ['sizez_2150',['sizeZ',['../classnc_1_1_data_cube.html#a6518d36db671db4053abffff92505c64',1,'nc::DataCube']]], - ['sleep_2151',['sleep',['../classnc_1_1_timer.html#a9fec514ed605a11c6e1c321041960d7e',1,'nc::Timer']]], - ['slerp_2152',['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_2153',['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']]], - ['slicez_2154',['sliceZ',['../classnc_1_1_data_cube.html#a3bc1ba8251f5e788155d6a01727d1644',1,'nc::DataCube::sliceZ(Slice inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a8164f497dd44a89d1c5a1aeb7ca92e55',1,'nc::DataCube::sliceZ(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#aacc3751540c1b3d79e177a6b93a383fb',1,'nc::DataCube::sliceZ(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a6e6629a0891235ea43e77389f93326cd',1,'nc::DataCube::sliceZ(int32 inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a71d00d236bd135a4a35212fb147ae905',1,'nc::DataCube::sliceZ(int32 inIndex, Slice inSliceZ) const']]], - ['slicezall_2155',['sliceZAll',['../classnc_1_1_data_cube.html#a7297568496398f9d80ceef1b9b955bfa',1,'nc::DataCube::sliceZAll(int32 inIndex) const'],['../classnc_1_1_data_cube.html#a0f149a9a6dfc3644a95c7741bbe60ca6',1,'nc::DataCube::sliceZAll(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#af8c15897cf2ff42ddd86648583aee686',1,'nc::DataCube::sliceZAll(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a1961f8bf37432ab59bba9a59206537bd',1,'nc::DataCube::sliceZAll(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a64c85bf44f454e917c635167e46301e9',1,'nc::DataCube::sliceZAll(Slice inRow, Slice inCol) const']]], - ['slicezallat_2156',['sliceZAllat',['../classnc_1_1_data_cube.html#a7dd2ceb0e7935647c31993c5db1d1d20',1,'nc::DataCube::sliceZAllat(int32 inIndex) const'],['../classnc_1_1_data_cube.html#aaf2cad6dc76e1342d72c8d0291062357',1,'nc::DataCube::sliceZAllat(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#ad404a350af85b9e99be4901c028ed487',1,'nc::DataCube::sliceZAllat(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#ae6f6216581c3824f862bad03fea73f45',1,'nc::DataCube::sliceZAllat(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a57aaf216577c8a696dbf1dbe6363297e',1,'nc::DataCube::sliceZAllat(Slice inRow, Slice inCol) const']]], - ['slicezat_2157',['sliceZat',['../classnc_1_1_data_cube.html#a6f6bfc2ed7ec485877f0266f906342be',1,'nc::DataCube::sliceZat(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a435a6f90ee141a790af7c04557396baf',1,'nc::DataCube::sliceZat(int32 inIndex, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a70d350f869a1831a401522667b65639a',1,'nc::DataCube::sliceZat(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a2c4ac09094f98ca9de7e6f02aa8956a3',1,'nc::DataCube::sliceZat(Slice inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a6075ed979ff9294f2ff0bd54bb928952',1,'nc::DataCube::sliceZat(int32 inRow, int32 inCol, Slice inSliceZ) const']]], - ['softmax_2158',['softmax',['../namespacenc_1_1special.html#a459176cc2a1b285e93c3ee5671294590',1,'nc::special']]], - ['solve_2159',['solve',['../namespacenc_1_1linalg.html#afe2a5221f8e22e671e9e6eb231516205',1,'nc::linalg::solve()'],['../classnc_1_1linalg_1_1_s_v_d.html#aa170c7ec6894fb30e115840d61bd58a1',1,'nc::linalg::SVD::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()']]], - ['sort_2160',['sort',['../namespacenc_1_1stl__algorithms.html#a1d75d47f198fcc3693e87806d6ea8715',1,'nc::stl_algorithms::sort(RandomIt first, RandomIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#a519432fa55645fab8162c354e387b1a6',1,'nc::stl_algorithms::sort(RandomIt first, RandomIt last, Compare comp) noexcept'],['../classnc_1_1_nd_array.html#a3c0a24c292c340c58a6da5526654f3bb',1,'nc::NdArray::sort()'],['../namespacenc.html#a8273e1ecb5eafba97b7ed5b8f10a6cdf',1,'nc::sort()']]], - ['spherical_5fbessel_5fjn_2161',['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_5fyn_2162',['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_5fhankel_5f1_2163',['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_5f2_2164',['spherical_hankel_2',['../namespacenc_1_1special.html#aa0181306ece55cbaf50c65da8d215542',1,'nc::special::spherical_hankel_2(dtype1 inV, const NdArray< dtype2 > &inArray)'],['../namespacenc_1_1special.html#a767d00adf7283b45bd3b7ea4aab6c5ff',1,'nc::special::spherical_hankel_2(dtype1 inV, dtype2 inX)']]], - ['spherical_5fharmonic_2165',['spherical_harmonic',['../namespacenc_1_1polynomial.html#aa5bb22676f3f43eda1e7c0af04da376a',1,'nc::polynomial']]], - ['spherical_5fharmonic_5fi_2166',['spherical_harmonic_i',['../namespacenc_1_1polynomial.html#a583c30981b9547a90ad7c33edbe041c1',1,'nc::polynomial']]], - ['spherical_5fharmonic_5fr_2167',['spherical_harmonic_r',['../namespacenc_1_1polynomial.html#a5ed971ca59899f372f28a53913796745',1,'nc::polynomial']]], - ['sqr_2168',['sqr',['../namespacenc_1_1utils.html#ae792e10a24b7e5b8291a6c31a28a4512',1,'nc::utils']]], - ['sqrt_2169',['sqrt',['../namespacenc.html#a941a5a1ffb61387495a6f23dc4036287',1,'nc::sqrt(dtype inValue) noexcept'],['../namespacenc.html#abb4086978f52185f25340b0ff57ca8f0',1,'nc::sqrt(const NdArray< dtype > &inArray)']]], - ['square_2170',['square',['../namespacenc.html#a282e72a93afe2e6554e0f17f21dd7b9e',1,'nc::square(dtype inValue) noexcept'],['../namespacenc.html#a104a8ffcdf7d3911fb6d4bbb847e2a1d',1,'nc::square(const NdArray< dtype > &inArray)']]], - ['stable_5fsort_2171',['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_2172',['stack',['../namespacenc.html#a656bb4b9fecf40f1f4194964be57c78b',1,'nc']]], - ['standardnormal_2173',['standardNormal',['../namespacenc_1_1random.html#acc9d03c66c1fa8b35dea3fa0a0f075e7',1,'nc::random::standardNormal()'],['../namespacenc_1_1random.html#a026e31e4ef305beb2bbb546817e44eb0',1,'nc::random::standardNormal(const Shape &inShape)']]], - ['stdev_2174',['stdev',['../namespacenc.html#ae197a8efaeeebe00c6e886b779ec1a43',1,'nc::stdev(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a60ac1ab2f35e50531ef0f12be00d89c8',1,'nc::stdev(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], - ['str_2175',['str',['../classnc_1_1coordinates_1_1_coordinate.html#a04a60dd7bc2ef5be41c8006e2797997f',1,'nc::coordinates::Coordinate::str()'],['../classnc_1_1coordinates_1_1_dec.html#a91ddbec1fadfdcc049930dc439da4608',1,'nc::coordinates::Dec::str()'],['../classnc_1_1coordinates_1_1_r_a.html#a37824a93eb9e0a02237d4e654040761b',1,'nc::coordinates::RA::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_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()']]], - ['studentt_2176',['studentT',['../namespacenc_1_1random.html#a9e8074cb89e2362b5ae485834f550217',1,'nc::random::studentT(dtype inDof)'],['../namespacenc_1_1random.html#a5c18c6c123083003f32344baeb0f4ad3',1,'nc::random::studentT(const Shape &inShape, dtype inDof)']]], - ['subtract_2177',['subtract',['../namespacenc.html#a8aae2ea3fcf6335997c10676fafcd1e5',1,'nc::subtract(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a29da51134625301935f0e1098111e74b',1,'nc::subtract(dtype value, const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a0499ac58fc4cfe52a2bba30f70376d84',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#acddd661c047325c1c0c473aa545011d9',1,'nc::subtract(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a7f2189bdc8a3718be82a8497cd2ea99d',1,'nc::subtract(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a8668e0f6416572f18cf0d8c2e008784a',1,'nc::subtract(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#a7851e0af8b7501f667e2d89738259191',1,'nc::subtract(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#afa4586729c62bfae485a6e7664ba7117',1,'nc::subtract(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#ae4be1086253a0b121695d9cabfcb86ce',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['sum_2178',['sum',['../classnc_1_1_nd_array.html#a467700098b002b5631c756ca0fd50cae',1,'nc::NdArray::sum()'],['../namespacenc.html#aa14c0f092bfdc980c656bf6bf58bfc67',1,'nc::sum()']]], - ['svd_2179',['svd',['../namespacenc_1_1linalg.html#acb38ad2613d50422afc539d005159055',1,'nc::linalg']]], - ['svd_2180',['SVD',['../classnc_1_1linalg_1_1_s_v_d.html#ae0561bbc9633e436139258b0c70b98ba',1,'nc::linalg::SVD']]], - ['swap_2181',['swap',['../namespacenc.html#a39da0502565b913855379ea1439047e1',1,'nc']]], - ['swapaxes_2182',['swapaxes',['../namespacenc.html#a9371c43ae0a95c53cdaaf97a5bbc1db7',1,'nc::swapaxes()'],['../classnc_1_1_nd_array.html#a7995ba04b64061dfd931ac58c05826f2',1,'nc::NdArray::swapaxes()']]] + ['s_2231',['s',['../classnc_1_1linalg_1_1_s_v_d.html#a323915fbe7cbaabadef01ffa948d2f1a',1,'nc::linalg::SVD::s()'],['../classnc_1_1rotations_1_1_quaternion.html#a075b6f1befef247f5d638c91e1a451fd',1,'nc::rotations::Quaternion::s()']]], + ['secant_2232',['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']]], + ['seconds_2233',['seconds',['../classnc_1_1coordinates_1_1_dec.html#a2927e30c2059f09bd30be622cf9b52ea',1,'nc::coordinates::Dec::seconds()'],['../classnc_1_1coordinates_1_1_r_a.html#af0c9b649f60a70bbf421a6eb5b169cda',1,'nc::coordinates::RA::seconds()']]], + ['seed_2234',['seed',['../namespacenc_1_1random.html#a93fe76208181d041adb08a02de0966d8',1,'nc::random']]], + ['select_2235',['select',['../namespacenc.html#aab95eb9e265a3daf251b7e1926a42dac',1,'nc::select(const std::vector< const NdArray< bool > * > &condVec, const std::vector< const NdArray< dtype > * > &choiceVec, dtype defaultValue=dtype{0})'],['../namespacenc.html#acbb2b67807944a713b19844d2fe3dcc6',1,'nc::select(const std::vector< NdArray< bool >> &condList, const std::vector< NdArray< dtype >> &choiceList, dtype defaultValue=dtype{0})']]], + ['set_5fdifference_2236',['set_difference',['../namespacenc_1_1stl__algorithms.html#a8cc83e2fb7a3d8302db0f4b19513ddd9',1,'nc::stl_algorithms::set_difference(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination)'],['../namespacenc_1_1stl__algorithms.html#a8a145ff0f4cf32b64e7464347d1ea9b2',1,'nc::stl_algorithms::set_difference(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept']]], + ['set_5fintersection_2237',['set_intersection',['../namespacenc_1_1stl__algorithms.html#aa8ff8c5bb6003ff0f02a17deb4ced8e2',1,'nc::stl_algorithms::set_intersection(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination) noexcept'],['../namespacenc_1_1stl__algorithms.html#ad9a963ad13c86117f01fe2960525e074',1,'nc::stl_algorithms::set_intersection(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept']]], + ['set_5funion_2238',['set_union',['../namespacenc_1_1stl__algorithms.html#a33da2f830ebf2e7c04f1ac94e1ad20b7',1,'nc::stl_algorithms::set_union(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#a273ff7212f84bcd8de30e83ab0ae3bd1',1,'nc::stl_algorithms::set_union(InputIt1 first1, InputIt1 last1, InputIt2 first2, InputIt2 last2, OutputIt destination) noexcept']]], + ['setdiff1d_2239',['setdiff1d',['../namespacenc.html#adb6b7ca658c4d613fe0c4a695ba3542b',1,'nc']]], + ['setname_2240',['setName',['../classnc_1_1_timer.html#a88dd680a63b38ae9989a40878a8fd65b',1,'nc::Timer']]], + ['shape_2241',['Shape',['../classnc_1_1_shape.html#a0f41587a1b8f1c2b65035adc49705eec',1,'nc::Shape::Shape()=default'],['../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']]], + ['shape_2242',['shape',['../classnc_1_1_data_cube.html#a1e7e4ce08e0c57abb661a8f95192173e',1,'nc::DataCube::shape()'],['../classnc_1_1_nd_array.html#a2d1b4adfe3c9897ffe3dca45e357b2b4',1,'nc::NdArray::shape()'],['../namespacenc.html#ae2b224742bc8263190d451a44ebe5e34',1,'nc::shape()']]], + ['shuffle_2243',['shuffle',['../namespacenc_1_1random.html#ad73d56152095ad55887c89f47490c070',1,'nc::random']]], + ['sign_2244',['sign',['../classnc_1_1coordinates_1_1_dec.html#ac551f7b1f2728f20fbdbd79dd00919f7',1,'nc::coordinates::Dec::sign()'],['../namespacenc.html#a22372b41fc480a7284967d2be4b87841',1,'nc::sign(const NdArray< dtype > &inArray)'],['../namespacenc.html#a4a5d98f334e0b50a3cf9c2718485e5e9',1,'nc::sign(dtype inValue) noexcept']]], + ['signbit_2245',['signbit',['../namespacenc.html#a09632f5c6c5d569ccfde17351811b3c0',1,'nc::signbit(const NdArray< dtype > &inArray)'],['../namespacenc.html#af6dcbdfea85cdc84b4ddcf6c978b71f1',1,'nc::signbit(dtype inValue) noexcept']]], + ['simpson_2246',['simpson',['../namespacenc_1_1integrate.html#aa7c55b05139ecfce5e5a9d0380df9eb1',1,'nc::integrate']]], + ['sin_2247',['sin',['../namespacenc.html#aff909cb0ae96644487adaedbbb498cea',1,'nc::sin(const NdArray< dtype > &inArray)'],['../namespacenc.html#a3fa4e582cdeef0716309ad51378f2983',1,'nc::sin(dtype inValue) noexcept']]], + ['sinc_2248',['sinc',['../namespacenc.html#a0c8e5bf6fca377445afd941d70bcac10',1,'nc::sinc(const NdArray< dtype > &inArray)'],['../namespacenc.html#aafe29b8d2e32e8e2af4d92074851b777',1,'nc::sinc(dtype inValue) noexcept']]], + ['sinh_2249',['sinh',['../namespacenc.html#a8de43bfef3cdd2e1af1c521dcf3a2dcd',1,'nc::sinh(const NdArray< dtype > &inArray)'],['../namespacenc.html#a7672779bec72183de09ddc469739b385',1,'nc::sinh(dtype inValue) noexcept']]], + ['size_2250',['size',['../classnc_1_1_shape.html#ab29f87cc8479a2d0610a918cd9b08bbc',1,'nc::Shape::size()'],['../classnc_1_1image_processing_1_1_cluster.html#ae89900f4557d6273fc49b330417e324e',1,'nc::imageProcessing::Cluster::size()'],['../classnc_1_1image_processing_1_1_cluster_maker.html#ae437071bfc291a36745d043ddd4cba1d',1,'nc::imageProcessing::ClusterMaker::size()'],['../namespacenc.html#a25f36ba02112a206936fae22b0724bb9',1,'nc::size()'],['../classnc_1_1_nd_array.html#a055875abbe80163ca91328c0fa8ffbfa',1,'nc::NdArray::size()']]], + ['sizez_2251',['sizeZ',['../classnc_1_1_data_cube.html#a6518d36db671db4053abffff92505c64',1,'nc::DataCube']]], + ['sleep_2252',['sleep',['../classnc_1_1_timer.html#a9fec514ed605a11c6e1c321041960d7e',1,'nc::Timer']]], + ['slerp_2253',['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_2254',['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']]], + ['slicez_2255',['sliceZ',['../classnc_1_1_data_cube.html#a71d00d236bd135a4a35212fb147ae905',1,'nc::DataCube::sliceZ(int32 inIndex, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a6e6629a0891235ea43e77389f93326cd',1,'nc::DataCube::sliceZ(int32 inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#aacc3751540c1b3d79e177a6b93a383fb',1,'nc::DataCube::sliceZ(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a8164f497dd44a89d1c5a1aeb7ca92e55',1,'nc::DataCube::sliceZ(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a3bc1ba8251f5e788155d6a01727d1644',1,'nc::DataCube::sliceZ(Slice inRow, Slice inCol, Slice inSliceZ) const']]], + ['slicezall_2256',['sliceZAll',['../classnc_1_1_data_cube.html#a7297568496398f9d80ceef1b9b955bfa',1,'nc::DataCube::sliceZAll(int32 inIndex) const'],['../classnc_1_1_data_cube.html#a0f149a9a6dfc3644a95c7741bbe60ca6',1,'nc::DataCube::sliceZAll(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#af8c15897cf2ff42ddd86648583aee686',1,'nc::DataCube::sliceZAll(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#a1961f8bf37432ab59bba9a59206537bd',1,'nc::DataCube::sliceZAll(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a64c85bf44f454e917c635167e46301e9',1,'nc::DataCube::sliceZAll(Slice inRow, Slice inCol) const']]], + ['slicezallat_2257',['sliceZAllat',['../classnc_1_1_data_cube.html#a7dd2ceb0e7935647c31993c5db1d1d20',1,'nc::DataCube::sliceZAllat(int32 inIndex) const'],['../classnc_1_1_data_cube.html#aaf2cad6dc76e1342d72c8d0291062357',1,'nc::DataCube::sliceZAllat(int32 inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#ad404a350af85b9e99be4901c028ed487',1,'nc::DataCube::sliceZAllat(Slice inRow, int32 inCol) const'],['../classnc_1_1_data_cube.html#ae6f6216581c3824f862bad03fea73f45',1,'nc::DataCube::sliceZAllat(int32 inRow, Slice inCol) const'],['../classnc_1_1_data_cube.html#a57aaf216577c8a696dbf1dbe6363297e',1,'nc::DataCube::sliceZAllat(Slice inRow, Slice inCol) const']]], + ['slicezat_2258',['sliceZat',['../classnc_1_1_data_cube.html#a435a6f90ee141a790af7c04557396baf',1,'nc::DataCube::sliceZat(int32 inIndex, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a6075ed979ff9294f2ff0bd54bb928952',1,'nc::DataCube::sliceZat(int32 inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a6f6bfc2ed7ec485877f0266f906342be',1,'nc::DataCube::sliceZat(Slice inRow, int32 inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a70d350f869a1831a401522667b65639a',1,'nc::DataCube::sliceZat(int32 inRow, Slice inCol, Slice inSliceZ) const'],['../classnc_1_1_data_cube.html#a2c4ac09094f98ca9de7e6f02aa8956a3',1,'nc::DataCube::sliceZat(Slice inRow, Slice inCol, Slice inSliceZ) const']]], + ['softmax_2259',['softmax',['../namespacenc_1_1special.html#a459176cc2a1b285e93c3ee5671294590',1,'nc::special']]], + ['solve_2260',['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()'],['../classnc_1_1roots_1_1_secant.html#a3fefb4412402aa20eeabb85145463d70',1,'nc::roots::Secant::solve()'],['../classnc_1_1linalg_1_1_s_v_d.html#aa170c7ec6894fb30e115840d61bd58a1',1,'nc::linalg::SVD::solve()'],['../namespacenc_1_1linalg.html#afe2a5221f8e22e671e9e6eb231516205',1,'nc::linalg::solve()']]], + ['sort_2261',['sort',['../namespacenc.html#a8273e1ecb5eafba97b7ed5b8f10a6cdf',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#a3c0a24c292c340c58a6da5526654f3bb',1,'nc::NdArray::sort()']]], + ['spherical_5fbessel_5fjn_2262',['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_5fyn_2263',['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_5fhankel_5f1_2264',['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_5f2_2265',['spherical_hankel_2',['../namespacenc_1_1special.html#a767d00adf7283b45bd3b7ea4aab6c5ff',1,'nc::special::spherical_hankel_2(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#aa0181306ece55cbaf50c65da8d215542',1,'nc::special::spherical_hankel_2(dtype1 inV, const NdArray< dtype2 > &inArray)']]], + ['spherical_5fharmonic_2266',['spherical_harmonic',['../namespacenc_1_1polynomial.html#aa5bb22676f3f43eda1e7c0af04da376a',1,'nc::polynomial']]], + ['spherical_5fharmonic_5fi_2267',['spherical_harmonic_i',['../namespacenc_1_1polynomial.html#a583c30981b9547a90ad7c33edbe041c1',1,'nc::polynomial']]], + ['spherical_5fharmonic_5fr_2268',['spherical_harmonic_r',['../namespacenc_1_1polynomial.html#a5ed971ca59899f372f28a53913796745',1,'nc::polynomial']]], + ['sqr_2269',['sqr',['../namespacenc_1_1utils.html#ae792e10a24b7e5b8291a6c31a28a4512',1,'nc::utils']]], + ['sqrt_2270',['sqrt',['../namespacenc.html#a941a5a1ffb61387495a6f23dc4036287',1,'nc::sqrt(dtype inValue) noexcept'],['../namespacenc.html#abb4086978f52185f25340b0ff57ca8f0',1,'nc::sqrt(const NdArray< dtype > &inArray)']]], + ['square_2271',['square',['../namespacenc.html#a282e72a93afe2e6554e0f17f21dd7b9e',1,'nc::square(dtype inValue) noexcept'],['../namespacenc.html#a104a8ffcdf7d3911fb6d4bbb847e2a1d',1,'nc::square(const NdArray< dtype > &inArray)']]], + ['stable_5fsort_2272',['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_2273',['stack',['../namespacenc.html#a59f5a937dedc01a2aee57788d80d2912',1,'nc']]], + ['standardnormal_2274',['standardNormal',['../namespacenc_1_1random.html#acc9d03c66c1fa8b35dea3fa0a0f075e7',1,'nc::random::standardNormal()'],['../namespacenc_1_1random.html#a026e31e4ef305beb2bbb546817e44eb0',1,'nc::random::standardNormal(const Shape &inShape)']]], + ['stdev_2275',['stdev',['../namespacenc.html#ae197a8efaeeebe00c6e886b779ec1a43',1,'nc::stdev(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a60ac1ab2f35e50531ef0f12be00d89c8',1,'nc::stdev(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], + ['str_2276',['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_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_1_slice.html#af8bc3bb19b48fd09c769fd1fa9860ed5',1,'nc::Slice::str()'],['../classnc_1_1coordinates_1_1_coordinate.html#a04a60dd7bc2ef5be41c8006e2797997f',1,'nc::coordinates::Coordinate::str()'],['../classnc_1_1coordinates_1_1_r_a.html#a37824a93eb9e0a02237d4e654040761b',1,'nc::coordinates::RA::str()'],['../classnc_1_1rotations_1_1_quaternion.html#a0ddeeba7435df3364f262215f24c93c1',1,'nc::rotations::Quaternion::str()'],['../classnc_1_1polynomial_1_1_poly1d.html#aa5c091077a037bab14a1c558ece21435',1,'nc::polynomial::Poly1d::str()'],['../classnc_1_1coordinates_1_1_dec.html#a91ddbec1fadfdcc049930dc439da4608',1,'nc::coordinates::Dec::str()'],['../classnc_1_1_shape.html#aadb0e0d633d64e5eb5a4f9bef12b26c4',1,'nc::Shape::str()']]], + ['studentt_2277',['studentT',['../namespacenc_1_1random.html#a9e8074cb89e2362b5ae485834f550217',1,'nc::random::studentT(dtype inDof)'],['../namespacenc_1_1random.html#a5c18c6c123083003f32344baeb0f4ad3',1,'nc::random::studentT(const Shape &inShape, dtype inDof)']]], + ['subtract_2278',['subtract',['../namespacenc.html#ae4be1086253a0b121695d9cabfcb86ce',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#afa4586729c62bfae485a6e7664ba7117',1,'nc::subtract(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#a7851e0af8b7501f667e2d89738259191',1,'nc::subtract(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a0499ac58fc4cfe52a2bba30f70376d84',1,'nc::subtract(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a8aae2ea3fcf6335997c10676fafcd1e5',1,'nc::subtract(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#acddd661c047325c1c0c473aa545011d9',1,'nc::subtract(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a7f2189bdc8a3718be82a8497cd2ea99d',1,'nc::subtract(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a8668e0f6416572f18cf0d8c2e008784a',1,'nc::subtract(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#a29da51134625301935f0e1098111e74b',1,'nc::subtract(dtype value, const NdArray< std::complex< dtype >> &inArray)']]], + ['sum_2279',['sum',['../classnc_1_1_nd_array.html#a467700098b002b5631c756ca0fd50cae',1,'nc::NdArray::sum()'],['../namespacenc.html#aa14c0f092bfdc980c656bf6bf58bfc67',1,'nc::sum()']]], + ['svd_2280',['SVD',['../classnc_1_1linalg_1_1_s_v_d.html#ae0561bbc9633e436139258b0c70b98ba',1,'nc::linalg::SVD']]], + ['svd_2281',['svd',['../namespacenc_1_1linalg.html#acb38ad2613d50422afc539d005159055',1,'nc::linalg']]], + ['swap_2282',['swap',['../namespacenc.html#a39da0502565b913855379ea1439047e1',1,'nc']]], + ['swapaxes_2283',['swapaxes',['../classnc_1_1_nd_array.html#a7995ba04b64061dfd931ac58c05826f2',1,'nc::NdArray::swapaxes()'],['../namespacenc.html#a9371c43ae0a95c53cdaaf97a5bbc1db7',1,'nc::swapaxes()']]] ]; diff --git a/docs/doxygen/html/search/functions_13.html b/docs/doxygen/html/search/functions_13.html index 123660c15..3da2ea69c 100644 --- a/docs/doxygen/html/search/functions_13.html +++ b/docs/doxygen/html/search/functions_13.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_13.js b/docs/doxygen/html/search/functions_13.js index 2efa162c1..404f2bc4e 100644 --- a/docs/doxygen/html/search/functions_13.js +++ b/docs/doxygen/html/search/functions_13.js @@ -1,29 +1,29 @@ var searchData= [ - ['tan_2183',['tan',['../namespacenc.html#abf0186d9e6764cd8b2a5e1529046429b',1,'nc::tan(const NdArray< dtype > &inArray)'],['../namespacenc.html#a50d3734603bda1d991baf0696a4b96ce',1,'nc::tan(dtype inValue) noexcept']]], - ['tanh_2184',['tanh',['../namespacenc.html#aadd0ed02db4a60f805766e7026c78438',1,'nc::tanh(const NdArray< dtype > &inArray)'],['../namespacenc.html#a3d75639028d96fe20286a82740361c6e',1,'nc::tanh(dtype inValue) noexcept']]], - ['throwerror_2185',['throwError',['../namespacenc_1_1error.html#ae23be92f797ad9d90604456bdf27092f',1,'nc::error']]], - ['tic_2186',['tic',['../classnc_1_1_timer.html#a4a08ec3e6ba7a7979cb9e72d0cf3f2f7',1,'nc::Timer']]], - ['tile_2187',['tile',['../namespacenc.html#ae4974bdf6c0bccbde88f70c5732fd361',1,'nc::tile(const NdArray< dtype > &inArray, const Shape &inReps)'],['../namespacenc.html#a01db30b2b68eb0dde0d8ffdc7b72dd53',1,'nc::tile(const NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)']]], - ['timer_2188',['Timer',['../classnc_1_1_timer.html#a5dabfba271b3655326e46c633eabd70e',1,'nc::Timer::Timer()'],['../classnc_1_1_timer.html#a4ede5d1d2cdf6b97bec93b0954ddb610',1,'nc::Timer::Timer(const std::string &inName)']]], - ['toc_2189',['toc',['../classnc_1_1_timer.html#a317fde3b5e7444328adf6484e0ec832e',1,'nc::Timer']]], - ['todcm_2190',['toDCM',['../classnc_1_1rotations_1_1_quaternion.html#aaa79cb63eab5e2bee5101de41d9074f8',1,'nc::rotations::Quaternion']]], - ['tofile_2191',['tofile',['../namespacenc.html#a7dc5b27b93f5a921a39151714fa78d67',1,'nc::tofile(const NdArray< dtype > &inArray, const std::string &inFilename, const char inSep)'],['../namespacenc.html#adf3cdf51801e83c58bc58c606781467d',1,'nc::tofile(const NdArray< dtype > &inArray, const std::string &inFilename)'],['../classnc_1_1_nd_array.html#a25390a2e453495e50219103d389a62d1',1,'nc::NdArray::tofile(const std::string &inFilename, const char inSep) const'],['../classnc_1_1_nd_array.html#a3533a4192c58304b6be7035098d8e263',1,'nc::NdArray::tofile(const std::string &inFilename) const']]], - ['toindices_2192',['toIndices',['../classnc_1_1_nd_array.html#a151940b3a151f2d15354bb4a9cbb0852',1,'nc::NdArray']]], - ['tondarray_2193',['toNdArray',['../classnc_1_1_vec3.html#a45dbcf0b972b41fc3bc78aac17288804',1,'nc::Vec3::toNdArray()'],['../classnc_1_1_vec2.html#ad5f0e922730d66c57630ae5c7847e15a',1,'nc::Vec2::toNdArray()'],['../classnc_1_1rotations_1_1_quaternion.html#a4a11c1c0daf982f9367e4541e5735e71',1,'nc::rotations::Quaternion::toNdArray()']]], - ['tostlvector_2194',['toStlVector',['../classnc_1_1_nd_array.html#a1fb3a21ab9c10a2684098df919b5b440',1,'nc::NdArray::toStlVector()'],['../namespacenc.html#adc9e0bf1da9c54cc65e95a72e795de6b',1,'nc::toStlVector()']]], - ['tostring_2195',['toString',['../classnc_1_1_vec3.html#a29fad7279d8da7f78805fee0c6d73408',1,'nc::Vec3::toString()'],['../classnc_1_1_vec2.html#acd4277d3a9acded9199afef378e1907c',1,'nc::Vec2::toString()']]], - ['trace_2196',['trace',['../classnc_1_1_nd_array.html#ad58c8cb32887059d77903ff4c224e9f3',1,'nc::NdArray::trace()'],['../namespacenc.html#a4a75035db8c766b2cececb1f3e4d5b74',1,'nc::trace()']]], - ['transform_2197',['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)']]], - ['transpose_2198',['transpose',['../classnc_1_1_nd_array.html#a78c99f8306415d8e0ac0e03bb69c6d29',1,'nc::NdArray::transpose()'],['../namespacenc.html#aa6c78ac10e4c3aa446716f80aa1a72ca',1,'nc::transpose()']]], - ['trapazoidal_2199',['trapazoidal',['../namespacenc_1_1integrate.html#acdfbecb87f7780b2961eb4e5d3b3d109',1,'nc::integrate']]], - ['trapz_2200',['trapz',['../namespacenc.html#ad9d00f10d75f795a2f4cbdfb99776637',1,'nc::trapz(const NdArray< dtype > &inArray, double dx=1.0, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a956571b2c934b75025e9168e2ed408f5',1,'nc::trapz(const NdArray< dtype > &inArrayY, const NdArray< dtype > &inArrayX, Axis inAxis=Axis::NONE)']]], - ['triangle_2201',['triangle',['../namespacenc_1_1random.html#a3dd603264757ce4334bfc0b989cd4503',1,'nc::random::triangle(dtype inA=0, dtype inB=0.5, dtype inC=1)'],['../namespacenc_1_1random.html#abaeed48339244cfb7f214c7238b13e8b',1,'nc::random::triangle(const Shape &inShape, dtype inA=0, dtype inB=0.5, dtype inC=1)']]], - ['trigamma_2202',['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)']]], - ['tril_2203',['tril',['../namespacenc.html#aa5530b43e1ccdeeaded7a26fdcb43798',1,'nc::tril(uint32 inN, int32 inOffset=0)'],['../namespacenc.html#a7c46d843ef0c6ea562cb89f9732d89ab',1,'nc::tril(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#a0fc9894890a23f64d3a676f595920a9a',1,'nc::tril(const NdArray< dtype > &inArray, int32 inOffset=0)']]], - ['trim_5fzeros_2204',['trim_zeros',['../namespacenc.html#a56a856c99dddd37fe14d5639dd6c5622',1,'nc']]], - ['trimboundary1d_2205',['trimBoundary1d',['../namespacenc_1_1filter_1_1boundary.html#abe0b187c76c106e821b9ff94ef280d39',1,'nc::filter::boundary']]], - ['trimboundary2d_2206',['trimBoundary2d',['../namespacenc_1_1filter_1_1boundary.html#aeff17b6fddc47bd2220fb912b2429162',1,'nc::filter::boundary']]], - ['triu_2207',['triu',['../namespacenc.html#a05c4de5a2c55f32884dec4b1d5634a36',1,'nc::triu(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#ab8fb31254bc1cdd83667f4f2ac3604c8',1,'nc::triu(uint32 inN, int32 inOffset=0)'],['../namespacenc.html#a6719a9ad06f8286f1a18f91df4d9b049',1,'nc::triu(const NdArray< dtype > &inArray, int32 inOffset=0)']]], - ['trunc_2208',['trunc',['../namespacenc.html#ac83a50ef99e61f116a86df98196f4a8b',1,'nc::trunc(dtype inValue) noexcept'],['../namespacenc.html#adaf8b7ce0ee9ec1b91c27f5e6df30cfc',1,'nc::trunc(const NdArray< dtype > &inArray)']]] + ['tan_2284',['tan',['../namespacenc.html#a50d3734603bda1d991baf0696a4b96ce',1,'nc::tan(dtype inValue) noexcept'],['../namespacenc.html#abf0186d9e6764cd8b2a5e1529046429b',1,'nc::tan(const NdArray< dtype > &inArray)']]], + ['tanh_2285',['tanh',['../namespacenc.html#aadd0ed02db4a60f805766e7026c78438',1,'nc::tanh(const NdArray< dtype > &inArray)'],['../namespacenc.html#a3d75639028d96fe20286a82740361c6e',1,'nc::tanh(dtype inValue) noexcept']]], + ['throwerror_2286',['throwError',['../namespacenc_1_1error.html#ae23be92f797ad9d90604456bdf27092f',1,'nc::error']]], + ['tic_2287',['tic',['../classnc_1_1_timer.html#a4a08ec3e6ba7a7979cb9e72d0cf3f2f7',1,'nc::Timer']]], + ['tile_2288',['tile',['../namespacenc.html#a01db30b2b68eb0dde0d8ffdc7b72dd53',1,'nc::tile(const NdArray< dtype > &inArray, uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#ae4974bdf6c0bccbde88f70c5732fd361',1,'nc::tile(const NdArray< dtype > &inArray, const Shape &inReps)']]], + ['timer_2289',['Timer',['../classnc_1_1_timer.html#a5dabfba271b3655326e46c633eabd70e',1,'nc::Timer::Timer()'],['../classnc_1_1_timer.html#a4ede5d1d2cdf6b97bec93b0954ddb610',1,'nc::Timer::Timer(const std::string &inName)']]], + ['toc_2290',['toc',['../classnc_1_1_timer.html#a317fde3b5e7444328adf6484e0ec832e',1,'nc::Timer']]], + ['todcm_2291',['toDCM',['../classnc_1_1rotations_1_1_quaternion.html#aaa79cb63eab5e2bee5101de41d9074f8',1,'nc::rotations::Quaternion']]], + ['tofile_2292',['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#a7dc5b27b93f5a921a39151714fa78d67',1,'nc::tofile(const NdArray< dtype > &inArray, const std::string &inFilename, const char inSep)'],['../namespacenc.html#adf3cdf51801e83c58bc58c606781467d',1,'nc::tofile(const NdArray< dtype > &inArray, const std::string &inFilename)']]], + ['toindices_2293',['toIndices',['../classnc_1_1_nd_array.html#a151940b3a151f2d15354bb4a9cbb0852',1,'nc::NdArray']]], + ['tondarray_2294',['toNdArray',['../classnc_1_1rotations_1_1_quaternion.html#a4a11c1c0daf982f9367e4541e5735e71',1,'nc::rotations::Quaternion::toNdArray()'],['../classnc_1_1_vec2.html#ad5f0e922730d66c57630ae5c7847e15a',1,'nc::Vec2::toNdArray()'],['../classnc_1_1_vec3.html#a45dbcf0b972b41fc3bc78aac17288804',1,'nc::Vec3::toNdArray()']]], + ['tostlvector_2295',['toStlVector',['../classnc_1_1_nd_array.html#a1fb3a21ab9c10a2684098df919b5b440',1,'nc::NdArray::toStlVector()'],['../namespacenc.html#adc9e0bf1da9c54cc65e95a72e795de6b',1,'nc::toStlVector()']]], + ['tostring_2296',['toString',['../classnc_1_1_vec2.html#acd4277d3a9acded9199afef378e1907c',1,'nc::Vec2::toString()'],['../classnc_1_1_vec3.html#a29fad7279d8da7f78805fee0c6d73408',1,'nc::Vec3::toString()']]], + ['trace_2297',['trace',['../classnc_1_1_nd_array.html#ad58c8cb32887059d77903ff4c224e9f3',1,'nc::NdArray::trace()'],['../namespacenc.html#a4a75035db8c766b2cececb1f3e4d5b74',1,'nc::trace()']]], + ['transform_2298',['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)']]], + ['transpose_2299',['transpose',['../classnc_1_1_nd_array.html#a78c99f8306415d8e0ac0e03bb69c6d29',1,'nc::NdArray::transpose()'],['../namespacenc.html#aa6c78ac10e4c3aa446716f80aa1a72ca',1,'nc::transpose()']]], + ['trapazoidal_2300',['trapazoidal',['../namespacenc_1_1integrate.html#acdfbecb87f7780b2961eb4e5d3b3d109',1,'nc::integrate']]], + ['trapz_2301',['trapz',['../namespacenc.html#ad9d00f10d75f795a2f4cbdfb99776637',1,'nc::trapz(const NdArray< dtype > &inArray, double dx=1.0, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a956571b2c934b75025e9168e2ed408f5',1,'nc::trapz(const NdArray< dtype > &inArrayY, const NdArray< dtype > &inArrayX, Axis inAxis=Axis::NONE)']]], + ['triangle_2302',['triangle',['../namespacenc_1_1random.html#a3dd603264757ce4334bfc0b989cd4503',1,'nc::random::triangle(dtype inA=0, dtype inB=0.5, dtype inC=1)'],['../namespacenc_1_1random.html#abaeed48339244cfb7f214c7238b13e8b',1,'nc::random::triangle(const Shape &inShape, dtype inA=0, dtype inB=0.5, dtype inC=1)']]], + ['trigamma_2303',['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)']]], + ['tril_2304',['tril',['../namespacenc.html#aa5530b43e1ccdeeaded7a26fdcb43798',1,'nc::tril(uint32 inN, int32 inOffset=0)'],['../namespacenc.html#a7c46d843ef0c6ea562cb89f9732d89ab',1,'nc::tril(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#a0fc9894890a23f64d3a676f595920a9a',1,'nc::tril(const NdArray< dtype > &inArray, int32 inOffset=0)']]], + ['trim_5fzeros_2305',['trim_zeros',['../namespacenc.html#a56a856c99dddd37fe14d5639dd6c5622',1,'nc']]], + ['trimboundary1d_2306',['trimBoundary1d',['../namespacenc_1_1filter_1_1boundary.html#abe0b187c76c106e821b9ff94ef280d39',1,'nc::filter::boundary']]], + ['trimboundary2d_2307',['trimBoundary2d',['../namespacenc_1_1filter_1_1boundary.html#aeff17b6fddc47bd2220fb912b2429162',1,'nc::filter::boundary']]], + ['triu_2308',['triu',['../namespacenc.html#a05c4de5a2c55f32884dec4b1d5634a36',1,'nc::triu(uint32 inN, uint32 inM, int32 inOffset=0)'],['../namespacenc.html#ab8fb31254bc1cdd83667f4f2ac3604c8',1,'nc::triu(uint32 inN, int32 inOffset=0)'],['../namespacenc.html#a6719a9ad06f8286f1a18f91df4d9b049',1,'nc::triu(const NdArray< dtype > &inArray, int32 inOffset=0)']]], + ['trunc_2309',['trunc',['../namespacenc.html#ac83a50ef99e61f116a86df98196f4a8b',1,'nc::trunc(dtype inValue) noexcept'],['../namespacenc.html#adaf8b7ce0ee9ec1b91c27f5e6df30cfc',1,'nc::trunc(const NdArray< dtype > &inArray)']]] ]; diff --git a/docs/doxygen/html/search/functions_14.html b/docs/doxygen/html/search/functions_14.html index c569b5209..29237b44c 100644 --- a/docs/doxygen/html/search/functions_14.html +++ b/docs/doxygen/html/search/functions_14.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_14.js b/docs/doxygen/html/search/functions_14.js index 169fdaa86..1ea7f6273 100644 --- a/docs/doxygen/html/search/functions_14.js +++ b/docs/doxygen/html/search/functions_14.js @@ -1,13 +1,13 @@ var searchData= [ - ['u_2209',['u',['../classnc_1_1linalg_1_1_s_v_d.html#a0f7dddedc38be47b051aa16e5dc9d6b2',1,'nc::linalg::SVD']]], - ['uniform_2210',['uniform',['../namespacenc_1_1random.html#adbff3f6b80e512d4153b12bae9c6c732',1,'nc::random::uniform(dtype inLow, dtype inHigh)'],['../namespacenc_1_1random.html#a1e31096d678b7e4be66f6c59d95e5445',1,'nc::random::uniform(const Shape &inShape, dtype inLow, dtype inHigh)']]], - ['uniformfilter_2211',['uniformFilter',['../namespacenc_1_1filter.html#a9f41f17a6f7c06ebf7b1f3a1ab3915bb',1,'nc::filter']]], - ['uniformfilter1d_2212',['uniformFilter1d',['../namespacenc_1_1filter.html#ab7f620c737fa95c983523c0950120cd9',1,'nc::filter']]], - ['uniformonsphere_2213',['uniformOnSphere',['../namespacenc_1_1random.html#a2f18a1f7b9311d52bbdc4ae7a7b84be6',1,'nc::random']]], - ['union1d_2214',['union1d',['../namespacenc.html#a38b544f6e77741848387a3a427579704',1,'nc']]], - ['unique_2215',['unique',['../namespacenc.html#ad4832f2be01449e48737aa0e06792494',1,'nc']]], - ['unique_5fcopy_2216',['unique_copy',['../namespacenc_1_1stl__algorithms.html#a7cec030870d1f3b4d1c7caf26c8d907d',1,'nc::stl_algorithms::unique_copy(InputIt first, InputIt last, OutputIt destination) noexcept'],['../namespacenc_1_1stl__algorithms.html#aefa150cdbb6a1110c2164a3970a317a8',1,'nc::stl_algorithms::unique_copy(InputIt first, InputIt last, OutputIt destination, BinaryPredicate binaryFunction) noexcept']]], - ['unwrap_2217',['unwrap',['../namespacenc.html#aac5e942220c693fb9e65fcc3ff4fc50f',1,'nc::unwrap(dtype inValue) noexcept'],['../namespacenc.html#aff80ace967dcf63c32d235a7511c6018',1,'nc::unwrap(const NdArray< dtype > &inArray)']]], - ['up_2218',['up',['../classnc_1_1_vec2.html#a82fc65cffdae5c0ebd50fece54b56d4c',1,'nc::Vec2::up()'],['../classnc_1_1_vec3.html#aafc14ccae575994733d664eb3f4a6e66',1,'nc::Vec3::up()']]] + ['u_2310',['u',['../classnc_1_1linalg_1_1_s_v_d.html#a0f7dddedc38be47b051aa16e5dc9d6b2',1,'nc::linalg::SVD']]], + ['uniform_2311',['uniform',['../namespacenc_1_1random.html#adbff3f6b80e512d4153b12bae9c6c732',1,'nc::random::uniform(dtype inLow, dtype inHigh)'],['../namespacenc_1_1random.html#a1e31096d678b7e4be66f6c59d95e5445',1,'nc::random::uniform(const Shape &inShape, dtype inLow, dtype inHigh)']]], + ['uniformfilter_2312',['uniformFilter',['../namespacenc_1_1filter.html#a9f41f17a6f7c06ebf7b1f3a1ab3915bb',1,'nc::filter']]], + ['uniformfilter1d_2313',['uniformFilter1d',['../namespacenc_1_1filter.html#ab7f620c737fa95c983523c0950120cd9',1,'nc::filter']]], + ['uniformonsphere_2314',['uniformOnSphere',['../namespacenc_1_1random.html#a2f18a1f7b9311d52bbdc4ae7a7b84be6',1,'nc::random']]], + ['union1d_2315',['union1d',['../namespacenc.html#a38b544f6e77741848387a3a427579704',1,'nc']]], + ['unique_2316',['unique',['../namespacenc.html#ad4832f2be01449e48737aa0e06792494',1,'nc']]], + ['unique_5fcopy_2317',['unique_copy',['../namespacenc_1_1stl__algorithms.html#a7cec030870d1f3b4d1c7caf26c8d907d',1,'nc::stl_algorithms::unique_copy(InputIt first, InputIt last, OutputIt destination) noexcept'],['../namespacenc_1_1stl__algorithms.html#aefa150cdbb6a1110c2164a3970a317a8',1,'nc::stl_algorithms::unique_copy(InputIt first, InputIt last, OutputIt destination, BinaryPredicate binaryFunction) noexcept']]], + ['unwrap_2318',['unwrap',['../namespacenc.html#aac5e942220c693fb9e65fcc3ff4fc50f',1,'nc::unwrap(dtype inValue) noexcept'],['../namespacenc.html#aff80ace967dcf63c32d235a7511c6018',1,'nc::unwrap(const NdArray< dtype > &inArray)']]], + ['up_2319',['up',['../classnc_1_1_vec2.html#a82fc65cffdae5c0ebd50fece54b56d4c',1,'nc::Vec2::up()'],['../classnc_1_1_vec3.html#aafc14ccae575994733d664eb3f4a6e66',1,'nc::Vec3::up()']]] ]; diff --git a/docs/doxygen/html/search/functions_15.html b/docs/doxygen/html/search/functions_15.html index 26656c07f..6d5decd70 100644 --- a/docs/doxygen/html/search/functions_15.html +++ b/docs/doxygen/html/search/functions_15.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_15.js b/docs/doxygen/html/search/functions_15.js index 188dfa79d..0ceeba500 100644 --- a/docs/doxygen/html/search/functions_15.js +++ b/docs/doxygen/html/search/functions_15.js @@ -1,9 +1,9 @@ var searchData= [ - ['v_2219',['v',['../classnc_1_1linalg_1_1_s_v_d.html#a6b907070cfa7e89c3107fa628694e274',1,'nc::linalg::SVD']]], - ['value2str_2220',['value2str',['../namespacenc_1_1utils.html#a83530b13c9cc3b01b9bd8b8d3113290a',1,'nc::utils']]], - ['var_2221',['var',['../namespacenc.html#aeefabf8c851def135518ddded2bf5886',1,'nc::var(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a130dfd14b561ed4f0889fd2093f99d5f',1,'nc::var(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], - ['vec2_2222',['Vec2',['../classnc_1_1_vec2.html#ae34b427d1b6560cce898bf61f9524a80',1,'nc::Vec2::Vec2()=default'],['../classnc_1_1_vec2.html#aeb48b0300990a5b77919589488ddfe30',1,'nc::Vec2::Vec2(double inX, double inY) noexcept'],['../classnc_1_1_vec2.html#abfb713c893dbd31d7c94b4741e82530b',1,'nc::Vec2::Vec2(const std::initializer_list< double > &inList)'],['../classnc_1_1_vec2.html#a93a9f0c675265005a60c77179625ddd2',1,'nc::Vec2::Vec2(const NdArray< double > &ndArray)']]], - ['vec3_2223',['Vec3',['../classnc_1_1_vec3.html#adb18c9ba29affb8b712bb22a83e38e09',1,'nc::Vec3::Vec3()=default'],['../classnc_1_1_vec3.html#a6b0bc18cc9594a7d81361c518d543130',1,'nc::Vec3::Vec3(double inX, double inY, double inZ) noexcept'],['../classnc_1_1_vec3.html#a4056d1e369726710d6f1049b277486dd',1,'nc::Vec3::Vec3(const std::initializer_list< double > &inList)'],['../classnc_1_1_vec3.html#a4668419f4c870900466d4aa198247767',1,'nc::Vec3::Vec3(const NdArray< double > &ndArray)']]], - ['vstack_2224',['vstack',['../namespacenc.html#a8dec1ff4db1d89ab4b3a7d32ff4b5cf3',1,'nc']]] + ['v_2320',['v',['../classnc_1_1linalg_1_1_s_v_d.html#a6b907070cfa7e89c3107fa628694e274',1,'nc::linalg::SVD']]], + ['value2str_2321',['value2str',['../namespacenc_1_1utils.html#a83530b13c9cc3b01b9bd8b8d3113290a',1,'nc::utils']]], + ['var_2322',['var',['../namespacenc.html#aeefabf8c851def135518ddded2bf5886',1,'nc::var(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a130dfd14b561ed4f0889fd2093f99d5f',1,'nc::var(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], + ['vec2_2323',['Vec2',['../classnc_1_1_vec2.html#ae34b427d1b6560cce898bf61f9524a80',1,'nc::Vec2::Vec2()=default'],['../classnc_1_1_vec2.html#aeb48b0300990a5b77919589488ddfe30',1,'nc::Vec2::Vec2(double inX, double inY) noexcept'],['../classnc_1_1_vec2.html#abfb713c893dbd31d7c94b4741e82530b',1,'nc::Vec2::Vec2(const std::initializer_list< double > &inList)'],['../classnc_1_1_vec2.html#a93a9f0c675265005a60c77179625ddd2',1,'nc::Vec2::Vec2(const NdArray< double > &ndArray)']]], + ['vec3_2324',['Vec3',['../classnc_1_1_vec3.html#adb18c9ba29affb8b712bb22a83e38e09',1,'nc::Vec3::Vec3()=default'],['../classnc_1_1_vec3.html#a6b0bc18cc9594a7d81361c518d543130',1,'nc::Vec3::Vec3(double inX, double inY, double inZ) noexcept'],['../classnc_1_1_vec3.html#a4056d1e369726710d6f1049b277486dd',1,'nc::Vec3::Vec3(const std::initializer_list< double > &inList)'],['../classnc_1_1_vec3.html#a4668419f4c870900466d4aa198247767',1,'nc::Vec3::Vec3(const NdArray< double > &ndArray)']]], + ['vstack_2325',['vstack',['../namespacenc.html#a5e1694cef7795a5fc4914b17d5272dd0',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/functions_16.html b/docs/doxygen/html/search/functions_16.html index 9260b21f7..5aed7d093 100644 --- a/docs/doxygen/html/search/functions_16.html +++ b/docs/doxygen/html/search/functions_16.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_16.js b/docs/doxygen/html/search/functions_16.js index e1f92c80d..2e9abb0a2 100644 --- a/docs/doxygen/html/search/functions_16.js +++ b/docs/doxygen/html/search/functions_16.js @@ -1,11 +1,11 @@ var searchData= [ - ['wahbasproblem_2225',['wahbasProblem',['../namespacenc_1_1rotations.html#a84a42f4e7f09b7c0e1a9307cb5b6f281',1,'nc::rotations::wahbasProblem(const NdArray< dtype > &wk, const NdArray< dtype > &vk, const NdArray< dtype > &ak)'],['../namespacenc_1_1rotations.html#a6da89864a9512bbe69c848dad18220b4',1,'nc::rotations::wahbasProblem(const NdArray< dtype > &wk, const NdArray< dtype > &vk)']]], - ['weibull_2226',['weibull',['../namespacenc_1_1random.html#a3cf0bdb15264c1ace4163042756a4765',1,'nc::random::weibull(dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#af3a48c59aaa59d37bb5177b962d02bde',1,'nc::random::weibull(const Shape &inShape, dtype inA=1, dtype inB=1)']]], - ['where_2227',['where',['../namespacenc.html#ac0af750215d0444ad9f0208620ca206b',1,'nc::where(const NdArray< bool > &inMask, const NdArray< dtype > &inA, const NdArray< dtype > &inB)'],['../namespacenc.html#a7191d45f29de05f27964f56f36c9be94',1,'nc::where(const NdArray< bool > &inMask, const NdArray< dtype > &inA, dtype inB)'],['../namespacenc.html#a446fff289053b687a994f9193941cd3f',1,'nc::where(const NdArray< bool > &inMask, dtype inA, const NdArray< dtype > &inB)'],['../namespacenc.html#a39dbf48fd9094cc969f3d006788f2137',1,'nc::where(const NdArray< bool > &inMask, dtype inA, dtype inB)']]], - ['width_2228',['width',['../classnc_1_1image_processing_1_1_cluster.html#accbfd3dbb32016c0f4234614347d74ce',1,'nc::imageProcessing::Cluster']]], - ['windowexceedances_2229',['windowExceedances',['../namespacenc_1_1image_processing.html#a896adf0319f58a2f44cbf3dfaf550fe2',1,'nc::imageProcessing']]], - ['withext_2230',['withExt',['../classnc_1_1filesystem_1_1_file.html#adde9dd84b2a023df3bb908e6b1c7030f',1,'nc::filesystem::File']]], - ['wrap1d_2231',['wrap1d',['../namespacenc_1_1filter_1_1boundary.html#aa318761ec07aeb7764e2e5f0a7ec9e86',1,'nc::filter::boundary']]], - ['wrap2d_2232',['wrap2d',['../namespacenc_1_1filter_1_1boundary.html#aeace2e548cf6ecf3aaadbbf000cbead7',1,'nc::filter::boundary']]] + ['wahbasproblem_2326',['wahbasProblem',['../namespacenc_1_1rotations.html#a84a42f4e7f09b7c0e1a9307cb5b6f281',1,'nc::rotations::wahbasProblem(const NdArray< dtype > &wk, const NdArray< dtype > &vk, const NdArray< dtype > &ak)'],['../namespacenc_1_1rotations.html#a6da89864a9512bbe69c848dad18220b4',1,'nc::rotations::wahbasProblem(const NdArray< dtype > &wk, const NdArray< dtype > &vk)']]], + ['weibull_2327',['weibull',['../namespacenc_1_1random.html#a3cf0bdb15264c1ace4163042756a4765',1,'nc::random::weibull(dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#af3a48c59aaa59d37bb5177b962d02bde',1,'nc::random::weibull(const Shape &inShape, dtype inA=1, dtype inB=1)']]], + ['where_2328',['where',['../namespacenc.html#ac0af750215d0444ad9f0208620ca206b',1,'nc::where(const NdArray< bool > &inMask, const NdArray< dtype > &inA, const NdArray< dtype > &inB)'],['../namespacenc.html#a7191d45f29de05f27964f56f36c9be94',1,'nc::where(const NdArray< bool > &inMask, const NdArray< dtype > &inA, dtype inB)'],['../namespacenc.html#a446fff289053b687a994f9193941cd3f',1,'nc::where(const NdArray< bool > &inMask, dtype inA, const NdArray< dtype > &inB)'],['../namespacenc.html#a39dbf48fd9094cc969f3d006788f2137',1,'nc::where(const NdArray< bool > &inMask, dtype inA, dtype inB)']]], + ['width_2329',['width',['../classnc_1_1image_processing_1_1_cluster.html#accbfd3dbb32016c0f4234614347d74ce',1,'nc::imageProcessing::Cluster']]], + ['windowexceedances_2330',['windowExceedances',['../namespacenc_1_1image_processing.html#a896adf0319f58a2f44cbf3dfaf550fe2',1,'nc::imageProcessing']]], + ['withext_2331',['withExt',['../classnc_1_1filesystem_1_1_file.html#adde9dd84b2a023df3bb908e6b1c7030f',1,'nc::filesystem::File']]], + ['wrap1d_2332',['wrap1d',['../namespacenc_1_1filter_1_1boundary.html#aa318761ec07aeb7764e2e5f0a7ec9e86',1,'nc::filter::boundary']]], + ['wrap2d_2333',['wrap2d',['../namespacenc_1_1filter_1_1boundary.html#aeace2e548cf6ecf3aaadbbf000cbead7',1,'nc::filter::boundary']]] ]; diff --git a/docs/doxygen/html/search/functions_17.html b/docs/doxygen/html/search/functions_17.html index 5f5cfd6f2..ad6d5a7af 100644 --- a/docs/doxygen/html/search/functions_17.html +++ b/docs/doxygen/html/search/functions_17.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_17.js b/docs/doxygen/html/search/functions_17.js index 066afb6c2..6cca85abe 100644 --- a/docs/doxygen/html/search/functions_17.js +++ b/docs/doxygen/html/search/functions_17.js @@ -1,6 +1,6 @@ var searchData= [ - ['x_2233',['x',['../classnc_1_1coordinates_1_1_coordinate.html#aded7d56f04931cfbb07488d45d6bfce5',1,'nc::coordinates::Coordinate']]], - ['xrotation_2234',['xRotation',['../classnc_1_1rotations_1_1_d_c_m.html#a7679a0d5443e2abdee0c376ef5f6d1e1',1,'nc::rotations::DCM::xRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#a30fe8031959271e5b0134a0c562713b4',1,'nc::rotations::Quaternion::xRotation()']]], - ['xyz_2235',['xyz',['../classnc_1_1coordinates_1_1_coordinate.html#a01ff982f40caae2429c20d0ba66e4afc',1,'nc::coordinates::Coordinate']]] + ['x_2334',['x',['../classnc_1_1coordinates_1_1_coordinate.html#aded7d56f04931cfbb07488d45d6bfce5',1,'nc::coordinates::Coordinate']]], + ['xrotation_2335',['xRotation',['../classnc_1_1rotations_1_1_d_c_m.html#a7679a0d5443e2abdee0c376ef5f6d1e1',1,'nc::rotations::DCM::xRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#a30fe8031959271e5b0134a0c562713b4',1,'nc::rotations::Quaternion::xRotation()']]], + ['xyz_2336',['xyz',['../classnc_1_1coordinates_1_1_coordinate.html#a01ff982f40caae2429c20d0ba66e4afc',1,'nc::coordinates::Coordinate']]] ]; diff --git a/docs/doxygen/html/search/functions_18.html b/docs/doxygen/html/search/functions_18.html index d5a7aaf81..b5c5c060f 100644 --- a/docs/doxygen/html/search/functions_18.html +++ b/docs/doxygen/html/search/functions_18.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_18.js b/docs/doxygen/html/search/functions_18.js index bf9c46ecd..ee041e40f 100644 --- a/docs/doxygen/html/search/functions_18.js +++ b/docs/doxygen/html/search/functions_18.js @@ -1,6 +1,6 @@ var searchData= [ - ['y_2236',['y',['../classnc_1_1coordinates_1_1_coordinate.html#a624e354f60ca0822c5a60e9ee6432bc6',1,'nc::coordinates::Coordinate']]], - ['yaw_2237',['yaw',['../classnc_1_1rotations_1_1_d_c_m.html#aef0f27b195b93151a94cb86ca9fa21c9',1,'nc::rotations::DCM::yaw()'],['../classnc_1_1rotations_1_1_quaternion.html#a5b5cef534a39badf5d3079ee642e675c',1,'nc::rotations::Quaternion::yaw()']]], - ['yrotation_2238',['yRotation',['../classnc_1_1rotations_1_1_d_c_m.html#a9c495cb1fc84c70042d652d84bcddea4',1,'nc::rotations::DCM::yRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#ab77da90ef63465f79bd79348330ca9a4',1,'nc::rotations::Quaternion::yRotation()']]] + ['y_2337',['y',['../classnc_1_1coordinates_1_1_coordinate.html#a624e354f60ca0822c5a60e9ee6432bc6',1,'nc::coordinates::Coordinate']]], + ['yaw_2338',['yaw',['../classnc_1_1rotations_1_1_d_c_m.html#aef0f27b195b93151a94cb86ca9fa21c9',1,'nc::rotations::DCM::yaw()'],['../classnc_1_1rotations_1_1_quaternion.html#a5b5cef534a39badf5d3079ee642e675c',1,'nc::rotations::Quaternion::yaw()']]], + ['yrotation_2339',['yRotation',['../classnc_1_1rotations_1_1_d_c_m.html#a9c495cb1fc84c70042d652d84bcddea4',1,'nc::rotations::DCM::yRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#ab77da90ef63465f79bd79348330ca9a4',1,'nc::rotations::Quaternion::yRotation()']]] ]; diff --git a/docs/doxygen/html/search/functions_19.html b/docs/doxygen/html/search/functions_19.html index 698074cdf..bcae6da1c 100644 --- a/docs/doxygen/html/search/functions_19.html +++ b/docs/doxygen/html/search/functions_19.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_19.js b/docs/doxygen/html/search/functions_19.js index dde7e548b..f94ba1caf 100644 --- a/docs/doxygen/html/search/functions_19.js +++ b/docs/doxygen/html/search/functions_19.js @@ -1,7 +1,7 @@ var searchData= [ - ['z_2239',['z',['../classnc_1_1coordinates_1_1_coordinate.html#a21614cb1e2513d0d8cb553ccb035986e',1,'nc::coordinates::Coordinate']]], - ['zeros_2240',['zeros',['../classnc_1_1_nd_array.html#acac210ad3d3bd973be4bece6e6b625ed',1,'nc::NdArray::zeros()'],['../namespacenc.html#a8fb3ecc9cc7448e4b5d3d422e499b10e',1,'nc::zeros(uint32 inSquareSize)'],['../namespacenc.html#aa78000e997f09d772b82dd4a08783f69',1,'nc::zeros(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a9751f678e096a185122168c1c52edb25',1,'nc::zeros(const Shape &inShape)']]], - ['zeros_5flike_2241',['zeros_like',['../namespacenc.html#a497502db462e463196e12005ebf2d395',1,'nc']]], - ['zrotation_2242',['zRotation',['../classnc_1_1rotations_1_1_d_c_m.html#aa0c71aecc70f9354665b0c81cdf366ce',1,'nc::rotations::DCM::zRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#aaf688fafc4714f1da399e265c8e49a8d',1,'nc::rotations::Quaternion::zRotation()']]] + ['z_2340',['z',['../classnc_1_1coordinates_1_1_coordinate.html#a21614cb1e2513d0d8cb553ccb035986e',1,'nc::coordinates::Coordinate']]], + ['zeros_2341',['zeros',['../classnc_1_1_nd_array.html#acac210ad3d3bd973be4bece6e6b625ed',1,'nc::NdArray::zeros()'],['../namespacenc.html#a8fb3ecc9cc7448e4b5d3d422e499b10e',1,'nc::zeros(uint32 inSquareSize)'],['../namespacenc.html#aa78000e997f09d772b82dd4a08783f69',1,'nc::zeros(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a9751f678e096a185122168c1c52edb25',1,'nc::zeros(const Shape &inShape)']]], + ['zeros_5flike_2342',['zeros_like',['../namespacenc.html#a497502db462e463196e12005ebf2d395',1,'nc']]], + ['zrotation_2343',['zRotation',['../classnc_1_1rotations_1_1_d_c_m.html#aa0c71aecc70f9354665b0c81cdf366ce',1,'nc::rotations::DCM::zRotation()'],['../classnc_1_1rotations_1_1_quaternion.html#aaf688fafc4714f1da399e265c8e49a8d',1,'nc::rotations::Quaternion::zRotation()']]] ]; diff --git a/docs/doxygen/html/search/functions_1a.html b/docs/doxygen/html/search/functions_1a.html index 8b50562c8..932335d49 100644 --- a/docs/doxygen/html/search/functions_1a.html +++ b/docs/doxygen/html/search/functions_1a.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_1a.js b/docs/doxygen/html/search/functions_1a.js index a0aea2970..6f922f206 100644 --- a/docs/doxygen/html/search/functions_1a.js +++ b/docs/doxygen/html/search/functions_1a.js @@ -1,10 +1,10 @@ var searchData= [ - ['_7ebisection_2243',['~Bisection',['../classnc_1_1roots_1_1_bisection.html#a5e0d0c67681add5f2feec713901539df',1,'nc::roots::Bisection']]], - ['_7ebrent_2244',['~Brent',['../classnc_1_1roots_1_1_brent.html#ade76ad260d82314f284ebacf885f6884',1,'nc::roots::Brent']]], - ['_7edekker_2245',['~Dekker',['../classnc_1_1roots_1_1_dekker.html#a49413387fbe4d12e20569d175fa7f486',1,'nc::roots::Dekker']]], - ['_7eiteration_2246',['~Iteration',['../classnc_1_1roots_1_1_iteration.html#a44492e4a1849938cd7017154213ec002',1,'nc::roots::Iteration']]], - ['_7endarray_2247',['~NdArray',['../classnc_1_1_nd_array.html#a7ef259d6b54cf8373721700b12c14500',1,'nc::NdArray']]], - ['_7enewton_2248',['~Newton',['../classnc_1_1roots_1_1_newton.html#a25702b087e2e9917af0c31fe1dbdf442',1,'nc::roots::Newton']]], - ['_7esecant_2249',['~Secant',['../classnc_1_1roots_1_1_secant.html#aa5eb3c22ecf2ef92a381b6cf54fb1f83',1,'nc::roots::Secant']]] + ['_7ebisection_2344',['~Bisection',['../classnc_1_1roots_1_1_bisection.html#a5e0d0c67681add5f2feec713901539df',1,'nc::roots::Bisection']]], + ['_7ebrent_2345',['~Brent',['../classnc_1_1roots_1_1_brent.html#ade76ad260d82314f284ebacf885f6884',1,'nc::roots::Brent']]], + ['_7edekker_2346',['~Dekker',['../classnc_1_1roots_1_1_dekker.html#a49413387fbe4d12e20569d175fa7f486',1,'nc::roots::Dekker']]], + ['_7eiteration_2347',['~Iteration',['../classnc_1_1roots_1_1_iteration.html#a44492e4a1849938cd7017154213ec002',1,'nc::roots::Iteration']]], + ['_7endarray_2348',['~NdArray',['../classnc_1_1_nd_array.html#a7ef259d6b54cf8373721700b12c14500',1,'nc::NdArray']]], + ['_7enewton_2349',['~Newton',['../classnc_1_1roots_1_1_newton.html#a25702b087e2e9917af0c31fe1dbdf442',1,'nc::roots::Newton']]], + ['_7esecant_2350',['~Secant',['../classnc_1_1roots_1_1_secant.html#aa5eb3c22ecf2ef92a381b6cf54fb1f83',1,'nc::roots::Secant']]] ]; diff --git a/docs/doxygen/html/search/functions_2.html b/docs/doxygen/html/search/functions_2.html index 6587a061f..ca5aa10e6 100644 --- a/docs/doxygen/html/search/functions_2.html +++ b/docs/doxygen/html/search/functions_2.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_2.js b/docs/doxygen/html/search/functions_2.js index 5a5f79dd9..3a11daaed 100644 --- a/docs/doxygen/html/search/functions_2.js +++ b/docs/doxygen/html/search/functions_2.js @@ -1,67 +1,72 @@ var searchData= [ - ['cauchy_1725',['cauchy',['../namespacenc_1_1random.html#a61dc9fcfaee6e2a74e3f2e1f0e9c039b',1,'nc::random::cauchy(const Shape &inShape, dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#aa72b221b82940e126a4c740ee55b269b',1,'nc::random::cauchy(dtype inMean=0, dtype inSigma=1)']]], - ['cbegin_1726',['cbegin',['../classnc_1_1_nd_array.html#a0bee49339bdc4d7edbeb5efa73133cc3',1,'nc::NdArray::cbegin() const noexcept'],['../classnc_1_1_nd_array.html#a4a3d1f968c924a4dc74cd8b617d30df6',1,'nc::NdArray::cbegin(size_type inRow) const'],['../classnc_1_1_data_cube.html#adee7aa24a04d84f83f4c76ef8dcec974',1,'nc::DataCube::cbegin()']]], - ['cbrt_1727',['cbrt',['../namespacenc.html#ae0f91253a3818ac7a12a9d5120ee9a14',1,'nc::cbrt(const NdArray< dtype > &inArray)'],['../namespacenc.html#a21de0caa1ff8e9e7baed8a8a57f7bcab',1,'nc::cbrt(dtype inValue) noexcept']]], - ['ccolbegin_1728',['ccolbegin',['../classnc_1_1_nd_array.html#a25c7145679e41227023ad6de4ab5cd18',1,'nc::NdArray::ccolbegin() const noexcept'],['../classnc_1_1_nd_array.html#a1252a696593c510d506c1bca8bd65c51',1,'nc::NdArray::ccolbegin(size_type inCol) const']]], - ['ccolend_1729',['ccolend',['../classnc_1_1_nd_array.html#ad2833ea5479c37de114bf52afff04a20',1,'nc::NdArray::ccolend() const noexcept'],['../classnc_1_1_nd_array.html#a4a493445c10ed3c299632bf8c7077cfb',1,'nc::NdArray::ccolend(size_type inCol) const']]], - ['ceil_1730',['ceil',['../namespacenc.html#a375f83bc366e3b26842a03b9688b8a33',1,'nc::ceil(const NdArray< dtype > &inArray)'],['../namespacenc.html#a291189b2c2bc35a608b393ab1c06e84a',1,'nc::ceil(dtype inValue) noexcept']]], - ['cend_1731',['cend',['../classnc_1_1_nd_array.html#aa16bc96e4bbafbc8a06743f3e4a10a6a',1,'nc::NdArray::cend()'],['../classnc_1_1_data_cube.html#aca3c0041f121ed92d47d1f2873f713e4',1,'nc::DataCube::cend()'],['../classnc_1_1_nd_array.html#a4da6aaa43b6074a4353328a8047992f6',1,'nc::NdArray::cend()']]], - ['centerofmass_1732',['centerOfMass',['../namespacenc.html#a830888da11b33ea36bf4fc580d8c4757',1,'nc']]], - ['centroid_1733',['Centroid',['../classnc_1_1image_processing_1_1_centroid.html#a59d0af7acae8d24d29ccb372440aed22',1,'nc::imageProcessing::Centroid::Centroid(const Cluster< dtype > &inCluster)'],['../classnc_1_1image_processing_1_1_centroid.html#a3b97e4ddc31b85eb8c3f84b398429a35',1,'nc::imageProcessing::Centroid::Centroid()=default']]], - ['centroidclusters_1734',['centroidClusters',['../namespacenc_1_1image_processing.html#adbb987932dd69ec19029228e065c6603',1,'nc::imageProcessing']]], - ['chebyshev_5ft_1735',['chebyshev_t',['../namespacenc_1_1polynomial.html#a0ce5634d805736db2082358497bac2f4',1,'nc::polynomial::chebyshev_t(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#afc70c903be3c216cf6215b76c89fecc0',1,'nc::polynomial::chebyshev_t(uint32 n, dtype x)']]], - ['chebyshev_5fu_1736',['chebyshev_u',['../namespacenc_1_1polynomial.html#ae03d7859d449ee3fa17f2d09bb2b5638',1,'nc::polynomial::chebyshev_u(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a1e0f56b8366b1f83b48e30e7bb04c937',1,'nc::polynomial::chebyshev_u(uint32 n, dtype x)']]], - ['chisquare_1737',['chiSquare',['../namespacenc_1_1random.html#a329370aed893f0e10a8050520cf0bbd4',1,'nc::random::chiSquare(const Shape &inShape, dtype inDof)'],['../namespacenc_1_1random.html#abb480e9a17b71ea09ef0f043c081e9ff',1,'nc::random::chiSquare(dtype inDof)']]], - ['choice_1738',['choice',['../namespacenc_1_1random.html#a7fcf28e4b1a2b015b1099986c5202877',1,'nc::random::choice(const NdArray< dtype > &inArray, uint32 inNum, bool replace=true)'],['../namespacenc_1_1random.html#ad60ec32743642bd0540fec0076043fed',1,'nc::random::choice(const NdArray< dtype > &inArray)']]], - ['cholesky_1739',['cholesky',['../namespacenc_1_1linalg.html#ac2d27e58dd0f082ef5a422d545699d19',1,'nc::linalg']]], - ['clampmagnitude_1740',['clampMagnitude',['../classnc_1_1_vec2.html#abb0f6f8cacc680a464425d908e1e55cc',1,'nc::Vec2::clampMagnitude()'],['../classnc_1_1_vec3.html#a4f3cfcbd67a402820cc8e0576dccd2e4',1,'nc::Vec3::clampMagnitude()']]], - ['clip_1741',['clip',['../namespacenc.html#a5200696e06dadf4eca2f0d7332ed4af1',1,'nc::clip(dtype inValue, dtype inMinValue, dtype inMaxValue)'],['../namespacenc.html#af82b46f44ea7fad5bbd8ef9acf2499c3',1,'nc::clip(const NdArray< dtype > &inArray, dtype inMinValue, dtype inMaxValue)'],['../classnc_1_1_nd_array.html#a5a7fa82bdf3f34fcd3cc1dd2169c6c6f',1,'nc::NdArray::clip()']]], - ['cluster_1742',['Cluster',['../classnc_1_1image_processing_1_1_cluster.html#a9c84aca9710bec5c721fd6a9f94182c3',1,'nc::imageProcessing::Cluster::Cluster()=default'],['../classnc_1_1image_processing_1_1_cluster.html#a73ce20625b5ca5d9e0d872cc8ad885dc',1,'nc::imageProcessing::Cluster::Cluster(uint32 inClusterId) noexcept']]], - ['clusterid_1743',['clusterId',['../classnc_1_1image_processing_1_1_cluster.html#abcc9f76b1d903546a3604ef87795d37e',1,'nc::imageProcessing::Cluster']]], - ['clustermaker_1744',['ClusterMaker',['../classnc_1_1image_processing_1_1_cluster_maker.html#a17c7a9f6260f7d6d0aea002b7e5e6ae6',1,'nc::imageProcessing::ClusterMaker']]], - ['clusterpixels_1745',['clusterPixels',['../namespacenc_1_1image_processing.html#a9b0730e1067dc755ee1fa2ecf280c14f',1,'nc::imageProcessing']]], - ['cnr_1746',['cnr',['../namespacenc_1_1special.html#a8249c674798e782f98a90942818ab395',1,'nc::special']]], - ['coefficients_1747',['coefficients',['../classnc_1_1polynomial_1_1_poly1d.html#abc31b5e093fd3ce5b2c14eade8d346a9',1,'nc::polynomial::Poly1d']]], - ['col_1748',['col',['../classnc_1_1image_processing_1_1_centroid.html#a4ef0e9b2faa4999af5c3597a60140d6c',1,'nc::imageProcessing::Centroid']]], - ['colbegin_1749',['colbegin',['../classnc_1_1_nd_array.html#acadf6ded9a6eb2638d975da9dbbfe38c',1,'nc::NdArray::colbegin(size_type inCol) const'],['../classnc_1_1_nd_array.html#ab6bf02841ec667f5bb4266da569c99fc',1,'nc::NdArray::colbegin() const noexcept'],['../classnc_1_1_nd_array.html#a41f363682d797ed0ed236cf91bd644f1',1,'nc::NdArray::colbegin() noexcept'],['../classnc_1_1_nd_array.html#a3730d4ac599c06e0e25ac7838f53240b',1,'nc::NdArray::colbegin(size_type inCol)']]], - ['colend_1750',['colend',['../classnc_1_1_nd_array.html#ae611e2ecc5bae6035d0de4d48f5de239',1,'nc::NdArray::colend(size_type inCol)'],['../classnc_1_1_nd_array.html#a6501fd771b4dcf1fb49defeee43a47cc',1,'nc::NdArray::colend() noexcept'],['../classnc_1_1_nd_array.html#ac1297463b545ecfd72d22549ce0db02a',1,'nc::NdArray::colend() const noexcept'],['../classnc_1_1_nd_array.html#a97f4fdf4d1a588662733af2bc7e63aaa',1,'nc::NdArray::colend(size_type inCol) const']]], - ['colmax_1751',['colMax',['../classnc_1_1image_processing_1_1_cluster.html#a8c884e5e55d41c09165bca85446edb1f',1,'nc::imageProcessing::Cluster']]], - ['colmin_1752',['colMin',['../classnc_1_1image_processing_1_1_cluster.html#a27734d0fa45c7440e3018fa36c6633f9',1,'nc::imageProcessing::Cluster']]], - ['column_1753',['column',['../classnc_1_1_nd_array.html#a4dc9d45ee849274808d850deeba451dd',1,'nc::NdArray']]], - ['column_5fstack_1754',['column_stack',['../namespacenc.html#a940bbaf9f760ce2d85119beb4a5c23f2',1,'nc']]], - ['comp_5fellint_5f1_1755',['comp_ellint_1',['../namespacenc_1_1special.html#a3b24e9dde5d68f19d8a29de419e32024',1,'nc::special::comp_ellint_1(dtype inK)'],['../namespacenc_1_1special.html#a445930bd5caceb59104bc466c55d479a',1,'nc::special::comp_ellint_1(const NdArray< dtype > &inArrayK)']]], - ['comp_5fellint_5f2_1756',['comp_ellint_2',['../namespacenc_1_1special.html#abfcffce97bdc9114b78a4c6d06956fc5',1,'nc::special::comp_ellint_2(dtype inK)'],['../namespacenc_1_1special.html#abb6b67ccb2a8ea054c188d82f3a67013',1,'nc::special::comp_ellint_2(const NdArray< dtype > &inArrayK)']]], - ['comp_5fellint_5f3_1757',['comp_ellint_3',['../namespacenc_1_1special.html#a8c90b0cd0de06a5e789e3b9f8b0a1243',1,'nc::special::comp_ellint_3(dtype1 inK, dtype2 inV)'],['../namespacenc_1_1special.html#a40e29e793c7c7ee437f242a8cc7e8e26',1,'nc::special::comp_ellint_3(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayV)']]], - ['complementarymedianfilter_1758',['complementaryMedianFilter',['../namespacenc_1_1filter.html#a2343ac38b1ec7c4cbde82a3fe20b4c21',1,'nc::filter']]], - ['complementarymedianfilter1d_1759',['complementaryMedianFilter1d',['../namespacenc_1_1filter.html#aed171f8ad8a79d99c13158c909ac4017',1,'nc::filter']]], - ['complex_1760',['complex',['../namespacenc.html#a56639fcc468435514861ce0e5059d82f',1,'nc::complex(dtype inReal)'],['../namespacenc.html#a2e653b99a0f26149fe399ebed1fc949e',1,'nc::complex(dtype inReal, dtype inImag)'],['../namespacenc.html#ab84a62b7de04ef6f69870e51f5dd8d00',1,'nc::complex(const NdArray< dtype > &inReal)'],['../namespacenc.html#a1d8b87baeef70163d94b40c96759ecc0',1,'nc::complex(const NdArray< dtype > &inReal, const NdArray< dtype > &inImag)']]], - ['complex_5fcast_1761',['complex_cast',['../namespacenc.html#ad639d68db9e1b3ea9acc08efe4bad20e',1,'nc']]], - ['concatenate_1762',['concatenate',['../namespacenc.html#a027070169f1750a74315d07c5bbdfb03',1,'nc']]], - ['conj_1763',['conj',['../namespacenc.html#a26e9df3c46d4f782d04c8d35881aad80',1,'nc::conj(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a0387ae5584e72894ae9e690eba21e26b',1,'nc::conj(const std::complex< dtype > &inValue)']]], - ['conjugate_1764',['conjugate',['../classnc_1_1rotations_1_1_quaternion.html#ade406544e8360506bb77102d17b14e61',1,'nc::rotations::Quaternion']]], - ['constant1d_1765',['constant1d',['../namespacenc_1_1filter_1_1boundary.html#a09c2e0a7f9ff3c1fbbbee0136d80a2e0',1,'nc::filter::boundary']]], - ['constant2d_1766',['constant2d',['../namespacenc_1_1filter_1_1boundary.html#a0e0bd2ad1d6ac1b1d248175b9bc422f6',1,'nc::filter::boundary']]], - ['contains_1767',['contains',['../classnc_1_1_nd_array.html#ad0c493a734dbca9f622d0f7ca6dffbf4',1,'nc::NdArray::contains()'],['../namespacenc.html#a89349379637971764e6efe28ad8c1848',1,'nc::contains()']]], - ['convolve_1768',['convolve',['../namespacenc_1_1filter.html#abc4c77c759de3cd79f3fc02b7461d971',1,'nc::filter']]], - ['convolve1d_1769',['convolve1d',['../namespacenc_1_1filter.html#a21d48fecf984290cb5a4388d50371b13',1,'nc::filter']]], - ['coordinate_1770',['Coordinate',['../classnc_1_1coordinates_1_1_coordinate.html#a983a167d97af973947f76474ab299ab8',1,'nc::coordinates::Coordinate::Coordinate(double inRaDegrees, double inDecDegrees)'],['../classnc_1_1coordinates_1_1_coordinate.html#a0f541169a4c318a5cf4fd0a50a4c2013',1,'nc::coordinates::Coordinate::Coordinate()=default'],['../classnc_1_1coordinates_1_1_coordinate.html#a68eafc66dfeb8551fa7d8960f116be83',1,'nc::coordinates::Coordinate::Coordinate(uint8 inRaHours, uint8 inRaMinutes, double inRaSeconds, Sign inSign, uint8 inDecDegreesWhole, uint8 inDecMinutes, double inDecSeconds)'],['../classnc_1_1coordinates_1_1_coordinate.html#a7cf9e8138023ced7cfcb071299018fd5',1,'nc::coordinates::Coordinate::Coordinate(const RA &inRA, const Dec &inDec) noexcept'],['../classnc_1_1coordinates_1_1_coordinate.html#aa023b8b0e74159909e99aabcf778c57f',1,'nc::coordinates::Coordinate::Coordinate(double inX, double inY, double inZ) noexcept'],['../classnc_1_1coordinates_1_1_coordinate.html#a35b32fa280c920d0b528472f7726a03d',1,'nc::coordinates::Coordinate::Coordinate(const NdArray< double > &inCartesianVector)']]], - ['copy_1771',['copy',['../namespacenc.html#a9bbe10d41fdbd74a6254bad44c7c7cf6',1,'nc::copy()'],['../namespacenc_1_1stl__algorithms.html#ae62a4e197ec640aacea520220bd27cef',1,'nc::stl_algorithms::copy()'],['../classnc_1_1_nd_array.html#a1f2d2aacc254129f36b0557a661e6664',1,'nc::NdArray::copy()']]], - ['copysign_1772',['copySign',['../namespacenc.html#a9e08e770fd2283734390ab631edc250d',1,'nc']]], - ['copyto_1773',['copyto',['../namespacenc.html#af8eca852439098c1fff96384d88d82dd',1,'nc']]], - ['cos_1774',['cos',['../namespacenc.html#af208ae28fe0df17392ca128188cbcd73',1,'nc::cos(const NdArray< dtype > &inArray)'],['../namespacenc.html#a736de91eb8f79bfaf4dc92d7161f1c87',1,'nc::cos(dtype inValue) noexcept']]], - ['cosh_1775',['cosh',['../namespacenc.html#abb07133a1f54b24a4a4986eefb5eda85',1,'nc::cosh(dtype inValue) noexcept'],['../namespacenc.html#a520e0290bb667b43a9f494b3858b5f17',1,'nc::cosh(const NdArray< dtype > &inArray)']]], - ['count_1776',['count',['../namespacenc_1_1stl__algorithms.html#a1fa02155befc0c39a853e66f6df26745',1,'nc::stl_algorithms']]], - ['count_5fnonzero_1777',['count_nonzero',['../namespacenc.html#aebb0dfe3637c07f6a9f6e4f08cacf515',1,'nc']]], - ['crbegin_1778',['crbegin',['../classnc_1_1_nd_array.html#a95cbc4440ac1e139642a08cbd075dafc',1,'nc::NdArray::crbegin() const noexcept'],['../classnc_1_1_nd_array.html#af6b2581fae90a5c67e87df6a82ea13c5',1,'nc::NdArray::crbegin(size_type inRow) const']]], - ['crcolbegin_1779',['crcolbegin',['../classnc_1_1_nd_array.html#a35883ec844477b9bca2597939dd99c2a',1,'nc::NdArray::crcolbegin() const noexcept'],['../classnc_1_1_nd_array.html#a8afdb68c11124e1fe0309204f3996435',1,'nc::NdArray::crcolbegin(size_type inCol) const']]], - ['crcolend_1780',['crcolend',['../classnc_1_1_nd_array.html#a55e5d41795f14f7f2aa256ba0f4bb676',1,'nc::NdArray::crcolend() const noexcept'],['../classnc_1_1_nd_array.html#a35b66f060b1ed99a6fb5247581fcb8fc',1,'nc::NdArray::crcolend(size_type inCol) const']]], - ['crend_1781',['crend',['../classnc_1_1_nd_array.html#ac5d1c900c4db4263d1bf799ac3551ed6',1,'nc::NdArray::crend() const noexcept'],['../classnc_1_1_nd_array.html#af3b4c48e3328a8dd22eedd27c225aeb5',1,'nc::NdArray::crend(size_type inRow) const']]], - ['cross_1782',['cross',['../namespacenc.html#a4d1ed581965ed53090824290def38565',1,'nc::cross()'],['../classnc_1_1_vec3.html#af8173f6e61e9a63beae3092fd8dc4378',1,'nc::Vec3::cross()']]], - ['cslice_1783',['cSlice',['../classnc_1_1_nd_array.html#a29eabba849b35a3095cd341fa1c7b123',1,'nc::NdArray']]], - ['cube_1784',['cube',['../namespacenc.html#a224d96b41af957c782c02f1cb25e66fd',1,'nc::cube()'],['../namespacenc_1_1utils.html#a46e88717d4d32003bb449fd5cefd401c',1,'nc::utils::cube()'],['../namespacenc.html#a5899ccef8410243438debea3d8296df6',1,'nc::cube(dtype inValue) noexcept']]], - ['cumprod_1785',['cumprod',['../namespacenc.html#aafc4846f2f7956841d356060c9689cba',1,'nc::cumprod()'],['../classnc_1_1_nd_array.html#a75a231dec87e18370e9731214983858e',1,'nc::NdArray::cumprod(Axis inAxis=Axis::NONE) const']]], - ['cumsum_1786',['cumsum',['../classnc_1_1_nd_array.html#a4baa93f2a125d7665f3cdfd8d96d3acc',1,'nc::NdArray::cumsum()'],['../namespacenc.html#a2abc8c4a18823234e3baec64d10c0dcd',1,'nc::cumsum()']]], - ['cyclic_5fhankel_5f1_1787',['cyclic_hankel_1',['../namespacenc_1_1special.html#af5dd42de33ec77dda47dd089561895d5',1,'nc::special::cyclic_hankel_1(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#ae7053cd6eafb59a62ba6ede63aac6f90',1,'nc::special::cyclic_hankel_1(dtype1 inV, const NdArray< dtype2 > &inX)']]], - ['cyclic_5fhankel_5f2_1788',['cyclic_hankel_2',['../namespacenc_1_1special.html#a388472a49e89f21b3eb144368fe55664',1,'nc::special::cyclic_hankel_2(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a8e3b27238d1cae20e4ee071766549c5d',1,'nc::special::cyclic_hankel_2(dtype1 inV, const NdArray< dtype2 > &inX)']]] + ['calculateparity_1802',['calculateParity',['../namespacenc_1_1edac_1_1detail.html#aea349d7b4d28ca91b85bcb3a2823c145',1,'nc::edac::detail::calculateParity(const std::bitset< DataBits > &data, IntType parityBit)'],['../namespacenc_1_1edac_1_1detail.html#abde37c852253de171988da5e4b775273',1,'nc::edac::detail::calculateParity(const boost::dynamic_bitset<> &data) noexcept'],['../namespacenc_1_1edac_1_1detail.html#ad3215e8486eb3a544a483e5234c856d7',1,'nc::edac::detail::calculateParity(const std::bitset< DataBits > &data) noexcept']]], + ['cauchy_1803',['cauchy',['../namespacenc_1_1random.html#a61dc9fcfaee6e2a74e3f2e1f0e9c039b',1,'nc::random::cauchy(const Shape &inShape, dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#aa72b221b82940e126a4c740ee55b269b',1,'nc::random::cauchy(dtype inMean=0, dtype inSigma=1)']]], + ['cbegin_1804',['cbegin',['../classnc_1_1_data_cube.html#adee7aa24a04d84f83f4c76ef8dcec974',1,'nc::DataCube::cbegin()'],['../classnc_1_1_nd_array.html#a0bee49339bdc4d7edbeb5efa73133cc3',1,'nc::NdArray::cbegin() const noexcept'],['../classnc_1_1_nd_array.html#a4a3d1f968c924a4dc74cd8b617d30df6',1,'nc::NdArray::cbegin(size_type inRow) const']]], + ['cbrt_1805',['cbrt',['../namespacenc.html#ae0f91253a3818ac7a12a9d5120ee9a14',1,'nc::cbrt(const NdArray< dtype > &inArray)'],['../namespacenc.html#a21de0caa1ff8e9e7baed8a8a57f7bcab',1,'nc::cbrt(dtype inValue) noexcept']]], + ['ccolbegin_1806',['ccolbegin',['../classnc_1_1_nd_array.html#a25c7145679e41227023ad6de4ab5cd18',1,'nc::NdArray::ccolbegin() const noexcept'],['../classnc_1_1_nd_array.html#a1252a696593c510d506c1bca8bd65c51',1,'nc::NdArray::ccolbegin(size_type inCol) const']]], + ['ccolend_1807',['ccolend',['../classnc_1_1_nd_array.html#a4a493445c10ed3c299632bf8c7077cfb',1,'nc::NdArray::ccolend(size_type inCol) const'],['../classnc_1_1_nd_array.html#ad2833ea5479c37de114bf52afff04a20',1,'nc::NdArray::ccolend() const noexcept']]], + ['ceil_1808',['ceil',['../namespacenc.html#a375f83bc366e3b26842a03b9688b8a33',1,'nc::ceil(const NdArray< dtype > &inArray)'],['../namespacenc.html#a291189b2c2bc35a608b393ab1c06e84a',1,'nc::ceil(dtype inValue) noexcept']]], + ['cend_1809',['cend',['../classnc_1_1_data_cube.html#aca3c0041f121ed92d47d1f2873f713e4',1,'nc::DataCube::cend()'],['../classnc_1_1_nd_array.html#aa16bc96e4bbafbc8a06743f3e4a10a6a',1,'nc::NdArray::cend() const noexcept'],['../classnc_1_1_nd_array.html#a4da6aaa43b6074a4353328a8047992f6',1,'nc::NdArray::cend(size_type inRow) const']]], + ['centerofmass_1810',['centerOfMass',['../namespacenc.html#a830888da11b33ea36bf4fc580d8c4757',1,'nc']]], + ['centroid_1811',['Centroid',['../classnc_1_1image_processing_1_1_centroid.html#a3b97e4ddc31b85eb8c3f84b398429a35',1,'nc::imageProcessing::Centroid::Centroid()=default'],['../classnc_1_1image_processing_1_1_centroid.html#a59d0af7acae8d24d29ccb372440aed22',1,'nc::imageProcessing::Centroid::Centroid(const Cluster< dtype > &inCluster)']]], + ['centroidclusters_1812',['centroidClusters',['../namespacenc_1_1image_processing.html#adbb987932dd69ec19029228e065c6603',1,'nc::imageProcessing']]], + ['chebyshev_5ft_1813',['chebyshev_t',['../namespacenc_1_1polynomial.html#afc70c903be3c216cf6215b76c89fecc0',1,'nc::polynomial::chebyshev_t(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#a0ce5634d805736db2082358497bac2f4',1,'nc::polynomial::chebyshev_t(uint32 n, const NdArray< dtype > &inArrayX)']]], + ['chebyshev_5fu_1814',['chebyshev_u',['../namespacenc_1_1polynomial.html#ae03d7859d449ee3fa17f2d09bb2b5638',1,'nc::polynomial::chebyshev_u(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a1e0f56b8366b1f83b48e30e7bb04c937',1,'nc::polynomial::chebyshev_u(uint32 n, dtype x)']]], + ['checkbitsconsistent_1815',['checkBitsConsistent',['../namespacenc_1_1edac_1_1detail.html#af386b23445a4942453c69cff80ee0e20',1,'nc::edac::detail']]], + ['chisquare_1816',['chiSquare',['../namespacenc_1_1random.html#a329370aed893f0e10a8050520cf0bbd4',1,'nc::random::chiSquare(const Shape &inShape, dtype inDof)'],['../namespacenc_1_1random.html#abb480e9a17b71ea09ef0f043c081e9ff',1,'nc::random::chiSquare(dtype inDof)']]], + ['choice_1817',['choice',['../namespacenc_1_1random.html#ad60ec32743642bd0540fec0076043fed',1,'nc::random::choice(const NdArray< dtype > &inArray)'],['../namespacenc_1_1random.html#a7fcf28e4b1a2b015b1099986c5202877',1,'nc::random::choice(const NdArray< dtype > &inArray, uint32 inNum, bool replace=true)']]], + ['cholesky_1818',['cholesky',['../namespacenc_1_1linalg.html#ac2d27e58dd0f082ef5a422d545699d19',1,'nc::linalg']]], + ['clampmagnitude_1819',['clampMagnitude',['../classnc_1_1_vec2.html#abb0f6f8cacc680a464425d908e1e55cc',1,'nc::Vec2::clampMagnitude()'],['../classnc_1_1_vec3.html#a4f3cfcbd67a402820cc8e0576dccd2e4',1,'nc::Vec3::clampMagnitude()']]], + ['clip_1820',['clip',['../classnc_1_1_nd_array.html#a5a7fa82bdf3f34fcd3cc1dd2169c6c6f',1,'nc::NdArray::clip()'],['../namespacenc.html#af82b46f44ea7fad5bbd8ef9acf2499c3',1,'nc::clip(const NdArray< dtype > &inArray, dtype inMinValue, dtype inMaxValue)'],['../namespacenc.html#a5200696e06dadf4eca2f0d7332ed4af1',1,'nc::clip(dtype inValue, dtype inMinValue, dtype inMaxValue)']]], + ['cluster_1821',['Cluster',['../classnc_1_1image_processing_1_1_cluster.html#a73ce20625b5ca5d9e0d872cc8ad885dc',1,'nc::imageProcessing::Cluster::Cluster(uint32 inClusterId) noexcept'],['../classnc_1_1image_processing_1_1_cluster.html#a9c84aca9710bec5c721fd6a9f94182c3',1,'nc::imageProcessing::Cluster::Cluster()=default']]], + ['clusterid_1822',['clusterId',['../classnc_1_1image_processing_1_1_cluster.html#abcc9f76b1d903546a3604ef87795d37e',1,'nc::imageProcessing::Cluster']]], + ['clustermaker_1823',['ClusterMaker',['../classnc_1_1image_processing_1_1_cluster_maker.html#a17c7a9f6260f7d6d0aea002b7e5e6ae6',1,'nc::imageProcessing::ClusterMaker']]], + ['clusterpixels_1824',['clusterPixels',['../namespacenc_1_1image_processing.html#a9b0730e1067dc755ee1fa2ecf280c14f',1,'nc::imageProcessing']]], + ['cnr_1825',['cnr',['../namespacenc_1_1special.html#a8249c674798e782f98a90942818ab395',1,'nc::special']]], + ['coefficients_1826',['coefficients',['../classnc_1_1polynomial_1_1_poly1d.html#abc31b5e093fd3ce5b2c14eade8d346a9',1,'nc::polynomial::Poly1d']]], + ['col_1827',['col',['../classnc_1_1image_processing_1_1_centroid.html#a4ef0e9b2faa4999af5c3597a60140d6c',1,'nc::imageProcessing::Centroid']]], + ['colbegin_1828',['colbegin',['../classnc_1_1_nd_array.html#a41f363682d797ed0ed236cf91bd644f1',1,'nc::NdArray::colbegin() noexcept'],['../classnc_1_1_nd_array.html#a3730d4ac599c06e0e25ac7838f53240b',1,'nc::NdArray::colbegin(size_type inCol)'],['../classnc_1_1_nd_array.html#ab6bf02841ec667f5bb4266da569c99fc',1,'nc::NdArray::colbegin() const noexcept'],['../classnc_1_1_nd_array.html#acadf6ded9a6eb2638d975da9dbbfe38c',1,'nc::NdArray::colbegin(size_type inCol) const']]], + ['colend_1829',['colend',['../classnc_1_1_nd_array.html#a6501fd771b4dcf1fb49defeee43a47cc',1,'nc::NdArray::colend() noexcept'],['../classnc_1_1_nd_array.html#ae611e2ecc5bae6035d0de4d48f5de239',1,'nc::NdArray::colend(size_type inCol)'],['../classnc_1_1_nd_array.html#ac1297463b545ecfd72d22549ce0db02a',1,'nc::NdArray::colend() const noexcept'],['../classnc_1_1_nd_array.html#a97f4fdf4d1a588662733af2bc7e63aaa',1,'nc::NdArray::colend(size_type inCol) const']]], + ['colmax_1830',['colMax',['../classnc_1_1image_processing_1_1_cluster.html#a8c884e5e55d41c09165bca85446edb1f',1,'nc::imageProcessing::Cluster']]], + ['colmin_1831',['colMin',['../classnc_1_1image_processing_1_1_cluster.html#a27734d0fa45c7440e3018fa36c6633f9',1,'nc::imageProcessing::Cluster']]], + ['column_1832',['column',['../classnc_1_1_nd_array.html#a4dc9d45ee849274808d850deeba451dd',1,'nc::NdArray']]], + ['column_5fstack_1833',['column_stack',['../namespacenc.html#a940bbaf9f760ce2d85119beb4a5c23f2',1,'nc']]], + ['comp_5fellint_5f1_1834',['comp_ellint_1',['../namespacenc_1_1special.html#a3b24e9dde5d68f19d8a29de419e32024',1,'nc::special::comp_ellint_1(dtype inK)'],['../namespacenc_1_1special.html#a445930bd5caceb59104bc466c55d479a',1,'nc::special::comp_ellint_1(const NdArray< dtype > &inArrayK)']]], + ['comp_5fellint_5f2_1835',['comp_ellint_2',['../namespacenc_1_1special.html#abfcffce97bdc9114b78a4c6d06956fc5',1,'nc::special::comp_ellint_2(dtype inK)'],['../namespacenc_1_1special.html#abb6b67ccb2a8ea054c188d82f3a67013',1,'nc::special::comp_ellint_2(const NdArray< dtype > &inArrayK)']]], + ['comp_5fellint_5f3_1836',['comp_ellint_3',['../namespacenc_1_1special.html#a8c90b0cd0de06a5e789e3b9f8b0a1243',1,'nc::special::comp_ellint_3(dtype1 inK, dtype2 inV)'],['../namespacenc_1_1special.html#a40e29e793c7c7ee437f242a8cc7e8e26',1,'nc::special::comp_ellint_3(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayV)']]], + ['complementarymedianfilter_1837',['complementaryMedianFilter',['../namespacenc_1_1filter.html#a2343ac38b1ec7c4cbde82a3fe20b4c21',1,'nc::filter']]], + ['complementarymedianfilter1d_1838',['complementaryMedianFilter1d',['../namespacenc_1_1filter.html#aed171f8ad8a79d99c13158c909ac4017',1,'nc::filter']]], + ['complex_1839',['complex',['../namespacenc.html#a56639fcc468435514861ce0e5059d82f',1,'nc::complex(dtype inReal)'],['../namespacenc.html#a1d8b87baeef70163d94b40c96759ecc0',1,'nc::complex(const NdArray< dtype > &inReal, const NdArray< dtype > &inImag)'],['../namespacenc.html#ab84a62b7de04ef6f69870e51f5dd8d00',1,'nc::complex(const NdArray< dtype > &inReal)'],['../namespacenc.html#a2e653b99a0f26149fe399ebed1fc949e',1,'nc::complex(dtype inReal, dtype inImag)']]], + ['complex_5fcast_1840',['complex_cast',['../namespacenc.html#ad639d68db9e1b3ea9acc08efe4bad20e',1,'nc']]], + ['concatenate_1841',['concatenate',['../namespacenc.html#a027070169f1750a74315d07c5bbdfb03',1,'nc']]], + ['conj_1842',['conj',['../namespacenc.html#a26e9df3c46d4f782d04c8d35881aad80',1,'nc::conj(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a0387ae5584e72894ae9e690eba21e26b',1,'nc::conj(const std::complex< dtype > &inValue)']]], + ['conjugate_1843',['conjugate',['../classnc_1_1rotations_1_1_quaternion.html#ade406544e8360506bb77102d17b14e61',1,'nc::rotations::Quaternion']]], + ['constant1d_1844',['constant1d',['../namespacenc_1_1filter_1_1boundary.html#a09c2e0a7f9ff3c1fbbbee0136d80a2e0',1,'nc::filter::boundary']]], + ['constant2d_1845',['constant2d',['../namespacenc_1_1filter_1_1boundary.html#a0e0bd2ad1d6ac1b1d248175b9bc422f6',1,'nc::filter::boundary']]], + ['contains_1846',['contains',['../classnc_1_1_nd_array.html#ad0c493a734dbca9f622d0f7ca6dffbf4',1,'nc::NdArray::contains()'],['../namespacenc.html#a89349379637971764e6efe28ad8c1848',1,'nc::contains()']]], + ['convolve_1847',['convolve',['../namespacenc_1_1filter.html#abc4c77c759de3cd79f3fc02b7461d971',1,'nc::filter']]], + ['convolve1d_1848',['convolve1d',['../namespacenc_1_1filter.html#a21d48fecf984290cb5a4388d50371b13',1,'nc::filter']]], + ['coordinate_1849',['Coordinate',['../classnc_1_1coordinates_1_1_coordinate.html#a0f541169a4c318a5cf4fd0a50a4c2013',1,'nc::coordinates::Coordinate::Coordinate()=default'],['../classnc_1_1coordinates_1_1_coordinate.html#a983a167d97af973947f76474ab299ab8',1,'nc::coordinates::Coordinate::Coordinate(double inRaDegrees, double inDecDegrees)'],['../classnc_1_1coordinates_1_1_coordinate.html#a68eafc66dfeb8551fa7d8960f116be83',1,'nc::coordinates::Coordinate::Coordinate(uint8 inRaHours, uint8 inRaMinutes, double inRaSeconds, Sign inSign, uint8 inDecDegreesWhole, uint8 inDecMinutes, double inDecSeconds)'],['../classnc_1_1coordinates_1_1_coordinate.html#a7cf9e8138023ced7cfcb071299018fd5',1,'nc::coordinates::Coordinate::Coordinate(const RA &inRA, const Dec &inDec) noexcept'],['../classnc_1_1coordinates_1_1_coordinate.html#a35b32fa280c920d0b528472f7726a03d',1,'nc::coordinates::Coordinate::Coordinate(const NdArray< double > &inCartesianVector)'],['../classnc_1_1coordinates_1_1_coordinate.html#aa023b8b0e74159909e99aabcf778c57f',1,'nc::coordinates::Coordinate::Coordinate(double inX, double inY, double inZ) noexcept']]], + ['copy_1850',['copy',['../classnc_1_1_nd_array.html#a1f2d2aacc254129f36b0557a661e6664',1,'nc::NdArray::copy()'],['../namespacenc.html#a9bbe10d41fdbd74a6254bad44c7c7cf6',1,'nc::copy()'],['../namespacenc_1_1stl__algorithms.html#ae62a4e197ec640aacea520220bd27cef',1,'nc::stl_algorithms::copy()']]], + ['copysign_1851',['copySign',['../namespacenc.html#a9e08e770fd2283734390ab631edc250d',1,'nc']]], + ['copyto_1852',['copyto',['../namespacenc.html#af8eca852439098c1fff96384d88d82dd',1,'nc']]], + ['corrcoef_1853',['corrcoef',['../namespacenc.html#a2232014b014afca61e5ebe93c5ba2c0c',1,'nc']]], + ['cos_1854',['cos',['../namespacenc.html#a736de91eb8f79bfaf4dc92d7161f1c87',1,'nc::cos(dtype inValue) noexcept'],['../namespacenc.html#af208ae28fe0df17392ca128188cbcd73',1,'nc::cos(const NdArray< dtype > &inArray)']]], + ['cosh_1855',['cosh',['../namespacenc.html#abb07133a1f54b24a4a4986eefb5eda85',1,'nc::cosh(dtype inValue) noexcept'],['../namespacenc.html#a520e0290bb667b43a9f494b3858b5f17',1,'nc::cosh(const NdArray< dtype > &inArray)']]], + ['count_1856',['count',['../namespacenc_1_1stl__algorithms.html#a1fa02155befc0c39a853e66f6df26745',1,'nc::stl_algorithms']]], + ['count_5fnonzero_1857',['count_nonzero',['../namespacenc.html#aebb0dfe3637c07f6a9f6e4f08cacf515',1,'nc']]], + ['cov_1858',['cov',['../namespacenc.html#a61dbb6e2f778525a305dc235a9a43c76',1,'nc']]], + ['cov_5finv_1859',['cov_inv',['../namespacenc.html#a2a45ff9db0b44932844a5d9cb13b2d38',1,'nc']]], + ['crbegin_1860',['crbegin',['../classnc_1_1_nd_array.html#a95cbc4440ac1e139642a08cbd075dafc',1,'nc::NdArray::crbegin() const noexcept'],['../classnc_1_1_nd_array.html#af6b2581fae90a5c67e87df6a82ea13c5',1,'nc::NdArray::crbegin(size_type inRow) const']]], + ['crcolbegin_1861',['crcolbegin',['../classnc_1_1_nd_array.html#a8afdb68c11124e1fe0309204f3996435',1,'nc::NdArray::crcolbegin(size_type inCol) const'],['../classnc_1_1_nd_array.html#a35883ec844477b9bca2597939dd99c2a',1,'nc::NdArray::crcolbegin() const noexcept']]], + ['crcolend_1862',['crcolend',['../classnc_1_1_nd_array.html#a35b66f060b1ed99a6fb5247581fcb8fc',1,'nc::NdArray::crcolend(size_type inCol) const'],['../classnc_1_1_nd_array.html#a55e5d41795f14f7f2aa256ba0f4bb676',1,'nc::NdArray::crcolend() const noexcept']]], + ['crend_1863',['crend',['../classnc_1_1_nd_array.html#af3b4c48e3328a8dd22eedd27c225aeb5',1,'nc::NdArray::crend(size_type inRow) const'],['../classnc_1_1_nd_array.html#ac5d1c900c4db4263d1bf799ac3551ed6',1,'nc::NdArray::crend() const noexcept']]], + ['cross_1864',['cross',['../classnc_1_1_vec3.html#af8173f6e61e9a63beae3092fd8dc4378',1,'nc::Vec3::cross()'],['../namespacenc.html#a4d1ed581965ed53090824290def38565',1,'nc::cross()']]], + ['cslice_1865',['cSlice',['../classnc_1_1_nd_array.html#a29eabba849b35a3095cd341fa1c7b123',1,'nc::NdArray']]], + ['cube_1866',['cube',['../namespacenc.html#a5899ccef8410243438debea3d8296df6',1,'nc::cube(dtype inValue) noexcept'],['../namespacenc.html#a224d96b41af957c782c02f1cb25e66fd',1,'nc::cube(const NdArray< dtype > &inArray)'],['../namespacenc_1_1utils.html#a46e88717d4d32003bb449fd5cefd401c',1,'nc::utils::cube()']]], + ['cumprod_1867',['cumprod',['../classnc_1_1_nd_array.html#a75a231dec87e18370e9731214983858e',1,'nc::NdArray::cumprod()'],['../namespacenc.html#aafc4846f2f7956841d356060c9689cba',1,'nc::cumprod()']]], + ['cumsum_1868',['cumsum',['../classnc_1_1_nd_array.html#a4baa93f2a125d7665f3cdfd8d96d3acc',1,'nc::NdArray::cumsum()'],['../namespacenc.html#a2abc8c4a18823234e3baec64d10c0dcd',1,'nc::cumsum()']]], + ['cyclic_5fhankel_5f1_1869',['cyclic_hankel_1',['../namespacenc_1_1special.html#af5dd42de33ec77dda47dd089561895d5',1,'nc::special::cyclic_hankel_1(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#ae7053cd6eafb59a62ba6ede63aac6f90',1,'nc::special::cyclic_hankel_1(dtype1 inV, const NdArray< dtype2 > &inX)']]], + ['cyclic_5fhankel_5f2_1870',['cyclic_hankel_2',['../namespacenc_1_1special.html#a388472a49e89f21b3eb144368fe55664',1,'nc::special::cyclic_hankel_2(dtype1 inV, dtype2 inX)'],['../namespacenc_1_1special.html#a8e3b27238d1cae20e4ee071766549c5d',1,'nc::special::cyclic_hankel_2(dtype1 inV, const NdArray< dtype2 > &inX)']]] ]; diff --git a/docs/doxygen/html/search/functions_3.html b/docs/doxygen/html/search/functions_3.html index 756ecfee2..d79f55b8e 100644 --- a/docs/doxygen/html/search/functions_3.html +++ b/docs/doxygen/html/search/functions_3.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_3.js b/docs/doxygen/html/search/functions_3.js index 2ee1539b6..d6da54374 100644 --- a/docs/doxygen/html/search/functions_3.js +++ b/docs/doxygen/html/search/functions_3.js @@ -1,27 +1,29 @@ var searchData= [ - ['data_1789',['data',['../classnc_1_1_nd_array.html#a14e4541ae1e02ee5acdc01e18337d546',1,'nc::NdArray::data() const noexcept'],['../classnc_1_1_nd_array.html#a3df9d88c710b83f211f67dd4511b4f49',1,'nc::NdArray::data() noexcept']]], - ['datacube_1790',['DataCube',['../classnc_1_1_data_cube.html#a8224b613a7c87a16e06ef08d6f90926e',1,'nc::DataCube::DataCube()=default'],['../classnc_1_1_data_cube.html#a7ae08af82b0553d2b294286bdf06703b',1,'nc::DataCube::DataCube(uint32 inSize)']]], - ['datarelease_1791',['dataRelease',['../classnc_1_1_nd_array.html#ade07629d4094244f1dfca863af67e7c0',1,'nc::NdArray']]], - ['dec_1792',['dec',['../classnc_1_1coordinates_1_1_coordinate.html#ab5502c231ff400b90fc9ede39a524eed',1,'nc::coordinates::Coordinate']]], - ['dec_1793',['Dec',['../classnc_1_1coordinates_1_1_dec.html#af821e7394e5de4c396dd2c60aa7c0eca',1,'nc::coordinates::Dec::Dec()=default'],['../classnc_1_1coordinates_1_1_dec.html#a63de0ff17c7f842866893fdfacd0edb7',1,'nc::coordinates::Dec::Dec(double inDegrees)'],['../classnc_1_1coordinates_1_1_dec.html#af462329adb3a1bdb1f6b724e7a92a442',1,'nc::coordinates::Dec::Dec(Sign inSign, uint8 inDegrees, uint8 inMinutes, double inSeconds) noexcept']]], - ['deg2rad_1794',['deg2rad',['../namespacenc.html#a828388cb973b4e28e0b7060694e2604a',1,'nc::deg2rad(const NdArray< dtype > &inArray)'],['../namespacenc.html#a2cdc1c791ab98eb708ba5662ffb82b39',1,'nc::deg2rad(dtype inValue) noexcept']]], - ['degrees_1795',['degrees',['../namespacenc.html#a75c2b6b4713a5695a4738da25cf9d262',1,'nc::degrees(dtype inValue) noexcept'],['../namespacenc.html#aab0d24a5ffaf73330854bbcfc47d2fee',1,'nc::degrees(const NdArray< dtype > &inArray)'],['../classnc_1_1coordinates_1_1_dec.html#ad2e47ff7298e1b88bb1b77940c241c8f',1,'nc::coordinates::Dec::degrees()'],['../classnc_1_1coordinates_1_1_r_a.html#aaf73bcb5e2afd0e075c452148f67a3bd',1,'nc::coordinates::RA::degrees()']]], - ['degreeseperation_1796',['degreeSeperation',['../namespacenc_1_1coordinates.html#abc47b2d64d107bcb19ff696ecff89edf',1,'nc::coordinates::degreeSeperation(const NdArray< double > &inVector1, const NdArray< double > &inVector2)'],['../namespacenc_1_1coordinates.html#a06135e21507cfe2aa1cb4154fe1702bf',1,'nc::coordinates::degreeSeperation(const Coordinate &inCoordinate1, const Coordinate &inCoordinate2)'],['../classnc_1_1coordinates_1_1_coordinate.html#a9fd37a2cb2c3b45aee933e4e5f95d074',1,'nc::coordinates::Coordinate::degreeSeperation(const Coordinate &inOtherCoordinate) const'],['../classnc_1_1coordinates_1_1_coordinate.html#a223ae10750fed3706997220e76f25c0d',1,'nc::coordinates::Coordinate::degreeSeperation(const NdArray< double > &inVector) const']]], - ['degreeswhole_1797',['degreesWhole',['../classnc_1_1coordinates_1_1_dec.html#abe36c8e081efa41452dc10ddd7ffcda7',1,'nc::coordinates::Dec']]], - ['dekker_1798',['Dekker',['../classnc_1_1roots_1_1_dekker.html#a77b88bb369da2d03d34717b7d8e0a2ab',1,'nc::roots::Dekker::Dekker(const double epsilon, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_dekker.html#ab0a5db20e82cfd3ef95810ccb7d8c4e6',1,'nc::roots::Dekker::Dekker(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept']]], - ['deleteindices_1799',['deleteIndices',['../namespacenc.html#a53ddac04b49358cb41736640871bcea2',1,'nc::deleteIndices(const NdArray< dtype > &inArray, uint32 inIndex, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a7c33539e037218ba9b0b11acfae38363',1,'nc::deleteIndices(const NdArray< dtype > &inArray, const Slice &inIndicesSlice, Axis inAxis=Axis::NONE)'],['../namespacenc.html#ae59479b36cd7991d9dfc2d836b4d838c',1,'nc::deleteIndices(const NdArray< dtype > &inArray, const NdArray< uint32 > &inArrayIdxs, Axis inAxis=Axis::NONE)']]], - ['deriv_1800',['deriv',['../classnc_1_1polynomial_1_1_poly1d.html#a06b9fb8a31de37a067c9ed54af6295d2',1,'nc::polynomial::Poly1d']]], - ['det_1801',['det',['../namespacenc_1_1linalg.html#a55bafcebbc897458164e8dc511b6119c',1,'nc::linalg']]], - ['diag_1802',['diag',['../namespacenc.html#a8c80cee3e4853bc79290c995cf9d69dc',1,'nc']]], - ['diagflat_1803',['diagflat',['../namespacenc.html#af3ab63d17fa40b3c3880a9065a95e47f',1,'nc']]], - ['diagonal_1804',['diagonal',['../namespacenc.html#a8eeb67e5ad2a5b0567570a774b7fb1f3',1,'nc::diagonal()'],['../classnc_1_1_nd_array.html#aae6a8845bf3654a27265ecffee163628',1,'nc::NdArray::diagonal()']]], - ['diff_1805',['diff',['../namespacenc.html#a94701ce8e9c8a4bb6dd162da5d07eadd',1,'nc']]], - ['digamma_1806',['digamma',['../namespacenc_1_1special.html#a6419633142287d898c551f99cd7c589d',1,'nc::special::digamma(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#a78dead2375df379d1976ff87f62fbade',1,'nc::special::digamma(dtype inValue)']]], - ['discrete_1807',['discrete',['../namespacenc_1_1random.html#a2ea5db9ee73d9f7a633e5899e4be2c94',1,'nc::random::discrete(const NdArray< double > &inWeights)'],['../namespacenc_1_1random.html#ae5367b53538e888028853607e1c522a4',1,'nc::random::discrete(const Shape &inShape, const NdArray< double > &inWeights)']]], - ['distance_1808',['distance',['../classnc_1_1_vec2.html#a63c2b2b7a16828af770d38176b6cb3aa',1,'nc::Vec2::distance()'],['../classnc_1_1_vec3.html#a301f3edcb8cb17e7e3e5dbdd5255bdd2',1,'nc::Vec3::distance()']]], - ['divide_1809',['divide',['../namespacenc.html#a48c5c456736ced98b946e89b573c204e',1,'nc::divide(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a85d01a50833bff37f13437cdd3e1a1a0',1,'nc::divide(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#aad734f111f1fc140c2c3c8fc84f398b5',1,'nc::divide(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#aed2d517035fdd5539971fa0c1dcb61df',1,'nc::divide(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#ade8f0271af8c94c0a0e1166aba83a619',1,'nc::divide(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a2389581759aa0446030642193638ef63',1,'nc::divide(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a7d83e88182dd99da3ad09e76bb916a35',1,'nc::divide(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a130f8bc6ccdb70da4cfb245659bc61af',1,'nc::divide(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#a9b10ead8c068b9b473023c993dc25d7c',1,'nc::divide(dtype value, const NdArray< std::complex< dtype >> &inArray)']]], - ['dot_1810',['dot',['../namespacenc.html#a2c9414f356ae2025a7cde3a192d6d67d',1,'nc::dot(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#abfdbde62bdc084a9b8f9a894fa173c40',1,'nc::dot(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a6ab78d4355c57b053b6e44f710d60528',1,'nc::dot(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../classnc_1_1_nd_array.html#acca065e13f826c504493a2eae31f5d0e',1,'nc::NdArray::dot()'],['../classnc_1_1_vec2.html#a231781cc06b8f005a1dda5003498ec99',1,'nc::Vec2::dot()'],['../classnc_1_1_vec3.html#ac9f2bf549a4b800f140de060a0281a7e',1,'nc::Vec3::dot()']]], - ['down_1811',['down',['../classnc_1_1_vec2.html#a265ae124776dd84b657c4ff6d7677352',1,'nc::Vec2::down()'],['../classnc_1_1_vec3.html#a4ea0c82948117391c6c42a99e3093f91',1,'nc::Vec3::down()']]], - ['dump_1812',['dump',['../classnc_1_1_data_cube.html#abbaa9ebba302183cae3563c9eb371ee3',1,'nc::DataCube::dump()'],['../namespacenc.html#af6e71bd96dbc78f9ca018d2da0a7e653',1,'nc::dump()'],['../classnc_1_1_nd_array.html#ada776db2a3c9ffef3dd7bf656cf75f08',1,'nc::NdArray::dump()']]] + ['data_1871',['data',['../classnc_1_1_nd_array.html#a3df9d88c710b83f211f67dd4511b4f49',1,'nc::NdArray::data() noexcept'],['../classnc_1_1_nd_array.html#a14e4541ae1e02ee5acdc01e18337d546',1,'nc::NdArray::data() const noexcept']]], + ['databitscovered_1872',['dataBitsCovered',['../namespacenc_1_1edac_1_1detail.html#aa8a14d5fd872ed0292631e57f5afe618',1,'nc::edac::detail']]], + ['datacube_1873',['DataCube',['../classnc_1_1_data_cube.html#a8224b613a7c87a16e06ef08d6f90926e',1,'nc::DataCube::DataCube()=default'],['../classnc_1_1_data_cube.html#a7ae08af82b0553d2b294286bdf06703b',1,'nc::DataCube::DataCube(uint32 inSize)']]], + ['datarelease_1874',['dataRelease',['../classnc_1_1_nd_array.html#ade07629d4094244f1dfca863af67e7c0',1,'nc::NdArray']]], + ['dec_1875',['dec',['../classnc_1_1coordinates_1_1_coordinate.html#ab5502c231ff400b90fc9ede39a524eed',1,'nc::coordinates::Coordinate']]], + ['dec_1876',['Dec',['../classnc_1_1coordinates_1_1_dec.html#af821e7394e5de4c396dd2c60aa7c0eca',1,'nc::coordinates::Dec::Dec()=default'],['../classnc_1_1coordinates_1_1_dec.html#a63de0ff17c7f842866893fdfacd0edb7',1,'nc::coordinates::Dec::Dec(double inDegrees)'],['../classnc_1_1coordinates_1_1_dec.html#af462329adb3a1bdb1f6b724e7a92a442',1,'nc::coordinates::Dec::Dec(Sign inSign, uint8 inDegrees, uint8 inMinutes, double inSeconds) noexcept']]], + ['decode_1877',['decode',['../namespacenc_1_1edac.html#aa24d4f99fd0739df7480845e96668e0f',1,'nc::edac']]], + ['deg2rad_1878',['deg2rad',['../namespacenc.html#a2cdc1c791ab98eb708ba5662ffb82b39',1,'nc::deg2rad(dtype inValue) noexcept'],['../namespacenc.html#a828388cb973b4e28e0b7060694e2604a',1,'nc::deg2rad(const NdArray< dtype > &inArray)']]], + ['degrees_1879',['degrees',['../classnc_1_1coordinates_1_1_dec.html#ad2e47ff7298e1b88bb1b77940c241c8f',1,'nc::coordinates::Dec::degrees()'],['../classnc_1_1coordinates_1_1_r_a.html#aaf73bcb5e2afd0e075c452148f67a3bd',1,'nc::coordinates::RA::degrees()'],['../namespacenc.html#aab0d24a5ffaf73330854bbcfc47d2fee',1,'nc::degrees(const NdArray< dtype > &inArray)'],['../namespacenc.html#a75c2b6b4713a5695a4738da25cf9d262',1,'nc::degrees(dtype inValue) noexcept']]], + ['degreeseperation_1880',['degreeSeperation',['../classnc_1_1coordinates_1_1_coordinate.html#a9fd37a2cb2c3b45aee933e4e5f95d074',1,'nc::coordinates::Coordinate::degreeSeperation(const Coordinate &inOtherCoordinate) const'],['../classnc_1_1coordinates_1_1_coordinate.html#a223ae10750fed3706997220e76f25c0d',1,'nc::coordinates::Coordinate::degreeSeperation(const NdArray< double > &inVector) const'],['../namespacenc_1_1coordinates.html#a06135e21507cfe2aa1cb4154fe1702bf',1,'nc::coordinates::degreeSeperation(const Coordinate &inCoordinate1, const Coordinate &inCoordinate2)'],['../namespacenc_1_1coordinates.html#abc47b2d64d107bcb19ff696ecff89edf',1,'nc::coordinates::degreeSeperation(const NdArray< double > &inVector1, const NdArray< double > &inVector2)']]], + ['degreeswhole_1881',['degreesWhole',['../classnc_1_1coordinates_1_1_dec.html#abe36c8e081efa41452dc10ddd7ffcda7',1,'nc::coordinates::Dec']]], + ['dekker_1882',['Dekker',['../classnc_1_1roots_1_1_dekker.html#a77b88bb369da2d03d34717b7d8e0a2ab',1,'nc::roots::Dekker::Dekker(const double epsilon, std::function< double(double)> f) noexcept'],['../classnc_1_1roots_1_1_dekker.html#ab0a5db20e82cfd3ef95810ccb7d8c4e6',1,'nc::roots::Dekker::Dekker(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f) noexcept']]], + ['deleteindices_1883',['deleteIndices',['../namespacenc.html#a53ddac04b49358cb41736640871bcea2',1,'nc::deleteIndices(const NdArray< dtype > &inArray, uint32 inIndex, Axis inAxis=Axis::NONE)'],['../namespacenc.html#ae59479b36cd7991d9dfc2d836b4d838c',1,'nc::deleteIndices(const NdArray< dtype > &inArray, const NdArray< uint32 > &inArrayIdxs, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a7c33539e037218ba9b0b11acfae38363',1,'nc::deleteIndices(const NdArray< dtype > &inArray, const Slice &inIndicesSlice, Axis inAxis=Axis::NONE)']]], + ['deriv_1884',['deriv',['../classnc_1_1polynomial_1_1_poly1d.html#a06b9fb8a31de37a067c9ed54af6295d2',1,'nc::polynomial::Poly1d']]], + ['det_1885',['det',['../namespacenc_1_1linalg.html#a55bafcebbc897458164e8dc511b6119c',1,'nc::linalg']]], + ['diag_1886',['diag',['../namespacenc.html#a8c80cee3e4853bc79290c995cf9d69dc',1,'nc']]], + ['diagflat_1887',['diagflat',['../namespacenc.html#af3ab63d17fa40b3c3880a9065a95e47f',1,'nc']]], + ['diagonal_1888',['diagonal',['../classnc_1_1_nd_array.html#aae6a8845bf3654a27265ecffee163628',1,'nc::NdArray::diagonal()'],['../namespacenc.html#a8eeb67e5ad2a5b0567570a774b7fb1f3',1,'nc::diagonal(const NdArray< dtype > &inArray, int32 inOffset=0, Axis inAxis=Axis::ROW)']]], + ['diff_1889',['diff',['../namespacenc.html#a94701ce8e9c8a4bb6dd162da5d07eadd',1,'nc']]], + ['digamma_1890',['digamma',['../namespacenc_1_1special.html#a6419633142287d898c551f99cd7c589d',1,'nc::special::digamma(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#a78dead2375df379d1976ff87f62fbade',1,'nc::special::digamma(dtype inValue)']]], + ['discrete_1891',['discrete',['../namespacenc_1_1random.html#a2ea5db9ee73d9f7a633e5899e4be2c94',1,'nc::random::discrete(const NdArray< double > &inWeights)'],['../namespacenc_1_1random.html#ae5367b53538e888028853607e1c522a4',1,'nc::random::discrete(const Shape &inShape, const NdArray< double > &inWeights)']]], + ['distance_1892',['distance',['../classnc_1_1_vec2.html#a63c2b2b7a16828af770d38176b6cb3aa',1,'nc::Vec2::distance()'],['../classnc_1_1_vec3.html#a301f3edcb8cb17e7e3e5dbdd5255bdd2',1,'nc::Vec3::distance()']]], + ['divide_1893',['divide',['../namespacenc.html#a48c5c456736ced98b946e89b573c204e',1,'nc::divide(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a85d01a50833bff37f13437cdd3e1a1a0',1,'nc::divide(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#aad734f111f1fc140c2c3c8fc84f398b5',1,'nc::divide(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#aed2d517035fdd5539971fa0c1dcb61df',1,'nc::divide(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#ade8f0271af8c94c0a0e1166aba83a619',1,'nc::divide(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a2389581759aa0446030642193638ef63',1,'nc::divide(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a7d83e88182dd99da3ad09e76bb916a35',1,'nc::divide(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a130f8bc6ccdb70da4cfb245659bc61af',1,'nc::divide(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#a9b10ead8c068b9b473023c993dc25d7c',1,'nc::divide(dtype value, const NdArray< std::complex< dtype >> &inArray)']]], + ['dot_1894',['dot',['../classnc_1_1_nd_array.html#acca065e13f826c504493a2eae31f5d0e',1,'nc::NdArray::dot()'],['../classnc_1_1_vec2.html#a231781cc06b8f005a1dda5003498ec99',1,'nc::Vec2::dot()'],['../classnc_1_1_vec3.html#ac9f2bf549a4b800f140de060a0281a7e',1,'nc::Vec3::dot()'],['../namespacenc.html#a2c9414f356ae2025a7cde3a192d6d67d',1,'nc::dot(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#abfdbde62bdc084a9b8f9a894fa173c40',1,'nc::dot(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a6ab78d4355c57b053b6e44f710d60528',1,'nc::dot(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)']]], + ['down_1895',['down',['../classnc_1_1_vec3.html#a4ea0c82948117391c6c42a99e3093f91',1,'nc::Vec3::down()'],['../classnc_1_1_vec2.html#a265ae124776dd84b657c4ff6d7677352',1,'nc::Vec2::down()']]], + ['dump_1896',['dump',['../classnc_1_1_nd_array.html#ada776db2a3c9ffef3dd7bf656cf75f08',1,'nc::NdArray::dump()'],['../classnc_1_1_data_cube.html#abbaa9ebba302183cae3563c9eb371ee3',1,'nc::DataCube::dump()'],['../namespacenc.html#af6e71bd96dbc78f9ca018d2da0a7e653',1,'nc::dump()']]] ]; diff --git a/docs/doxygen/html/search/functions_4.html b/docs/doxygen/html/search/functions_4.html index 52627379d..1657cad0d 100644 --- a/docs/doxygen/html/search/functions_4.html +++ b/docs/doxygen/html/search/functions_4.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_4.js b/docs/doxygen/html/search/functions_4.js index 55e4bbfb6..d2da440f2 100644 --- a/docs/doxygen/html/search/functions_4.js +++ b/docs/doxygen/html/search/functions_4.js @@ -1,29 +1,32 @@ var searchData= [ - ['ellint_5f1_1813',['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_1814',['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_1815',['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_1816',['empty',['../namespacenc.html#a3da6e6c01236f9c2af8591a890f7d717',1,'nc::empty(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a47dcd15b30a7fd2b977377ebb37cbdb6',1,'nc::empty(const Shape &inShape)']]], - ['empty_5flike_1817',['empty_like',['../namespacenc.html#ad03bf017e6cc91a4169134de885bb9ad',1,'nc']]], - ['end_1818',['end',['../classnc_1_1image_processing_1_1_cluster.html#afc8b5d168cf1d611be9f5226ec7efd55',1,'nc::imageProcessing::Cluster::end()'],['../classnc_1_1_data_cube.html#a9aeac78f9aec9b69b9673c1e56778b1b',1,'nc::DataCube::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_nd_array.html#a153d3032d72c24d233407a351d0f8174',1,'nc::NdArray::end() noexcept'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a7d5ceccddb2db3b143c772ec9d66460a',1,'nc::imageProcessing::ClusterMaker::end()']]], - ['endianess_1819',['endianess',['../namespacenc.html#a6d1bce5e0cf3f24f84a50b945eec7a26',1,'nc::endianess()'],['../classnc_1_1_nd_array.html#a349b83beffbfb0a631799f921f13f7ad',1,'nc::NdArray::endianess()']]], - ['eod_1820',['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_1821',['epsilon',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a01e23e6687e74de38a9799934aa94d69',1,'nc::DtypeInfo< std::complex< dtype > >::epsilon()'],['../classnc_1_1_dtype_info.html#a845cc6986a3912805ab68960bc2b2318',1,'nc::DtypeInfo::epsilon()']]], - ['equal_1822',['equal',['../namespacenc.html#a7440518ae70823ac15ea1711d8df7bfc',1,'nc::equal()'],['../namespacenc_1_1stl__algorithms.html#ab200b92040bf3da8ee4325f5a994e73d',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2) noexcept'],['../namespacenc_1_1stl__algorithms.html#a684d1011b375da4078afb4474a36b0e6',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2, BinaryPredicate p) noexcept']]], - ['erf_1823',['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_1824',['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_1825',['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_5finv_1826',['erfc_inv',['../namespacenc_1_1special.html#a3c9551b639e79ce3024fef298f4ace8c',1,'nc::special::erfc_inv(const NdArray< dtype > &inArray)'],['../namespacenc_1_1special.html#a653404a544d777c6d7d636a207ee7bca',1,'nc::special::erfc_inv(dtype inValue)']]], - ['essentiallyequal_1827',['essentiallyEqual',['../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'],['../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']]], - ['eulerangles_1828',['eulerAngles',['../classnc_1_1rotations_1_1_d_c_m.html#a75a392cc2db9f9fdcfd8e212d152c9ff',1,'nc::rotations::DCM::eulerAngles(double roll, double pitch, double yaw)'],['../classnc_1_1rotations_1_1_d_c_m.html#a7ad5acfeac4205b7ee348332cb7aeadd',1,'nc::rotations::DCM::eulerAngles(const NdArray< double > &angles)']]], - ['euleraxisangle_1829',['eulerAxisAngle',['../classnc_1_1rotations_1_1_d_c_m.html#aeb6400855cfc4163e09f03b101fe2d92',1,'nc::rotations::DCM::eulerAxisAngle(const NdArray< double > &inAxis, double inAngle)'],['../classnc_1_1rotations_1_1_d_c_m.html#a4da503d407f8ad563ec41364ff5b3b43',1,'nc::rotations::DCM::eulerAxisAngle(const Vec3 &inAxis, double inAngle)']]], - ['exists_1830',['exists',['../classnc_1_1filesystem_1_1_file.html#a9a9b7d3f9505b025038e16a469553515',1,'nc::filesystem::File']]], - ['exp_1831',['exp',['../namespacenc.html#ad7e555d480465930a7ac44f4ab39eea7',1,'nc::exp(dtype inValue) noexcept'],['../namespacenc.html#a4069791fefff15148813bbbbadf064b1',1,'nc::exp(const NdArray< dtype > &inArray)']]], - ['exp2_1832',['exp2',['../namespacenc.html#aafbab1d2bd67c753fb1656e037bd8b1d',1,'nc::exp2(dtype inValue) noexcept'],['../namespacenc.html#a0595c87603ad5c35ddc78eab15148db7',1,'nc::exp2(const NdArray< dtype > &inArray)']]], - ['expint_1833',['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_1834',['expm1',['../namespacenc.html#a1f8b7ba3bb64b868fc41508d6912afab',1,'nc::expm1(dtype inValue) noexcept'],['../namespacenc.html#ac1e31d2bff523a5936799445f16d11af',1,'nc::expm1(const NdArray< dtype > &inArray)']]], - ['exponential_1835',['exponential',['../namespacenc_1_1random.html#a278212d1b177cb2bba47215d083bb10f',1,'nc::random::exponential(dtype inScaleValue=1)'],['../namespacenc_1_1random.html#a5d71db2fa4d818d737554405776d2aea',1,'nc::random::exponential(const Shape &inShape, dtype inScaleValue=1)']]], - ['ext_1836',['ext',['../classnc_1_1filesystem_1_1_file.html#ac51df5a278a9b6045d6f241766c10483',1,'nc::filesystem::File']]], - ['extremevalue_1837',['extremeValue',['../namespacenc_1_1random.html#a11144426dec05283d6c682e0e532af7e',1,'nc::random::extremeValue(dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#a6a5f569b594585794e6b268576d2e587',1,'nc::random::extremeValue(const Shape &inShape, dtype inA=1, dtype inB=1)']]], - ['eye_1838',['eye',['../namespacenc.html#a944a26b6ffe66b39ab9ba6972906bf55',1,'nc::eye(uint32 inN, uint32 inM, int32 inK=0)'],['../namespacenc.html#a1af40ed299fe04e075ca80d0d00dfba0',1,'nc::eye(uint32 inN, int32 inK=0)'],['../namespacenc.html#aa5328556ac755d5aafbe0f0e5d0c7af3',1,'nc::eye(const Shape &inShape, int32 inK=0)']]] + ['ellint_5f1_1897',['ellint_1',['../namespacenc_1_1special.html#aa7fd769db69bde9583f039306c011816',1,'nc::special::ellint_1(dtype1 inK, dtype2 inP)'],['../namespacenc_1_1special.html#a0198bebbecba53e96b36d270be457490',1,'nc::special::ellint_1(const NdArray< dtype1 > &inArrayK, const NdArray< dtype2 > &inArrayP)']]], + ['ellint_5f2_1898',['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_5f3_1899',['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_1900',['empty',['../namespacenc.html#a3da6e6c01236f9c2af8591a890f7d717',1,'nc::empty(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a47dcd15b30a7fd2b977377ebb37cbdb6',1,'nc::empty(const Shape &inShape)']]], + ['empty_5flike_1901',['empty_like',['../namespacenc.html#ad03bf017e6cc91a4169134de885bb9ad',1,'nc']]], + ['encode_1902',['encode',['../namespacenc_1_1edac.html#af5c36a1f2c74d632192cf9fe29cc5f03',1,'nc::edac']]], + ['end_1903',['end',['../classnc_1_1_data_cube.html#a9aeac78f9aec9b69b9673c1e56778b1b',1,'nc::DataCube::end()'],['../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'],['../classnc_1_1_nd_array.html#a546c8b9de00188fab35a6c5075147cc1',1,'nc::NdArray::end(size_type inRow) const']]], + ['endianess_1904',['endianess',['../classnc_1_1_nd_array.html#a349b83beffbfb0a631799f921f13f7ad',1,'nc::NdArray::endianess()'],['../namespacenc.html#a6d1bce5e0cf3f24f84a50b945eec7a26',1,'nc::endianess()']]], + ['eod_1905',['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_1906',['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#a01e23e6687e74de38a9799934aa94d69',1,'nc::DtypeInfo< std::complex< dtype > >::epsilon()']]], + ['equal_1907',['equal',['../namespacenc_1_1stl__algorithms.html#ab200b92040bf3da8ee4325f5a994e73d',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2) noexcept'],['../namespacenc_1_1stl__algorithms.html#a684d1011b375da4078afb4474a36b0e6',1,'nc::stl_algorithms::equal(InputIt1 first1, InputIt1 last1, InputIt2 first2, BinaryPredicate p) noexcept'],['../namespacenc.html#a7440518ae70823ac15ea1711d8df7bfc',1,'nc::equal()']]], + ['erf_1908',['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_1909',['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_1910',['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_1911',['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_1912',['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#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']]], + ['eulerangles_1913',['eulerAngles',['../classnc_1_1rotations_1_1_d_c_m.html#a7ad5acfeac4205b7ee348332cb7aeadd',1,'nc::rotations::DCM::eulerAngles(const NdArray< double > &angles)'],['../classnc_1_1rotations_1_1_d_c_m.html#a75a392cc2db9f9fdcfd8e212d152c9ff',1,'nc::rotations::DCM::eulerAngles(double roll, double pitch, double yaw)']]], + ['euleraxisangle_1914',['eulerAxisAngle',['../classnc_1_1rotations_1_1_d_c_m.html#aeb6400855cfc4163e09f03b101fe2d92',1,'nc::rotations::DCM::eulerAxisAngle(const NdArray< double > &inAxis, double inAngle)'],['../classnc_1_1rotations_1_1_d_c_m.html#a4da503d407f8ad563ec41364ff5b3b43',1,'nc::rotations::DCM::eulerAxisAngle(const Vec3 &inAxis, double inAngle)']]], + ['exists_1915',['exists',['../classnc_1_1filesystem_1_1_file.html#a9a9b7d3f9505b025038e16a469553515',1,'nc::filesystem::File']]], + ['exp_1916',['exp',['../namespacenc.html#ad7e555d480465930a7ac44f4ab39eea7',1,'nc::exp(dtype inValue) noexcept'],['../namespacenc.html#a4069791fefff15148813bbbbadf064b1',1,'nc::exp(const NdArray< dtype > &inArray)']]], + ['exp2_1917',['exp2',['../namespacenc.html#aafbab1d2bd67c753fb1656e037bd8b1d',1,'nc::exp2(dtype inValue) noexcept'],['../namespacenc.html#a0595c87603ad5c35ddc78eab15148db7',1,'nc::exp2(const NdArray< dtype > &inArray)']]], + ['expint_1918',['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_1919',['expm1',['../namespacenc.html#a1f8b7ba3bb64b868fc41508d6912afab',1,'nc::expm1(dtype inValue) noexcept'],['../namespacenc.html#ac1e31d2bff523a5936799445f16d11af',1,'nc::expm1(const NdArray< dtype > &inArray)']]], + ['exponential_1920',['exponential',['../namespacenc_1_1random.html#a278212d1b177cb2bba47215d083bb10f',1,'nc::random::exponential(dtype inScaleValue=1)'],['../namespacenc_1_1random.html#a5d71db2fa4d818d737554405776d2aea',1,'nc::random::exponential(const Shape &inShape, dtype inScaleValue=1)']]], + ['ext_1921',['ext',['../classnc_1_1filesystem_1_1_file.html#ac51df5a278a9b6045d6f241766c10483',1,'nc::filesystem::File']]], + ['extract_1922',['extract',['../namespacenc.html#af75594a13a627d4b014cf04749324571',1,'nc']]], + ['extractdata_1923',['extractData',['../namespacenc_1_1edac_1_1detail.html#a1c606c3f9302bb406021a50006898ebf',1,'nc::edac::detail']]], + ['extremevalue_1924',['extremeValue',['../namespacenc_1_1random.html#a11144426dec05283d6c682e0e532af7e',1,'nc::random::extremeValue(dtype inA=1, dtype inB=1)'],['../namespacenc_1_1random.html#a6a5f569b594585794e6b268576d2e587',1,'nc::random::extremeValue(const Shape &inShape, dtype inA=1, dtype inB=1)']]], + ['eye_1925',['eye',['../namespacenc.html#a944a26b6ffe66b39ab9ba6972906bf55',1,'nc::eye(uint32 inN, uint32 inM, int32 inK=0)'],['../namespacenc.html#a1af40ed299fe04e075ca80d0d00dfba0',1,'nc::eye(uint32 inN, int32 inK=0)'],['../namespacenc.html#aa5328556ac755d5aafbe0f0e5d0c7af3',1,'nc::eye(const Shape &inShape, int32 inK=0)']]] ]; diff --git a/docs/doxygen/html/search/functions_5.html b/docs/doxygen/html/search/functions_5.html index 85004f8b3..9301d6b9c 100644 --- a/docs/doxygen/html/search/functions_5.html +++ b/docs/doxygen/html/search/functions_5.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_5.js b/docs/doxygen/html/search/functions_5.js index 5d4717972..dca0cbc16 100644 --- a/docs/doxygen/html/search/functions_5.js +++ b/docs/doxygen/html/search/functions_5.js @@ -1,31 +1,31 @@ var searchData= [ - ['f_1839',['f',['../namespacenc_1_1random.html#a00229c23da25284daf436c0a338ea25c',1,'nc::random::f(dtype inDofN, dtype inDofD)'],['../namespacenc_1_1random.html#aabf17da1f94e6da4ec99085feca10799',1,'nc::random::f(const Shape &inShape, dtype inDofN, dtype inDofD)']]], - ['factorial_1840',['factorial',['../namespacenc_1_1special.html#a7ab9b16b9bcb43038db57b7d21a90304',1,'nc::special::factorial(const NdArray< uint32 > &inArray)'],['../namespacenc_1_1special.html#a429b2caa6cf7fcbdba8ce3184c0367e3',1,'nc::special::factorial(uint32 inValue)']]], - ['file_1841',['File',['../classnc_1_1filesystem_1_1_file.html#aa27dc231895f81412af1d8206b5496dd',1,'nc::filesystem::File']]], - ['fill_1842',['fill',['../classnc_1_1_nd_array.html#a646ec787a3b7331b34c0c3f21e0d992d',1,'nc::NdArray::fill()'],['../namespacenc_1_1stl__algorithms.html#af9a01fcb79e7a69b707081c1c17f361c',1,'nc::stl_algorithms::fill()']]], - ['fillcorners_1843',['fillCorners',['../namespacenc_1_1filter_1_1boundary.html#ac2c4c5858898760f48e5aba06ad0eb3c',1,'nc::filter::boundary::fillCorners(NdArray< dtype > &inArray, uint32 inBorderWidth, dtype inFillValue)'],['../namespacenc_1_1filter_1_1boundary.html#ac78b1c70b5d7e26d6013674cdb84690a',1,'nc::filter::boundary::fillCorners(NdArray< dtype > &inArray, uint32 inBorderWidth)']]], - ['filldiagonal_1844',['fillDiagonal',['../namespacenc.html#a7c40717fa80c513ecbb943859d9d1ac2',1,'nc']]], - ['find_1845',['find',['../namespacenc.html#a8eaa82071f16b2654f11096247ba10e5',1,'nc::find()'],['../namespacenc_1_1stl__algorithms.html#a761aa9f3bd88f019c46fe6cece93ade2',1,'nc::stl_algorithms::find()']]], - ['fit_1846',['fit',['../classnc_1_1polynomial_1_1_poly1d.html#abd9c3ff549505b8c42b4a4e97ff95b2c',1,'nc::polynomial::Poly1d::fit(const NdArray< dtype > &xValues, const NdArray< dtype > &yValues, uint8 polyOrder)'],['../classnc_1_1polynomial_1_1_poly1d.html#a1526585db421bbf96dfb88d99870c201',1,'nc::polynomial::Poly1d::fit(const NdArray< dtype > &xValues, const NdArray< dtype > &yValues, const NdArray< dtype > &weights, uint8 polyOrder)']]], - ['fix_1847',['fix',['../namespacenc.html#aa2d5bc309911a5c6a79324691cf7ea27',1,'nc::fix(const NdArray< dtype > &inArray)'],['../namespacenc.html#af259d081804c4be2d33e3a00e937b79c',1,'nc::fix(dtype inValue) noexcept']]], - ['flatnonzero_1848',['flatnonzero',['../classnc_1_1_nd_array.html#a91687e040d05ac06b389d389facff3c9',1,'nc::NdArray::flatnonzero()'],['../namespacenc.html#a1564bf5bf94b5a6d8b55850e2a956407',1,'nc::flatnonzero(const NdArray< dtype > &inArray)']]], - ['flatten_1849',['flatten',['../namespacenc.html#ae968142455e50b994f534186693934dd',1,'nc::flatten()'],['../classnc_1_1_nd_array.html#a22ba05b8e537c008a2143396b5995551',1,'nc::NdArray::flatten()']]], - ['flip_1850',['flip',['../namespacenc.html#ab17a2f12bb2bea50a74c2ed41b30fdb2',1,'nc']]], - ['fliplr_1851',['fliplr',['../namespacenc.html#ae316eb25ff89e7999a24221c91f8d395',1,'nc']]], - ['flipud_1852',['flipud',['../namespacenc.html#a0241fc364ae8002c42cd4d452c897e26',1,'nc']]], - ['floor_1853',['floor',['../namespacenc.html#a85531048cade0ac3a1b4e8d6e01ff6fe',1,'nc::floor(const NdArray< dtype > &inArray)'],['../namespacenc.html#a832da7fc615ea4e1da7bed94a4488ea6',1,'nc::floor(dtype inValue) noexcept']]], - ['floor_5fdivide_1854',['floor_divide',['../namespacenc.html#ae8e2b2ae79d7a56eefd11986a6de9b21',1,'nc::floor_divide(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#ab299e0245c7a703a9506ce6f39d9d8e4',1,'nc::floor_divide(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['fmax_1855',['fmax',['../namespacenc.html#aebbd1fbc64f00fdeaae6c8cfdf6a7f59',1,'nc::fmax(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#a99c7f7c680632be6a42ebd6b923df328',1,'nc::fmax(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['fmin_1856',['fmin',['../namespacenc.html#a7cd8e4c771d0676279f506f9d7e949e0',1,'nc::fmin(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#add4b4f64b2991ac90b24c93ce10a2b80',1,'nc::fmin(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['fmod_1857',['fmod',['../namespacenc.html#a4208e3d02b9bc915767eab689c64b30f',1,'nc::fmod(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#a87bf4f8636ec0237d958c2ec1d9f1a89',1,'nc::fmod(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['for_5feach_1858',['for_each',['../namespacenc_1_1stl__algorithms.html#a734698435eabdbc5bdf93b195d7fb6a7',1,'nc::stl_algorithms']]], - ['forward_1859',['forward',['../classnc_1_1_vec3.html#ac5a33c96c05a8c856b774c24f4a1965d',1,'nc::Vec3']]], - ['frombuffer_1860',['frombuffer',['../namespacenc.html#ac0d91788bdc0924b82e9a38302d71316',1,'nc']]], - ['fromfile_1861',['fromfile',['../namespacenc.html#a1f10b3d839d24d71df9c92e3f9794a14',1,'nc::fromfile(const std::string &inFilename)'],['../namespacenc.html#aa344c64ebbe94231d377f99775606c68',1,'nc::fromfile(const std::string &inFilename, const char inSep)']]], - ['fromiter_1862',['fromiter',['../namespacenc.html#a17c629bae4e06fe95b23d2b5799148f0',1,'nc']]], - ['front_1863',['front',['../classnc_1_1_nd_array.html#aacff9537c7c8537583b70115626a420b',1,'nc::NdArray::front()'],['../classnc_1_1_data_cube.html#a398373aeb2f3c9dd8df78f9eac1ca3d9',1,'nc::DataCube::front()'],['../classnc_1_1_nd_array.html#a7c17d60541d81f71107c5dc0a06885ac',1,'nc::NdArray::front() const noexcept'],['../classnc_1_1_nd_array.html#a823d56e88aa815d86d41e8b11d348a6a',1,'nc::NdArray::front() noexcept'],['../classnc_1_1_nd_array.html#a42b713a59eac4e9df2ea3b2e584a80f1',1,'nc::NdArray::front(size_type row) const']]], - ['full_1864',['full',['../namespacenc.html#a139698e3756d4cb9b021c9d97e200bda',1,'nc::full(uint32 inSquareSize, dtype inFillValue)'],['../namespacenc.html#a64e56324bce64094973a2da35548178d',1,'nc::full(uint32 inNumRows, uint32 inNumCols, dtype inFillValue)'],['../namespacenc.html#ac09334ce9ac6c4c140bbae68e8ce1a6c',1,'nc::full(const Shape &inShape, dtype inFillValue)']]], - ['full_5flike_1865',['full_like',['../namespacenc.html#ad7e958219ad5b01b015edaf725eb4b7a',1,'nc']]], - ['fullname_1866',['fullName',['../classnc_1_1filesystem_1_1_file.html#a0f3f9b0e15d7cd007ae2b8a808f74799',1,'nc::filesystem::File']]] + ['f_1926',['f',['../namespacenc_1_1random.html#a00229c23da25284daf436c0a338ea25c',1,'nc::random::f(dtype inDofN, dtype inDofD)'],['../namespacenc_1_1random.html#aabf17da1f94e6da4ec99085feca10799',1,'nc::random::f(const Shape &inShape, dtype inDofN, dtype inDofD)']]], + ['factorial_1927',['factorial',['../namespacenc_1_1special.html#a429b2caa6cf7fcbdba8ce3184c0367e3',1,'nc::special::factorial(uint32 inValue)'],['../namespacenc_1_1special.html#a7ab9b16b9bcb43038db57b7d21a90304',1,'nc::special::factorial(const NdArray< uint32 > &inArray)']]], + ['file_1928',['File',['../classnc_1_1filesystem_1_1_file.html#aa27dc231895f81412af1d8206b5496dd',1,'nc::filesystem::File']]], + ['fill_1929',['fill',['../classnc_1_1_nd_array.html#a646ec787a3b7331b34c0c3f21e0d992d',1,'nc::NdArray::fill()'],['../namespacenc_1_1stl__algorithms.html#af9a01fcb79e7a69b707081c1c17f361c',1,'nc::stl_algorithms::fill()']]], + ['fillcorners_1930',['fillCorners',['../namespacenc_1_1filter_1_1boundary.html#ac78b1c70b5d7e26d6013674cdb84690a',1,'nc::filter::boundary::fillCorners(NdArray< dtype > &inArray, uint32 inBorderWidth)'],['../namespacenc_1_1filter_1_1boundary.html#ac2c4c5858898760f48e5aba06ad0eb3c',1,'nc::filter::boundary::fillCorners(NdArray< dtype > &inArray, uint32 inBorderWidth, dtype inFillValue)']]], + ['filldiagonal_1931',['fillDiagonal',['../namespacenc.html#a7c40717fa80c513ecbb943859d9d1ac2',1,'nc']]], + ['find_1932',['find',['../namespacenc_1_1stl__algorithms.html#a761aa9f3bd88f019c46fe6cece93ade2',1,'nc::stl_algorithms::find()'],['../namespacenc.html#a8eaa82071f16b2654f11096247ba10e5',1,'nc::find()']]], + ['fit_1933',['fit',['../classnc_1_1polynomial_1_1_poly1d.html#abd9c3ff549505b8c42b4a4e97ff95b2c',1,'nc::polynomial::Poly1d::fit(const NdArray< dtype > &xValues, const NdArray< dtype > &yValues, uint8 polyOrder)'],['../classnc_1_1polynomial_1_1_poly1d.html#a1526585db421bbf96dfb88d99870c201',1,'nc::polynomial::Poly1d::fit(const NdArray< dtype > &xValues, const NdArray< dtype > &yValues, const NdArray< dtype > &weights, uint8 polyOrder)']]], + ['fix_1934',['fix',['../namespacenc.html#aa2d5bc309911a5c6a79324691cf7ea27',1,'nc::fix(const NdArray< dtype > &inArray)'],['../namespacenc.html#af259d081804c4be2d33e3a00e937b79c',1,'nc::fix(dtype inValue) noexcept']]], + ['flatnonzero_1935',['flatnonzero',['../classnc_1_1_nd_array.html#a91687e040d05ac06b389d389facff3c9',1,'nc::NdArray::flatnonzero()'],['../namespacenc.html#a1564bf5bf94b5a6d8b55850e2a956407',1,'nc::flatnonzero()']]], + ['flatten_1936',['flatten',['../classnc_1_1_nd_array.html#a22ba05b8e537c008a2143396b5995551',1,'nc::NdArray::flatten()'],['../namespacenc.html#ae968142455e50b994f534186693934dd',1,'nc::flatten(const NdArray< dtype > &inArray)']]], + ['flip_1937',['flip',['../namespacenc.html#ab17a2f12bb2bea50a74c2ed41b30fdb2',1,'nc']]], + ['fliplr_1938',['fliplr',['../namespacenc.html#ae316eb25ff89e7999a24221c91f8d395',1,'nc']]], + ['flipud_1939',['flipud',['../namespacenc.html#a0241fc364ae8002c42cd4d452c897e26',1,'nc']]], + ['floor_1940',['floor',['../namespacenc.html#a832da7fc615ea4e1da7bed94a4488ea6',1,'nc::floor(dtype inValue) noexcept'],['../namespacenc.html#a85531048cade0ac3a1b4e8d6e01ff6fe',1,'nc::floor(const NdArray< dtype > &inArray)']]], + ['floor_5fdivide_1941',['floor_divide',['../namespacenc.html#ae8e2b2ae79d7a56eefd11986a6de9b21',1,'nc::floor_divide(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#ab299e0245c7a703a9506ce6f39d9d8e4',1,'nc::floor_divide(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], + ['fmax_1942',['fmax',['../namespacenc.html#aebbd1fbc64f00fdeaae6c8cfdf6a7f59',1,'nc::fmax(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#a99c7f7c680632be6a42ebd6b923df328',1,'nc::fmax(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], + ['fmin_1943',['fmin',['../namespacenc.html#a7cd8e4c771d0676279f506f9d7e949e0',1,'nc::fmin(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#add4b4f64b2991ac90b24c93ce10a2b80',1,'nc::fmin(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], + ['fmod_1944',['fmod',['../namespacenc.html#a6894e06b913479ce699cba7dbce5bc93',1,'nc::fmod(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#a87bf4f8636ec0237d958c2ec1d9f1a89',1,'nc::fmod(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], + ['for_5feach_1945',['for_each',['../namespacenc_1_1stl__algorithms.html#a734698435eabdbc5bdf93b195d7fb6a7',1,'nc::stl_algorithms']]], + ['forward_1946',['forward',['../classnc_1_1_vec3.html#ac5a33c96c05a8c856b774c24f4a1965d',1,'nc::Vec3']]], + ['frombuffer_1947',['frombuffer',['../namespacenc.html#ac0d91788bdc0924b82e9a38302d71316',1,'nc']]], + ['fromfile_1948',['fromfile',['../namespacenc.html#a1f10b3d839d24d71df9c92e3f9794a14',1,'nc::fromfile(const std::string &inFilename)'],['../namespacenc.html#aa344c64ebbe94231d377f99775606c68',1,'nc::fromfile(const std::string &inFilename, const char inSep)']]], + ['fromiter_1949',['fromiter',['../namespacenc.html#a17c629bae4e06fe95b23d2b5799148f0',1,'nc']]], + ['front_1950',['front',['../classnc_1_1_nd_array.html#a7c17d60541d81f71107c5dc0a06885ac',1,'nc::NdArray::front()'],['../classnc_1_1_data_cube.html#a398373aeb2f3c9dd8df78f9eac1ca3d9',1,'nc::DataCube::front()'],['../classnc_1_1_nd_array.html#aacff9537c7c8537583b70115626a420b',1,'nc::NdArray::front(size_type row)'],['../classnc_1_1_nd_array.html#a42b713a59eac4e9df2ea3b2e584a80f1',1,'nc::NdArray::front(size_type row) const'],['../classnc_1_1_nd_array.html#a823d56e88aa815d86d41e8b11d348a6a',1,'nc::NdArray::front() noexcept']]], + ['full_1951',['full',['../namespacenc.html#a139698e3756d4cb9b021c9d97e200bda',1,'nc::full(uint32 inSquareSize, dtype inFillValue)'],['../namespacenc.html#a64e56324bce64094973a2da35548178d',1,'nc::full(uint32 inNumRows, uint32 inNumCols, dtype inFillValue)'],['../namespacenc.html#ac09334ce9ac6c4c140bbae68e8ce1a6c',1,'nc::full(const Shape &inShape, dtype inFillValue)']]], + ['full_5flike_1952',['full_like',['../namespacenc.html#ad7e958219ad5b01b015edaf725eb4b7a',1,'nc']]], + ['fullname_1953',['fullName',['../classnc_1_1filesystem_1_1_file.html#a0f3f9b0e15d7cd007ae2b8a808f74799',1,'nc::filesystem::File']]] ]; diff --git a/docs/doxygen/html/search/functions_6.html b/docs/doxygen/html/search/functions_6.html index 0c2200fe0..9c4f5fc65 100644 --- a/docs/doxygen/html/search/functions_6.html +++ b/docs/doxygen/html/search/functions_6.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_6.js b/docs/doxygen/html/search/functions_6.js index 1ba066f6a..1190383f8 100644 --- a/docs/doxygen/html/search/functions_6.js +++ b/docs/doxygen/html/search/functions_6.js @@ -1,22 +1,23 @@ var searchData= [ - ['gamma_1867',['gamma',['../namespacenc_1_1random.html#a0a969335423de5ad59fed5e952189e2d',1,'nc::random::gamma(dtype inGammaShape, dtype inScaleValue=1)'],['../namespacenc_1_1random.html#aa706a2bd65cb664ae9af10f713661d79',1,'nc::random::gamma(const Shape &inShape, dtype inGammaShape, dtype inScaleValue=1)'],['../namespacenc_1_1special.html#aad22d353f040026576c4a28727ecaf35',1,'nc::special::gamma(dtype inValue)'],['../namespacenc_1_1special.html#a07a3d6d5e0610dca66ca975cdf1d34b9',1,'nc::special::gamma(const NdArray< dtype > &inArray)']]], - ['gamma1pm1_1868',['gamma1pm1',['../namespacenc_1_1special.html#a9ea9c889891f9f3a071c786d0b947e20',1,'nc::special::gamma1pm1(dtype inValue)'],['../namespacenc_1_1special.html#a7b98a5eedb6e5354adbab8dcfe1ce4e1',1,'nc::special::gamma1pm1(const NdArray< dtype > &inArray)']]], - ['gauss_5flegendre_1869',['gauss_legendre',['../namespacenc_1_1integrate.html#af7d17b4e025bf94f903d3c671da3baf7',1,'nc::integrate']]], - ['gaussian_1870',['gaussian',['../namespacenc_1_1utils.html#a5016e06ac7ca186ff6c110b314d30209',1,'nc::utils']]], - ['gaussian1d_1871',['gaussian1d',['../namespacenc_1_1utils.html#a263704ee2cc6ab3f77b462522c7150f8',1,'nc::utils']]], - ['gaussianfilter_1872',['gaussianFilter',['../namespacenc_1_1filter.html#a91c9fcd09a78eba8a42c5166ebb7709b',1,'nc::filter']]], - ['gaussianfilter1d_1873',['gaussianFilter1d',['../namespacenc_1_1filter.html#abda833220ea035db0aa485f6ccf66923',1,'nc::filter']]], - ['gaussnewtonnlls_1874',['gaussNewtonNlls',['../namespacenc_1_1linalg.html#aff0f97e94666284100b584e13d27def3',1,'nc::linalg']]], - ['gcd_1875',['gcd',['../namespacenc.html#a4a496eaa0a42e0b9c80724358664d432',1,'nc::gcd(const NdArray< dtype > &inArray)'],['../namespacenc.html#a45b5db91eb9f524459fa3878e23ca0ec',1,'nc::gcd(dtype inValue1, dtype inValue2) noexcept']]], - ['generatecentroids_1876',['generateCentroids',['../namespacenc_1_1image_processing.html#a874d0f4174d10763002fdd70f190595b',1,'nc::imageProcessing']]], - ['generatethreshold_1877',['generateThreshold',['../namespacenc_1_1image_processing.html#a356989d12dda6e1b0748d22d50d4ecaa',1,'nc::imageProcessing']]], - ['geometric_1878',['geometric',['../namespacenc_1_1random.html#a7199f5c06c0e05440e9a97e01930b896',1,'nc::random::geometric(double inP=0.5)'],['../namespacenc_1_1random.html#ae761ff6e68fb0708061704bee4a3a7e3',1,'nc::random::geometric(const Shape &inShape, double inP=0.5)']]], - ['getbyindices_1879',['getByIndices',['../classnc_1_1_nd_array.html#a9437732d220581563d44c800ce240e17',1,'nc::NdArray']]], - ['getbymask_1880',['getByMask',['../classnc_1_1_nd_array.html#a4da478ab5a1c836be7ad2f9d6bfed91e',1,'nc::NdArray']]], - ['getroot_1881',['getRoot',['../classnc_1_1integrate_1_1_legendre_polynomial.html#ac2d8f6377f8ae7cf27b4d0599eb7880b',1,'nc::integrate::LegendrePolynomial']]], - ['getweight_1882',['getWeight',['../classnc_1_1integrate_1_1_legendre_polynomial.html#ac6b804e8a2d582df601cc2b3ff2bf74f',1,'nc::integrate::LegendrePolynomial']]], - ['gradient_1883',['gradient',['../namespacenc.html#ae2a11c3f92effc5991a2e0134f6a9188',1,'nc::gradient(const NdArray< dtype > &inArray, Axis inAxis=Axis::ROW)'],['../namespacenc.html#a7ef89fff9eb07946e77a5375dac5e7b6',1,'nc::gradient(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::ROW)']]], - ['greater_1884',['greater',['../namespacenc.html#a105d660675a98132264a13b17410a82d',1,'nc']]], - ['greater_5fequal_1885',['greater_equal',['../namespacenc.html#a9a2bbc9879a2b3a9e657328c9d8ad025',1,'nc']]] + ['gamma_1954',['gamma',['../namespacenc_1_1random.html#a0a969335423de5ad59fed5e952189e2d',1,'nc::random::gamma(dtype inGammaShape, dtype inScaleValue=1)'],['../namespacenc_1_1random.html#aa706a2bd65cb664ae9af10f713661d79',1,'nc::random::gamma(const Shape &inShape, dtype inGammaShape, dtype inScaleValue=1)'],['../namespacenc_1_1special.html#aad22d353f040026576c4a28727ecaf35',1,'nc::special::gamma(dtype inValue)'],['../namespacenc_1_1special.html#a07a3d6d5e0610dca66ca975cdf1d34b9',1,'nc::special::gamma(const NdArray< dtype > &inArray)']]], + ['gamma1pm1_1955',['gamma1pm1',['../namespacenc_1_1special.html#a9ea9c889891f9f3a071c786d0b947e20',1,'nc::special::gamma1pm1(dtype inValue)'],['../namespacenc_1_1special.html#a7b98a5eedb6e5354adbab8dcfe1ce4e1',1,'nc::special::gamma1pm1(const NdArray< dtype > &inArray)']]], + ['gauss_5flegendre_1956',['gauss_legendre',['../namespacenc_1_1integrate.html#af7d17b4e025bf94f903d3c671da3baf7',1,'nc::integrate']]], + ['gaussian_1957',['gaussian',['../namespacenc_1_1utils.html#a5016e06ac7ca186ff6c110b314d30209',1,'nc::utils']]], + ['gaussian1d_1958',['gaussian1d',['../namespacenc_1_1utils.html#a263704ee2cc6ab3f77b462522c7150f8',1,'nc::utils']]], + ['gaussianfilter_1959',['gaussianFilter',['../namespacenc_1_1filter.html#a91c9fcd09a78eba8a42c5166ebb7709b',1,'nc::filter']]], + ['gaussianfilter1d_1960',['gaussianFilter1d',['../namespacenc_1_1filter.html#abda833220ea035db0aa485f6ccf66923',1,'nc::filter']]], + ['gaussnewtonnlls_1961',['gaussNewtonNlls',['../namespacenc_1_1linalg.html#aff0f97e94666284100b584e13d27def3',1,'nc::linalg']]], + ['gcd_1962',['gcd',['../namespacenc.html#a45b5db91eb9f524459fa3878e23ca0ec',1,'nc::gcd(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#a4a496eaa0a42e0b9c80724358664d432',1,'nc::gcd(const NdArray< dtype > &inArray)']]], + ['generatecentroids_1963',['generateCentroids',['../namespacenc_1_1image_processing.html#a874d0f4174d10763002fdd70f190595b',1,'nc::imageProcessing']]], + ['generatethreshold_1964',['generateThreshold',['../namespacenc_1_1image_processing.html#a356989d12dda6e1b0748d22d50d4ecaa',1,'nc::imageProcessing']]], + ['geometric_1965',['geometric',['../namespacenc_1_1random.html#a7199f5c06c0e05440e9a97e01930b896',1,'nc::random::geometric(double inP=0.5)'],['../namespacenc_1_1random.html#ae761ff6e68fb0708061704bee4a3a7e3',1,'nc::random::geometric(const Shape &inShape, double inP=0.5)']]], + ['geomspace_1966',['geomspace',['../namespacenc.html#aa5cdd68a27ae041c382eabfb07dfa9bc',1,'nc']]], + ['getbyindices_1967',['getByIndices',['../classnc_1_1_nd_array.html#a9437732d220581563d44c800ce240e17',1,'nc::NdArray']]], + ['getbymask_1968',['getByMask',['../classnc_1_1_nd_array.html#a4da478ab5a1c836be7ad2f9d6bfed91e',1,'nc::NdArray']]], + ['getroot_1969',['getRoot',['../classnc_1_1integrate_1_1_legendre_polynomial.html#ac2d8f6377f8ae7cf27b4d0599eb7880b',1,'nc::integrate::LegendrePolynomial']]], + ['getweight_1970',['getWeight',['../classnc_1_1integrate_1_1_legendre_polynomial.html#ac6b804e8a2d582df601cc2b3ff2bf74f',1,'nc::integrate::LegendrePolynomial']]], + ['gradient_1971',['gradient',['../namespacenc.html#ae2a11c3f92effc5991a2e0134f6a9188',1,'nc::gradient(const NdArray< dtype > &inArray, Axis inAxis=Axis::ROW)'],['../namespacenc.html#a7ef89fff9eb07946e77a5375dac5e7b6',1,'nc::gradient(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::ROW)']]], + ['greater_1972',['greater',['../namespacenc.html#a105d660675a98132264a13b17410a82d',1,'nc']]], + ['greater_5fequal_1973',['greater_equal',['../namespacenc.html#a9a2bbc9879a2b3a9e657328c9d8ad025',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/functions_7.html b/docs/doxygen/html/search/functions_7.html index c85b18996..46b5c0f61 100644 --- a/docs/doxygen/html/search/functions_7.html +++ b/docs/doxygen/html/search/functions_7.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_7.js b/docs/doxygen/html/search/functions_7.js index 32e7f8a32..49710c1b5 100644 --- a/docs/doxygen/html/search/functions_7.js +++ b/docs/doxygen/html/search/functions_7.js @@ -1,11 +1,13 @@ var searchData= [ - ['hasext_1886',['hasExt',['../classnc_1_1filesystem_1_1_file.html#a4e8ede3f75b64847964d4d85cd58f123',1,'nc::filesystem::File']]], - ['hat_1887',['hat',['../namespacenc_1_1linalg.html#a12e16cb9d1a7b09e85b4abbef14ba2ef',1,'nc::linalg::hat(dtype inX, dtype inY, dtype inZ)'],['../namespacenc_1_1linalg.html#ae7ced3680f1ae95af4bc2e6b98a5a517',1,'nc::linalg::hat(const NdArray< dtype > &inVec)'],['../namespacenc_1_1linalg.html#ae9cdb091717a1c74dc659519d77e0048',1,'nc::linalg::hat(const Vec3 &inVec)']]], - ['height_1888',['height',['../classnc_1_1image_processing_1_1_cluster.html#a71ccd5ee3fea70b4b1b27ba25f4b3fb8',1,'nc::imageProcessing::Cluster']]], - ['hermite_1889',['hermite',['../namespacenc_1_1polynomial.html#aeea1ebbc592a6a8c533f2230fb0f6f10',1,'nc::polynomial::hermite(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#ad88f67a61dad283461c6121958c5af54',1,'nc::polynomial::hermite(uint32 n, const NdArray< dtype > &inArrayX)']]], - ['histogram_1890',['histogram',['../namespacenc.html#abff7fb8fdafbdd8db4dad38cc5a2267c',1,'nc::histogram(const NdArray< dtype > &inArray, const NdArray< double > &inBinEdges)'],['../namespacenc.html#a9f8af3a8f7adefd20992fe0686837cf6',1,'nc::histogram(const NdArray< dtype > &inArray, uint32 inNumBins=10)']]], - ['hours_1891',['hours',['../classnc_1_1coordinates_1_1_r_a.html#a52af78880f6c5a5ec8750a7ad20c2e2d',1,'nc::coordinates::RA']]], - ['hstack_1892',['hstack',['../namespacenc.html#a80a6677582b65c19750b0d82ac182081',1,'nc']]], - ['hypot_1893',['hypot',['../namespacenc.html#a4648674053cd83851d9549bbcc7a8481',1,'nc::hypot(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#ad2d90c3dcbe0a1e652b0505b637d973a',1,'nc::hypot(dtype inValue1, dtype inValue2, dtype inValue3) noexcept'],['../namespacenc.html#a66b0aabfaacc7ec12206b4edf6026b12',1,'nc::hypot(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]] + ['hamming_1974',['hamming',['../namespacenc.html#ad7fcd267d31bec0085f82959e3b5f9d3',1,'nc']]], + ['hanning_1975',['hanning',['../namespacenc.html#ab50f9ea31f882bd8121c1adf820798b3',1,'nc']]], + ['hasext_1976',['hasExt',['../classnc_1_1filesystem_1_1_file.html#a4e8ede3f75b64847964d4d85cd58f123',1,'nc::filesystem::File']]], + ['hat_1977',['hat',['../namespacenc_1_1linalg.html#a12e16cb9d1a7b09e85b4abbef14ba2ef',1,'nc::linalg::hat(dtype inX, dtype inY, dtype inZ)'],['../namespacenc_1_1linalg.html#ae7ced3680f1ae95af4bc2e6b98a5a517',1,'nc::linalg::hat(const NdArray< dtype > &inVec)'],['../namespacenc_1_1linalg.html#ae9cdb091717a1c74dc659519d77e0048',1,'nc::linalg::hat(const Vec3 &inVec)']]], + ['height_1978',['height',['../classnc_1_1image_processing_1_1_cluster.html#a71ccd5ee3fea70b4b1b27ba25f4b3fb8',1,'nc::imageProcessing::Cluster']]], + ['hermite_1979',['hermite',['../namespacenc_1_1polynomial.html#aeea1ebbc592a6a8c533f2230fb0f6f10',1,'nc::polynomial::hermite(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#ad88f67a61dad283461c6121958c5af54',1,'nc::polynomial::hermite(uint32 n, const NdArray< dtype > &inArrayX)']]], + ['histogram_1980',['histogram',['../namespacenc.html#abff7fb8fdafbdd8db4dad38cc5a2267c',1,'nc::histogram(const NdArray< dtype > &inArray, const NdArray< double > &inBinEdges)'],['../namespacenc.html#a9f8af3a8f7adefd20992fe0686837cf6',1,'nc::histogram(const NdArray< dtype > &inArray, uint32 inNumBins=10)']]], + ['hours_1981',['hours',['../classnc_1_1coordinates_1_1_r_a.html#a52af78880f6c5a5ec8750a7ad20c2e2d',1,'nc::coordinates::RA']]], + ['hstack_1982',['hstack',['../namespacenc.html#afa8806a41df51bbb4410d4cb6601971f',1,'nc']]], + ['hypot_1983',['hypot',['../namespacenc.html#a4648674053cd83851d9549bbcc7a8481',1,'nc::hypot(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#ad2d90c3dcbe0a1e652b0505b637d973a',1,'nc::hypot(dtype inValue1, dtype inValue2, dtype inValue3) noexcept'],['../namespacenc.html#a66b0aabfaacc7ec12206b4edf6026b12',1,'nc::hypot(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]] ]; diff --git a/docs/doxygen/html/search/functions_8.html b/docs/doxygen/html/search/functions_8.html index aa875b665..31a1d9503 100644 --- a/docs/doxygen/html/search/functions_8.html +++ b/docs/doxygen/html/search/functions_8.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_8.js b/docs/doxygen/html/search/functions_8.js index e49e841fa..ca5e3875a 100644 --- a/docs/doxygen/html/search/functions_8.js +++ b/docs/doxygen/html/search/functions_8.js @@ -1,29 +1,33 @@ var searchData= [ - ['i_1894',['i',['../classnc_1_1rotations_1_1_quaternion.html#a5a661b367dff916e8bdb5e28ac608ecd',1,'nc::rotations::Quaternion']]], - ['identity_1895',['identity',['../classnc_1_1rotations_1_1_quaternion.html#ae093d333b66b63eeef5704be4a374af2',1,'nc::rotations::Quaternion::identity()'],['../namespacenc.html#ac344d8b6291a38244e2d99cd77b17334',1,'nc::identity(uint32 inSquareSize)']]], - ['imag_1896',['imag',['../namespacenc.html#ae9eae82003557c0e94890a8f3bb3f5dc',1,'nc::imag(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a12cdcae89058ab627b68d32bc9ce0666',1,'nc::imag(const std::complex< dtype > &inValue)']]], - ['incrementnumberofiterations_1897',['incrementNumberOfIterations',['../classnc_1_1roots_1_1_iteration.html#ad0262a1a694e734ebc154c77f010bcff',1,'nc::roots::Iteration']]], - ['integ_1898',['integ',['../classnc_1_1polynomial_1_1_poly1d.html#a4c2902780c89054a6ca436a72ac77119',1,'nc::polynomial::Poly1d']]], - ['intensity_1899',['intensity',['../classnc_1_1image_processing_1_1_centroid.html#aa203a8f8138fe9679f307f38ad65a5aa',1,'nc::imageProcessing::Centroid::intensity()'],['../classnc_1_1image_processing_1_1_cluster.html#a1797d804406d51ab2e22d5b9fae9cb53',1,'nc::imageProcessing::Cluster::intensity()']]], - ['interp_1900',['interp',['../namespacenc_1_1utils.html#a691a52cfcc401340af355bd53869600e',1,'nc::utils::interp()'],['../namespacenc.html#a25a0717dab4a33f74927d390b83182ab',1,'nc::interp(const NdArray< dtype > &inX, const NdArray< dtype > &inXp, const NdArray< dtype > &inFp)'],['../namespacenc.html#a5b9584eeac344f9d37beb6be475300ca',1,'nc::interp(dtype inValue1, dtype inValue2, double inPercent) noexcept']]], - ['intersect1d_1901',['intersect1d',['../namespacenc.html#a05a1080b20bfa1434ccb96fb08836bc4',1,'nc']]], - ['inv_1902',['inv',['../namespacenc_1_1linalg.html#ae36553eb100d8f2c2167e8ecadf2a9fc',1,'nc::linalg']]], - ['inverse_1903',['inverse',['../classnc_1_1rotations_1_1_quaternion.html#a9b0634474b2ff27f9443ba256ea00ab1',1,'nc::rotations::Quaternion']]], - ['invert_1904',['invert',['../namespacenc.html#a4159e9798b5726992f13f27366bea4f5',1,'nc']]], - ['is_5fsorted_1905',['is_sorted',['../namespacenc_1_1stl__algorithms.html#a1f71dfda5f16d8a53c16260c5fa8fbdc',1,'nc::stl_algorithms::is_sorted(ForwardIt first, ForwardIt last, Compare comp) noexcept'],['../namespacenc_1_1stl__algorithms.html#aca7862e3fe066fc65bf00cb7f5108e33',1,'nc::stl_algorithms::is_sorted(ForwardIt first, ForwardIt last) noexcept']]], - ['isclose_1906',['isclose',['../namespacenc.html#ae80bdb1c4ce59e2a74cad2d518f50e1e',1,'nc']]], - ['isempty_1907',['isempty',['../classnc_1_1_nd_array.html#a3e5261e1be6357a2c608f5e1d97b35f9',1,'nc::NdArray::isempty()'],['../classnc_1_1_data_cube.html#ac569e0c62a9e5cbf21228b85128a53a5',1,'nc::DataCube::isempty()']]], - ['isflat_1908',['isflat',['../classnc_1_1_nd_array.html#a344f12e052eeb49cc87e361127386a64',1,'nc::NdArray']]], - ['isinf_1909',['isinf',['../namespacenc.html#a38b400fe936ea86828d4e29d5b0950bb',1,'nc::isinf(const NdArray< dtype > &inArray)'],['../namespacenc.html#ac2770d614de64c300c2f10cb39a299c0',1,'nc::isinf(dtype inValue) noexcept']]], - ['isinteger_1910',['isInteger',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac055638657a1459bc6a7c9d94d5c96a4',1,'nc::DtypeInfo< std::complex< dtype > >::isInteger()'],['../classnc_1_1_dtype_info.html#a10b60bd27123b5c724e2a52526fe8cfe',1,'nc::DtypeInfo::isInteger()']]], - ['islittleendian_1911',['isLittleEndian',['../namespacenc_1_1endian.html#a11907ef8078650aee8fe900854ba5bb4',1,'nc::endian']]], - ['isnan_1912',['isnan',['../namespacenc.html#ac28569da874c0b37a4c50c86b31a98ab',1,'nc::isnan(dtype inValue) noexcept'],['../namespacenc.html#aedce7cd7ff92f9fec0c93cd9c5522ca8',1,'nc::isnan(const NdArray< dtype > &inArray)']]], - ['isnull_1913',['isnull',['../classnc_1_1_shape.html#a3c8d187f677e9a4cdbdf1906d612b596',1,'nc::Shape']]], - ['issigned_1914',['isSigned',['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac58a829905d11a1a7fca32427eab41d3',1,'nc::DtypeInfo< std::complex< dtype > >::isSigned()'],['../classnc_1_1_dtype_info.html#a039ecfb9a5bd9fe0cb751a59f28055d1',1,'nc::DtypeInfo::isSigned()']]], - ['issorted_1915',['issorted',['../classnc_1_1_nd_array.html#a0ba38857fd4f9474e2814bbf1c3a6a0a',1,'nc::NdArray']]], - ['issquare_1916',['issquare',['../classnc_1_1_nd_array.html#a302be17d815b1a4e353e6a2aade581a5',1,'nc::NdArray::issquare()'],['../classnc_1_1_shape.html#a939dd0ab6edf83b7abaf8b8c93a99152',1,'nc::Shape::issquare()']]], - ['isvalid_1917',['isValid',['../classnc_1_1rotations_1_1_d_c_m.html#ab1947c7618408b063b704ec391e27888',1,'nc::rotations::DCM']]], - ['item_1918',['item',['../classnc_1_1_nd_array.html#abec76b8f271e07fa07cc2f88fed676fa',1,'nc::NdArray']]], - ['iteration_1919',['Iteration',['../classnc_1_1roots_1_1_iteration.html#a7948f08cfaa01f5685ec35149bf6bba0',1,'nc::roots::Iteration::Iteration(double epsilon, uint32 maxNumIterations) noexcept'],['../classnc_1_1roots_1_1_iteration.html#a2d7285a81c033d56ce8283b6dbfca136',1,'nc::roots::Iteration::Iteration(double epsilon) noexcept']]] + ['i_1984',['i',['../classnc_1_1rotations_1_1_quaternion.html#a5a661b367dff916e8bdb5e28ac608ecd',1,'nc::rotations::Quaternion']]], + ['identity_1985',['identity',['../classnc_1_1rotations_1_1_quaternion.html#ae093d333b66b63eeef5704be4a374af2',1,'nc::rotations::Quaternion::identity()'],['../namespacenc.html#ac344d8b6291a38244e2d99cd77b17334',1,'nc::identity(uint32 inSquareSize)']]], + ['imag_1986',['imag',['../namespacenc.html#a12cdcae89058ab627b68d32bc9ce0666',1,'nc::imag(const std::complex< dtype > &inValue)'],['../namespacenc.html#ae9eae82003557c0e94890a8f3bb3f5dc',1,'nc::imag(const NdArray< std::complex< dtype >> &inArray)']]], + ['incrementnumberofiterations_1987',['incrementNumberOfIterations',['../classnc_1_1roots_1_1_iteration.html#ad0262a1a694e734ebc154c77f010bcff',1,'nc::roots::Iteration']]], + ['inner_1988',['inner',['../namespacenc.html#aa44cb1f69e57caf4a79ff92960ddaebd',1,'nc']]], + ['integ_1989',['integ',['../classnc_1_1polynomial_1_1_poly1d.html#a4c2902780c89054a6ca436a72ac77119',1,'nc::polynomial::Poly1d']]], + ['intensity_1990',['intensity',['../classnc_1_1image_processing_1_1_centroid.html#aa203a8f8138fe9679f307f38ad65a5aa',1,'nc::imageProcessing::Centroid::intensity()'],['../classnc_1_1image_processing_1_1_cluster.html#a1797d804406d51ab2e22d5b9fae9cb53',1,'nc::imageProcessing::Cluster::intensity()']]], + ['interp_1991',['interp',['../namespacenc.html#a25a0717dab4a33f74927d390b83182ab',1,'nc::interp(const NdArray< dtype > &inX, const NdArray< dtype > &inXp, const NdArray< dtype > &inFp)'],['../namespacenc.html#a5b9584eeac344f9d37beb6be475300ca',1,'nc::interp(dtype inValue1, dtype inValue2, double inPercent) noexcept'],['../namespacenc_1_1utils.html#a691a52cfcc401340af355bd53869600e',1,'nc::utils::interp()']]], + ['intersect1d_1992',['intersect1d',['../namespacenc.html#a05a1080b20bfa1434ccb96fb08836bc4',1,'nc']]], + ['inv_1993',['inv',['../namespacenc_1_1linalg.html#ae36553eb100d8f2c2167e8ecadf2a9fc',1,'nc::linalg']]], + ['inverse_1994',['inverse',['../classnc_1_1rotations_1_1_quaternion.html#a9b0634474b2ff27f9443ba256ea00ab1',1,'nc::rotations::Quaternion']]], + ['invert_1995',['invert',['../namespacenc.html#a4159e9798b5726992f13f27366bea4f5',1,'nc']]], + ['is_5fsorted_1996',['is_sorted',['../namespacenc_1_1stl__algorithms.html#aca7862e3fe066fc65bf00cb7f5108e33',1,'nc::stl_algorithms::is_sorted(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#a1f71dfda5f16d8a53c16260c5fa8fbdc',1,'nc::stl_algorithms::is_sorted(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], + ['isclose_1997',['isclose',['../namespacenc.html#ae80bdb1c4ce59e2a74cad2d518f50e1e',1,'nc']]], + ['isempty_1998',['isempty',['../classnc_1_1_data_cube.html#ac569e0c62a9e5cbf21228b85128a53a5',1,'nc::DataCube::isempty()'],['../classnc_1_1_nd_array.html#a3e5261e1be6357a2c608f5e1d97b35f9',1,'nc::NdArray::isempty() const noexcept']]], + ['isflat_1999',['isflat',['../classnc_1_1_nd_array.html#a344f12e052eeb49cc87e361127386a64',1,'nc::NdArray']]], + ['isinf_2000',['isinf',['../namespacenc.html#ac2770d614de64c300c2f10cb39a299c0',1,'nc::isinf(dtype inValue) noexcept'],['../namespacenc.html#a38b400fe936ea86828d4e29d5b0950bb',1,'nc::isinf(const NdArray< dtype > &inArray)']]], + ['isinteger_2001',['isInteger',['../classnc_1_1_dtype_info.html#a10b60bd27123b5c724e2a52526fe8cfe',1,'nc::DtypeInfo::isInteger()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac055638657a1459bc6a7c9d94d5c96a4',1,'nc::DtypeInfo< std::complex< dtype > >::isInteger()']]], + ['islittleendian_2002',['isLittleEndian',['../namespacenc_1_1endian.html#a11907ef8078650aee8fe900854ba5bb4',1,'nc::endian']]], + ['isnan_2003',['isnan',['../namespacenc.html#ac28569da874c0b37a4c50c86b31a98ab',1,'nc::isnan(dtype inValue) noexcept'],['../namespacenc.html#aedce7cd7ff92f9fec0c93cd9c5522ca8',1,'nc::isnan(const NdArray< dtype > &inArray)']]], + ['isneginf_2004',['isneginf',['../namespacenc.html#abb8e6e08f1b4374017ef8e4cd1841ba6',1,'nc::isneginf(dtype inValue) noexcept'],['../namespacenc.html#af02b9a27f4177ad1ccb9ecea6ab79f46',1,'nc::isneginf(const NdArray< dtype > &inArray)']]], + ['isnull_2005',['isnull',['../classnc_1_1_shape.html#a3c8d187f677e9a4cdbdf1906d612b596',1,'nc::Shape']]], + ['isposinf_2006',['isposinf',['../namespacenc.html#a7229b43ce1e19fb560d461b6beda24af',1,'nc::isposinf(dtype inValue) noexcept'],['../namespacenc.html#a00f30f48ef39bc0fa8149cb09b286e07',1,'nc::isposinf(const NdArray< dtype > &inArray)']]], + ['ispoweroftwo_2007',['isPowerOfTwo',['../namespacenc_1_1edac_1_1detail.html#a7f066ec8b196c2943ae99382eb63e2fb',1,'nc::edac::detail']]], + ['issigned_2008',['isSigned',['../classnc_1_1_dtype_info.html#a039ecfb9a5bd9fe0cb751a59f28055d1',1,'nc::DtypeInfo::isSigned()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#ac58a829905d11a1a7fca32427eab41d3',1,'nc::DtypeInfo< std::complex< dtype > >::isSigned()']]], + ['issorted_2009',['issorted',['../classnc_1_1_nd_array.html#a0ba38857fd4f9474e2814bbf1c3a6a0a',1,'nc::NdArray']]], + ['issquare_2010',['issquare',['../classnc_1_1_shape.html#a939dd0ab6edf83b7abaf8b8c93a99152',1,'nc::Shape::issquare()'],['../classnc_1_1_nd_array.html#a302be17d815b1a4e353e6a2aade581a5',1,'nc::NdArray::issquare()']]], + ['isvalid_2011',['isValid',['../classnc_1_1rotations_1_1_d_c_m.html#ab1947c7618408b063b704ec391e27888',1,'nc::rotations::DCM']]], + ['item_2012',['item',['../classnc_1_1_nd_array.html#abec76b8f271e07fa07cc2f88fed676fa',1,'nc::NdArray']]], + ['iteration_2013',['Iteration',['../classnc_1_1roots_1_1_iteration.html#a7948f08cfaa01f5685ec35149bf6bba0',1,'nc::roots::Iteration::Iteration(double epsilon, uint32 maxNumIterations) noexcept'],['../classnc_1_1roots_1_1_iteration.html#a2d7285a81c033d56ce8283b6dbfca136',1,'nc::roots::Iteration::Iteration(double epsilon) noexcept']]] ]; diff --git a/docs/doxygen/html/search/functions_9.html b/docs/doxygen/html/search/functions_9.html index ccfeeecc6..9a8e4290c 100644 --- a/docs/doxygen/html/search/functions_9.html +++ b/docs/doxygen/html/search/functions_9.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_9.js b/docs/doxygen/html/search/functions_9.js index b2955c20b..ac9cb20e1 100644 --- a/docs/doxygen/html/search/functions_9.js +++ b/docs/doxygen/html/search/functions_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['j_1920',['j',['../classnc_1_1rotations_1_1_quaternion.html#acb62c703a1f96333bf76ad0735cb8b97',1,'nc::rotations::Quaternion']]] + ['j_2014',['j',['../classnc_1_1rotations_1_1_quaternion.html#acb62c703a1f96333bf76ad0735cb8b97',1,'nc::rotations::Quaternion']]] ]; diff --git a/docs/doxygen/html/search/functions_a.html b/docs/doxygen/html/search/functions_a.html index 20591df34..5ecc152ca 100644 --- a/docs/doxygen/html/search/functions_a.html +++ b/docs/doxygen/html/search/functions_a.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_a.js b/docs/doxygen/html/search/functions_a.js index e58353936..b26f0500c 100644 --- a/docs/doxygen/html/search/functions_a.js +++ b/docs/doxygen/html/search/functions_a.js @@ -1,4 +1,5 @@ var searchData= [ - ['k_1921',['k',['../classnc_1_1rotations_1_1_quaternion.html#aa2eee61d3a428a558f28d1bb6cc6a048',1,'nc::rotations::Quaternion']]] + ['k_2015',['k',['../classnc_1_1rotations_1_1_quaternion.html#aa2eee61d3a428a558f28d1bb6cc6a048',1,'nc::rotations::Quaternion']]], + ['kaiser_2016',['kaiser',['../namespacenc.html#a40ad53a4a4ad1be06ca85bbf9f9e9d25',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/functions_b.html b/docs/doxygen/html/search/functions_b.html index e9d40f14a..e301fedd7 100644 --- a/docs/doxygen/html/search/functions_b.html +++ b/docs/doxygen/html/search/functions_b.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_b.js b/docs/doxygen/html/search/functions_b.js index 927db9f36..cfae0a397 100644 --- a/docs/doxygen/html/search/functions_b.js +++ b/docs/doxygen/html/search/functions_b.js @@ -1,29 +1,31 @@ var searchData= [ - ['laguerre_1922',['laguerre',['../namespacenc_1_1polynomial.html#aa2c08952d8dfd2cccfbcd6da40b49f4f',1,'nc::polynomial::laguerre(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#ad7fef1e52b0054b5894995ee1ed94340',1,'nc::polynomial::laguerre(uint32 n, uint32 m, dtype x)'],['../namespacenc_1_1polynomial.html#a55e940d8393b196ebce707ac8b0df5b9',1,'nc::polynomial::laguerre(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a9a3c9fb31c548094a1ce7ec927f28bee',1,'nc::polynomial::laguerre(uint32 n, uint32 m, const NdArray< dtype > &inArrayX)']]], - ['laplace_1923',['laplace',['../namespacenc_1_1filter.html#aae2d06efe29180faf7363b9322588f46',1,'nc::filter::laplace()'],['../namespacenc_1_1random.html#a76e5b2a6feb9bf6a05c5dd9402f9c62f',1,'nc::random::laplace(dtype inLoc=0, dtype inScale=1)'],['../namespacenc_1_1random.html#ab2ecb1401cb11a3c816073fcbc7b05b5',1,'nc::random::laplace(const Shape &inShape, dtype inLoc=0, dtype inScale=1)']]], - ['lcm_1924',['lcm',['../namespacenc.html#aa69cf791720987deb546d71057a668a1',1,'nc::lcm(const NdArray< dtype > &inArray)'],['../namespacenc.html#a7ffd0c15b8419a5d84458d4009b38b88',1,'nc::lcm(dtype inValue1, dtype inValue2) noexcept']]], - ['ldexp_1925',['ldexp',['../namespacenc.html#a52060ff2d69ed791b3f19c1d78cf8551',1,'nc::ldexp(const NdArray< dtype > &inArray1, const NdArray< uint8 > &inArray2)'],['../namespacenc.html#aca805ef0273314ddc6c70b2c913bf485',1,'nc::ldexp(dtype inValue1, uint8 inValue2) noexcept']]], - ['left_1926',['left',['../classnc_1_1_vec3.html#a7e6730d945972ecda1815c1d41f5074c',1,'nc::Vec3::left()'],['../classnc_1_1_vec2.html#ade3f4342726264a1493f91ae80ab24ca',1,'nc::Vec2::left()']]], - ['left_5fshift_1927',['left_shift',['../namespacenc.html#a6f10270824079210d4264d50f5a64f4d',1,'nc']]], - ['legendre_5fp_1928',['legendre_p',['../namespacenc_1_1polynomial.html#aa3860199d898cdf173f3846cce684d72',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)'],['../namespacenc_1_1polynomial.html#a6a68bde646dae6ffb484502d54e5c175',1,'nc::polynomial::legendre_p(uint32 m, uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#a10a5a1a92ac32725bb3d0496078f122e',1,'nc::polynomial::legendre_p(uint32 n, const NdArray< dtype > &inArrayX)']]], - ['legendre_5fq_1929',['legendre_q',['../namespacenc_1_1polynomial.html#a78897e159974d6732b77759be2f2da13',1,'nc::polynomial::legendre_q(int32 n, dtype x)'],['../namespacenc_1_1polynomial.html#aed5c95f5a321ec71c1a34a42414bec52',1,'nc::polynomial::legendre_q(int32 n, const NdArray< dtype > &inArrayX)']]], - ['legendrepolynomial_1930',['LegendrePolynomial',['../classnc_1_1integrate_1_1_legendre_polynomial.html#a2e1fefae138e66215cd7586a85fc3642',1,'nc::integrate::LegendrePolynomial']]], - ['lerp_1931',['lerp',['../classnc_1_1_vec2.html#a91e6417e5b9903ed6bee3ad90c0c38f4',1,'nc::Vec2::lerp()'],['../classnc_1_1_vec3.html#ab4878c8a4ebcd94fd0baf93059b50ac6',1,'nc::Vec3::lerp()']]], - ['less_1932',['less',['../namespacenc.html#a114baa0d21d439b7971dedd4b4042db8',1,'nc']]], - ['less_5fequal_1933',['less_equal',['../namespacenc.html#ac51b96f0ac720a028ebd856abf1b5785',1,'nc']]], - ['linspace_1934',['linspace',['../namespacenc.html#a672fbcbd2271d5fc58bd1b94750bbdcc',1,'nc']]], - ['load_1935',['load',['../namespacenc.html#abec5f2e4d2a1598de762e32b839a3067',1,'nc']]], - ['log_1936',['log',['../namespacenc.html#a3f08d373ae167ac90d3bb6b6c4da0fb9',1,'nc::log(dtype inValue) noexcept'],['../namespacenc.html#aba925957229bf54bfe854be197cd3d52',1,'nc::log(const NdArray< dtype > &inArray)']]], - ['log10_1937',['log10',['../namespacenc.html#a0d8a5ffeaed868463a6e55645c625c8f',1,'nc::log10(dtype inValue) noexcept'],['../namespacenc.html#a3cd82f65b6ee069a7d6443646dfecf67',1,'nc::log10(const NdArray< dtype > &inArray)']]], - ['log1p_1938',['log1p',['../namespacenc.html#a1ae30700a2db1cd8e44fa59b84c2b547',1,'nc::log1p(const NdArray< dtype > &inArray)'],['../namespacenc.html#a5abcc8523a49a47fd2224d5588f128b4',1,'nc::log1p(dtype inValue) noexcept']]], - ['log2_1939',['log2',['../namespacenc.html#a48cbc16dc706678b6f85e655e935cd41',1,'nc::log2(dtype inValue) noexcept'],['../namespacenc.html#a536e5046481a32bd6955a222f323393a',1,'nc::log2(const NdArray< dtype > &inArray)']]], - ['log_5fgamma_1940',['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)']]], - ['logical_5fand_1941',['logical_and',['../namespacenc.html#a951c3f9acd6147a8e2be1ab2cda4d51c',1,'nc']]], - ['logical_5fnot_1942',['logical_not',['../namespacenc.html#ae90620999105f741609c7f279cac2907',1,'nc']]], - ['logical_5for_1943',['logical_or',['../namespacenc.html#a0492e302b114ab15b996b1330604478b',1,'nc']]], - ['logical_5fxor_1944',['logical_xor',['../namespacenc.html#a7b84e63b2d32e1b59bfef4690c918989',1,'nc']]], - ['lognormal_1945',['lognormal',['../namespacenc_1_1random.html#a03d5528a3a97b3731210ba2cc5d1c75d',1,'nc::random::lognormal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a3adc9de1025d27ed485603980657225b',1,'nc::random::lognormal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)']]], - ['lstsq_1946',['lstsq',['../namespacenc_1_1linalg.html#a9c15421c77e6b4b12fca1515596d1414',1,'nc::linalg']]], - ['lu_5fdecomposition_1947',['lu_decomposition',['../namespacenc_1_1linalg.html#a153a90dbcc2ca94c664c429868d15bc4',1,'nc::linalg']]] + ['laguerre_2017',['laguerre',['../namespacenc_1_1polynomial.html#ad7fef1e52b0054b5894995ee1ed94340',1,'nc::polynomial::laguerre(uint32 n, uint32 m, dtype x)'],['../namespacenc_1_1polynomial.html#aa2c08952d8dfd2cccfbcd6da40b49f4f',1,'nc::polynomial::laguerre(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#a55e940d8393b196ebce707ac8b0df5b9',1,'nc::polynomial::laguerre(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#a9a3c9fb31c548094a1ce7ec927f28bee',1,'nc::polynomial::laguerre(uint32 n, uint32 m, const NdArray< dtype > &inArrayX)']]], + ['laplace_2018',['laplace',['../namespacenc_1_1filter.html#aae2d06efe29180faf7363b9322588f46',1,'nc::filter::laplace()'],['../namespacenc_1_1random.html#a76e5b2a6feb9bf6a05c5dd9402f9c62f',1,'nc::random::laplace(dtype inLoc=0, dtype inScale=1)'],['../namespacenc_1_1random.html#ab2ecb1401cb11a3c816073fcbc7b05b5',1,'nc::random::laplace(const Shape &inShape, dtype inLoc=0, dtype inScale=1)']]], + ['lcm_2019',['lcm',['../namespacenc.html#a7ffd0c15b8419a5d84458d4009b38b88',1,'nc::lcm(dtype inValue1, dtype inValue2) noexcept'],['../namespacenc.html#aa69cf791720987deb546d71057a668a1',1,'nc::lcm(const NdArray< dtype > &inArray)']]], + ['ldexp_2020',['ldexp',['../namespacenc.html#aca805ef0273314ddc6c70b2c913bf485',1,'nc::ldexp(dtype inValue1, uint8 inValue2) noexcept'],['../namespacenc.html#a52060ff2d69ed791b3f19c1d78cf8551',1,'nc::ldexp(const NdArray< dtype > &inArray1, const NdArray< uint8 > &inArray2)']]], + ['left_2021',['left',['../classnc_1_1_vec3.html#a7e6730d945972ecda1815c1d41f5074c',1,'nc::Vec3::left()'],['../classnc_1_1_vec2.html#ade3f4342726264a1493f91ae80ab24ca',1,'nc::Vec2::left()']]], + ['left_5fshift_2022',['left_shift',['../namespacenc.html#a6f10270824079210d4264d50f5a64f4d',1,'nc']]], + ['legendre_5fp_2023',['legendre_p',['../namespacenc_1_1polynomial.html#a567bdffcff63421b77a9dfae9cbdfc8a',1,'nc::polynomial::legendre_p(uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#a6a68bde646dae6ffb484502d54e5c175',1,'nc::polynomial::legendre_p(uint32 m, uint32 n, dtype x)'],['../namespacenc_1_1polynomial.html#a10a5a1a92ac32725bb3d0496078f122e',1,'nc::polynomial::legendre_p(uint32 n, const NdArray< dtype > &inArrayX)'],['../namespacenc_1_1polynomial.html#aa3860199d898cdf173f3846cce684d72',1,'nc::polynomial::legendre_p(uint32 m, uint32 n, const NdArray< dtype > &inArrayX)']]], + ['legendre_5fq_2024',['legendre_q',['../namespacenc_1_1polynomial.html#a78897e159974d6732b77759be2f2da13',1,'nc::polynomial::legendre_q(int32 n, dtype x)'],['../namespacenc_1_1polynomial.html#aed5c95f5a321ec71c1a34a42414bec52',1,'nc::polynomial::legendre_q(int32 n, const NdArray< dtype > &inArrayX)']]], + ['legendrepolynomial_2025',['LegendrePolynomial',['../classnc_1_1integrate_1_1_legendre_polynomial.html#a2e1fefae138e66215cd7586a85fc3642',1,'nc::integrate::LegendrePolynomial']]], + ['lerp_2026',['lerp',['../classnc_1_1_vec2.html#a91e6417e5b9903ed6bee3ad90c0c38f4',1,'nc::Vec2::lerp()'],['../classnc_1_1_vec3.html#ab4878c8a4ebcd94fd0baf93059b50ac6',1,'nc::Vec3::lerp()']]], + ['less_2027',['less',['../namespacenc.html#a114baa0d21d439b7971dedd4b4042db8',1,'nc']]], + ['less_5fequal_2028',['less_equal',['../namespacenc.html#ac51b96f0ac720a028ebd856abf1b5785',1,'nc']]], + ['linspace_2029',['linspace',['../namespacenc.html#a672fbcbd2271d5fc58bd1b94750bbdcc',1,'nc']]], + ['load_2030',['load',['../namespacenc.html#abec5f2e4d2a1598de762e32b839a3067',1,'nc']]], + ['log_2031',['log',['../namespacenc.html#a3f08d373ae167ac90d3bb6b6c4da0fb9',1,'nc::log(dtype inValue) noexcept'],['../namespacenc.html#aba925957229bf54bfe854be197cd3d52',1,'nc::log(const NdArray< dtype > &inArray)']]], + ['log10_2032',['log10',['../namespacenc.html#a0d8a5ffeaed868463a6e55645c625c8f',1,'nc::log10(dtype inValue) noexcept'],['../namespacenc.html#a3cd82f65b6ee069a7d6443646dfecf67',1,'nc::log10(const NdArray< dtype > &inArray)']]], + ['log1p_2033',['log1p',['../namespacenc.html#a5abcc8523a49a47fd2224d5588f128b4',1,'nc::log1p(dtype inValue) noexcept'],['../namespacenc.html#a1ae30700a2db1cd8e44fa59b84c2b547',1,'nc::log1p(const NdArray< dtype > &inArray)']]], + ['log2_2034',['log2',['../namespacenc.html#a48cbc16dc706678b6f85e655e935cd41',1,'nc::log2(dtype inValue) noexcept'],['../namespacenc.html#a536e5046481a32bd6955a222f323393a',1,'nc::log2(const NdArray< dtype > &inArray)']]], + ['log_5fgamma_2035',['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)']]], + ['logb_2036',['logb',['../namespacenc.html#a4925bc774ee8c671be4e15ba4305d230',1,'nc::logb(dtype inValue, dtype inBase) noexcept'],['../namespacenc.html#a512c632dd9629cbc02ad96398f82ab2a',1,'nc::logb(const NdArray< dtype > &inArray, dtype inBase)']]], + ['logical_5fand_2037',['logical_and',['../namespacenc.html#a951c3f9acd6147a8e2be1ab2cda4d51c',1,'nc']]], + ['logical_5fnot_2038',['logical_not',['../namespacenc.html#ae90620999105f741609c7f279cac2907',1,'nc']]], + ['logical_5for_2039',['logical_or',['../namespacenc.html#a0492e302b114ab15b996b1330604478b',1,'nc']]], + ['logical_5fxor_2040',['logical_xor',['../namespacenc.html#a7b84e63b2d32e1b59bfef4690c918989',1,'nc']]], + ['lognormal_2041',['lognormal',['../namespacenc_1_1random.html#a03d5528a3a97b3731210ba2cc5d1c75d',1,'nc::random::lognormal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#a3adc9de1025d27ed485603980657225b',1,'nc::random::lognormal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)']]], + ['logspace_2042',['logspace',['../namespacenc.html#a4342eee2bea5ed3c8ece78b9119efc31',1,'nc']]], + ['lstsq_2043',['lstsq',['../namespacenc_1_1linalg.html#a9c15421c77e6b4b12fca1515596d1414',1,'nc::linalg']]], + ['lu_5fdecomposition_2044',['lu_decomposition',['../namespacenc_1_1linalg.html#a153a90dbcc2ca94c664c429868d15bc4',1,'nc::linalg']]] ]; diff --git a/docs/doxygen/html/search/functions_c.html b/docs/doxygen/html/search/functions_c.html index f9b23c34f..c4f326877 100644 --- a/docs/doxygen/html/search/functions_c.html +++ b/docs/doxygen/html/search/functions_c.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_c.js b/docs/doxygen/html/search/functions_c.js index c0e1db3df..6473dbb8e 100644 --- a/docs/doxygen/html/search/functions_c.js +++ b/docs/doxygen/html/search/functions_c.js @@ -1,28 +1,28 @@ var searchData= [ - ['makepositiveandvalidate_1948',['makePositiveAndValidate',['../classnc_1_1_slice.html#a4d518d51dad679d9a9c6938b065e38f8',1,'nc::Slice']]], - ['matmul_1949',['matmul',['../namespacenc.html#a9f795cdfcf86a07f1a7febcb9d024c73',1,'nc::matmul(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a82209f3c03cb63a659d28e7c87f7ee23',1,'nc::matmul(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#ab39e4a1bc6bcd0f28dbd5806d5f2d0b9',1,'nc::matmul(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)']]], - ['matrix_5fpower_1950',['matrix_power',['../namespacenc_1_1linalg.html#ad27c1996e4e27a6f8ba5d2aed0743bba',1,'nc::linalg']]], - ['max_1951',['max',['../classnc_1_1_dtype_info.html#a2a3dc0ba2812411660219f61189d8aca',1,'nc::DtypeInfo::max()'],['../namespacenc.html#a4d5872f22ac07aeba503857cb5948bc1',1,'nc::max()'],['../classnc_1_1_nd_array.html#abbca6c205525a4b706729f9f36acc06d',1,'nc::NdArray::max()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#acdf46b23b24e1421c38e6297c56024d1',1,'nc::DtypeInfo< std::complex< dtype > >::max()']]], - ['max_5felement_1952',['max_element',['../namespacenc_1_1stl__algorithms.html#a334cd50f7f10f689f82fa2ba7c5d88b2',1,'nc::stl_algorithms::max_element(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#a282a4146afe33e4abb012e5c6b332948',1,'nc::stl_algorithms::max_element(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], - ['maximum_1953',['maximum',['../namespacenc.html#a417e75e173adaf0f6a9905a60a62e135',1,'nc']]], - ['maximumfilter_1954',['maximumFilter',['../namespacenc_1_1filter.html#a237010b21fd77fa3b72c1fda0360f6a9',1,'nc::filter']]], - ['maximumfilter1d_1955',['maximumFilter1d',['../namespacenc_1_1filter.html#a6760bbaeefd6338527665fa2426cf418',1,'nc::filter']]], - ['mean_1956',['mean',['../namespacenc.html#ac0b868e518c5b489ce25b8a84ebc618b',1,'nc::mean(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#ae215351046b49fec834d006fd35a4078',1,'nc::mean(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], - ['median_1957',['median',['../namespacenc.html#a737b54d3ec786235c90211a3ad4a5cfb',1,'nc::median()'],['../classnc_1_1_nd_array.html#a4d733d7a90d94c3f21e90ab79dc2cc14',1,'nc::NdArray::median()']]], - ['medianfilter_1958',['medianFilter',['../namespacenc_1_1filter.html#a6edb931e0ad73a60625c4854f11ab82a',1,'nc::filter']]], - ['medianfilter1d_1959',['medianFilter1d',['../namespacenc_1_1filter.html#a39fc9c2648f0d223b63a5f1b7253bb40',1,'nc::filter']]], - ['meshgrid_1960',['meshgrid',['../namespacenc.html#ae392e03f9e01b088a082c6055082df49',1,'nc::meshgrid(const NdArray< dtype > &inICoords, const NdArray< dtype > &inJCoords)'],['../namespacenc.html#a2338e094bb1195888e3f385d01627c4f',1,'nc::meshgrid(const Slice &inSlice1, const Slice &inSlice2)']]], - ['min_1961',['min',['../classnc_1_1_nd_array.html#a7f0c49ac50a79ba24ea8d351ee70fd55',1,'nc::NdArray::min()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a420b21e23e9673bea71980f55bf82d03',1,'nc::DtypeInfo< std::complex< dtype > >::min()'],['../classnc_1_1_dtype_info.html#ab566f68bc6b82c06b5a3df887f87ab74',1,'nc::DtypeInfo::min()'],['../namespacenc.html#a8a61a49362258590b70289fd63fb2d8e',1,'nc::min()']]], - ['min_5felement_1962',['min_element',['../namespacenc_1_1stl__algorithms.html#af6291d1011c61c416134bc28def6f3ac',1,'nc::stl_algorithms::min_element(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#acb252e962fc7cedee9f4257453480d2b',1,'nc::stl_algorithms::min_element(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], - ['minimum_1963',['minimum',['../namespacenc.html#a8499c0529d36d402e32b3990d31429e8',1,'nc']]], - ['minimumfilter_1964',['minimumFilter',['../namespacenc_1_1filter.html#ad4b7a2f39d82320559353b151aec3585',1,'nc::filter']]], - ['minmax_5felement_1965',['minmax_element',['../namespacenc_1_1stl__algorithms.html#a919ee9141ca95be989ad9b872a7ebd27',1,'nc::stl_algorithms::minmax_element(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#ae1007b77aafe5a99b4952d9a8d8307af',1,'nc::stl_algorithms::minmax_element(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], - ['minumumfilter1d_1966',['minumumFilter1d',['../namespacenc_1_1filter.html#aca02565c2b898228312ef781bf4ed29c',1,'nc::filter']]], - ['minutes_1967',['minutes',['../classnc_1_1coordinates_1_1_dec.html#aeaa851b538014aae5bf909117e8fcb42',1,'nc::coordinates::Dec::minutes()'],['../classnc_1_1coordinates_1_1_r_a.html#a7f4f4c06b26cad116e250a0dc7553b02',1,'nc::coordinates::RA::minutes()']]], - ['mirror1d_1968',['mirror1d',['../namespacenc_1_1filter_1_1boundary.html#aaeb7c9f1da6f817190da9daa622c9c8d',1,'nc::filter::boundary']]], - ['mirror2d_1969',['mirror2d',['../namespacenc_1_1filter_1_1boundary.html#a2aaf003bb59428d53d1849dd188e10b8',1,'nc::filter::boundary']]], - ['mod_1970',['mod',['../namespacenc.html#ad8b53ff84658514a7007efba44802c5c',1,'nc']]], - ['multi_5fdot_1971',['multi_dot',['../namespacenc_1_1linalg.html#a86ab79e41b748e7ea0ee4f2e0bc462a6',1,'nc::linalg']]], - ['multiply_1972',['multiply',['../namespacenc.html#a6d7cd3b57c93a891a00d881832fdba77',1,'nc::multiply(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#aa6c517bf71575054de46518d7c0fce92',1,'nc::multiply(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#a4965aed453e169ec8cbcd09a76b8afda',1,'nc::multiply(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#ad413820c1e92c7dcf83366f33399d6ef',1,'nc::multiply(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a78bbe031000f44fa4cdc0ad6b7825b7e',1,'nc::multiply(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#ace4de2d438459be581bd9fbc0c85c8d7',1,'nc::multiply(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a8bf62ccb0b68f25de562a08315dbb58e',1,'nc::multiply(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a786f53f7de209bb989c5965861d5dc27',1,'nc::multiply(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#afe5c0aa7fc5442e1453159e1fa78115a',1,'nc::multiply(dtype value, const NdArray< std::complex< dtype >> &inArray)']]] + ['makepositiveandvalidate_2045',['makePositiveAndValidate',['../classnc_1_1_slice.html#a4d518d51dad679d9a9c6938b065e38f8',1,'nc::Slice']]], + ['matmul_2046',['matmul',['../namespacenc.html#a9f795cdfcf86a07f1a7febcb9d024c73',1,'nc::matmul(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#ab39e4a1bc6bcd0f28dbd5806d5f2d0b9',1,'nc::matmul(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#a82209f3c03cb63a659d28e7c87f7ee23',1,'nc::matmul(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)']]], + ['matrix_5fpower_2047',['matrix_power',['../namespacenc_1_1linalg.html#ad27c1996e4e27a6f8ba5d2aed0743bba',1,'nc::linalg']]], + ['max_2048',['max',['../classnc_1_1_dtype_info.html#a2a3dc0ba2812411660219f61189d8aca',1,'nc::DtypeInfo::max()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#acdf46b23b24e1421c38e6297c56024d1',1,'nc::DtypeInfo< std::complex< dtype > >::max()'],['../classnc_1_1_nd_array.html#abbca6c205525a4b706729f9f36acc06d',1,'nc::NdArray::max()'],['../namespacenc.html#a4d5872f22ac07aeba503857cb5948bc1',1,'nc::max()']]], + ['max_5felement_2049',['max_element',['../namespacenc_1_1stl__algorithms.html#a334cd50f7f10f689f82fa2ba7c5d88b2',1,'nc::stl_algorithms::max_element(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#a282a4146afe33e4abb012e5c6b332948',1,'nc::stl_algorithms::max_element(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], + ['maximum_2050',['maximum',['../namespacenc.html#a417e75e173adaf0f6a9905a60a62e135',1,'nc']]], + ['maximumfilter_2051',['maximumFilter',['../namespacenc_1_1filter.html#a237010b21fd77fa3b72c1fda0360f6a9',1,'nc::filter']]], + ['maximumfilter1d_2052',['maximumFilter1d',['../namespacenc_1_1filter.html#a6760bbaeefd6338527665fa2426cf418',1,'nc::filter']]], + ['mean_2053',['mean',['../namespacenc.html#ae215351046b49fec834d006fd35a4078',1,'nc::mean(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#ac0b868e518c5b489ce25b8a84ebc618b',1,'nc::mean(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], + ['median_2054',['median',['../classnc_1_1_nd_array.html#a4d733d7a90d94c3f21e90ab79dc2cc14',1,'nc::NdArray::median()'],['../namespacenc.html#a737b54d3ec786235c90211a3ad4a5cfb',1,'nc::median()']]], + ['medianfilter_2055',['medianFilter',['../namespacenc_1_1filter.html#a6edb931e0ad73a60625c4854f11ab82a',1,'nc::filter']]], + ['medianfilter1d_2056',['medianFilter1d',['../namespacenc_1_1filter.html#a39fc9c2648f0d223b63a5f1b7253bb40',1,'nc::filter']]], + ['meshgrid_2057',['meshgrid',['../namespacenc.html#ae392e03f9e01b088a082c6055082df49',1,'nc::meshgrid(const NdArray< dtype > &inICoords, const NdArray< dtype > &inJCoords)'],['../namespacenc.html#a2338e094bb1195888e3f385d01627c4f',1,'nc::meshgrid(const Slice &inSlice1, const Slice &inSlice2)']]], + ['min_2058',['min',['../classnc_1_1_dtype_info.html#ab566f68bc6b82c06b5a3df887f87ab74',1,'nc::DtypeInfo::min()'],['../classnc_1_1_nd_array.html#a7f0c49ac50a79ba24ea8d351ee70fd55',1,'nc::NdArray::min()'],['../classnc_1_1_dtype_info_3_01std_1_1complex_3_01dtype_01_4_01_4.html#a420b21e23e9673bea71980f55bf82d03',1,'nc::DtypeInfo< std::complex< dtype > >::min()'],['../namespacenc.html#a8a61a49362258590b70289fd63fb2d8e',1,'nc::min()']]], + ['min_5felement_2059',['min_element',['../namespacenc_1_1stl__algorithms.html#af6291d1011c61c416134bc28def6f3ac',1,'nc::stl_algorithms::min_element(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#acb252e962fc7cedee9f4257453480d2b',1,'nc::stl_algorithms::min_element(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], + ['minimum_2060',['minimum',['../namespacenc.html#a8499c0529d36d402e32b3990d31429e8',1,'nc']]], + ['minimumfilter_2061',['minimumFilter',['../namespacenc_1_1filter.html#ad4b7a2f39d82320559353b151aec3585',1,'nc::filter']]], + ['minmax_5felement_2062',['minmax_element',['../namespacenc_1_1stl__algorithms.html#a919ee9141ca95be989ad9b872a7ebd27',1,'nc::stl_algorithms::minmax_element(ForwardIt first, ForwardIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#ae1007b77aafe5a99b4952d9a8d8307af',1,'nc::stl_algorithms::minmax_element(ForwardIt first, ForwardIt last, Compare comp) noexcept']]], + ['minumumfilter1d_2063',['minumumFilter1d',['../namespacenc_1_1filter.html#aca02565c2b898228312ef781bf4ed29c',1,'nc::filter']]], + ['minutes_2064',['minutes',['../classnc_1_1coordinates_1_1_dec.html#aeaa851b538014aae5bf909117e8fcb42',1,'nc::coordinates::Dec::minutes()'],['../classnc_1_1coordinates_1_1_r_a.html#a7f4f4c06b26cad116e250a0dc7553b02',1,'nc::coordinates::RA::minutes()']]], + ['mirror1d_2065',['mirror1d',['../namespacenc_1_1filter_1_1boundary.html#aaeb7c9f1da6f817190da9daa622c9c8d',1,'nc::filter::boundary']]], + ['mirror2d_2066',['mirror2d',['../namespacenc_1_1filter_1_1boundary.html#a2aaf003bb59428d53d1849dd188e10b8',1,'nc::filter::boundary']]], + ['mod_2067',['mod',['../namespacenc.html#ad8b53ff84658514a7007efba44802c5c',1,'nc']]], + ['multi_5fdot_2068',['multi_dot',['../namespacenc_1_1linalg.html#a86ab79e41b748e7ea0ee4f2e0bc462a6',1,'nc::linalg']]], + ['multiply_2069',['multiply',['../namespacenc.html#a6d7cd3b57c93a891a00d881832fdba77',1,'nc::multiply(const NdArray< dtype > &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#aa6c517bf71575054de46518d7c0fce92',1,'nc::multiply(const NdArray< dtype > &inArray, dtype value)'],['../namespacenc.html#a4965aed453e169ec8cbcd09a76b8afda',1,'nc::multiply(dtype value, const NdArray< dtype > &inArray)'],['../namespacenc.html#ad413820c1e92c7dcf83366f33399d6ef',1,'nc::multiply(const NdArray< dtype > &inArray1, const NdArray< std::complex< dtype >> &inArray2)'],['../namespacenc.html#a78bbe031000f44fa4cdc0ad6b7825b7e',1,'nc::multiply(const NdArray< std::complex< dtype >> &inArray1, const NdArray< dtype > &inArray2)'],['../namespacenc.html#ace4de2d438459be581bd9fbc0c85c8d7',1,'nc::multiply(const NdArray< dtype > &inArray, const std::complex< dtype > &value)'],['../namespacenc.html#a8bf62ccb0b68f25de562a08315dbb58e',1,'nc::multiply(const std::complex< dtype > &value, const NdArray< dtype > &inArray)'],['../namespacenc.html#a786f53f7de209bb989c5965861d5dc27',1,'nc::multiply(const NdArray< std::complex< dtype >> &inArray, dtype value)'],['../namespacenc.html#afe5c0aa7fc5442e1453159e1fa78115a',1,'nc::multiply(dtype value, const NdArray< std::complex< dtype >> &inArray)']]] ]; diff --git a/docs/doxygen/html/search/functions_d.html b/docs/doxygen/html/search/functions_d.html index 858039b83..7a1ed065d 100644 --- a/docs/doxygen/html/search/functions_d.html +++ b/docs/doxygen/html/search/functions_d.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_d.js b/docs/doxygen/html/search/functions_d.js index c8174e07d..e88bbcb87 100644 --- a/docs/doxygen/html/search/functions_d.js +++ b/docs/doxygen/html/search/functions_d.js @@ -1,45 +1,48 @@ var searchData= [ - ['name_1973',['name',['../classnc_1_1filesystem_1_1_file.html#a29fd40eb720c1caad3dcef59e2f215a4',1,'nc::filesystem::File']]], - ['nan_5fto_5fnum_1974',['nan_to_num',['../namespacenc.html#ab5b2173fccfe4b4a8c91edb704c51b12',1,'nc']]], - ['nanargmax_1975',['nanargmax',['../namespacenc.html#a5f3d3d15fae35dc9538f6daa792f3e1b',1,'nc']]], - ['nanargmin_1976',['nanargmin',['../namespacenc.html#a0c69df200cbe88324129ae3c6fc05330',1,'nc']]], - ['nancumprod_1977',['nancumprod',['../namespacenc.html#ad22449b2b6c92860eed3670d68ea4ba4',1,'nc']]], - ['nancumsum_1978',['nancumsum',['../namespacenc.html#a626089b225be4978da275ef9a7ecf451',1,'nc']]], - ['nanmax_1979',['nanmax',['../namespacenc.html#a00ab1c4ed4358cba5e87a3d107720474',1,'nc']]], - ['nanmean_1980',['nanmean',['../namespacenc.html#acac66186b7fff8d8cdc1dd3f37b98297',1,'nc']]], - ['nanmedian_1981',['nanmedian',['../namespacenc.html#a60fd6cc6607d10bf8fe4913a5daa7f3a',1,'nc']]], - ['nanmin_1982',['nanmin',['../namespacenc.html#a2f4b9832c72a282a23da1dad186d36d8',1,'nc']]], - ['nanpercentile_1983',['nanpercentile',['../namespacenc.html#ade1f6fe4e6860b046b50e05252a61c0a',1,'nc']]], - ['nanprod_1984',['nanprod',['../namespacenc.html#a8121a0aa2907751c6fd7db34dfc28719',1,'nc']]], - ['nans_1985',['nans',['../classnc_1_1_nd_array.html#aa7592409ea9bc24e4324725e5ff74ee9',1,'nc::NdArray::nans()'],['../namespacenc.html#a6bec1d7117a467081676bfd8d31fcd87',1,'nc::nans(const Shape &inShape)'],['../namespacenc.html#aea74254d1b55e5b9adf1e6610b0da9d6',1,'nc::nans(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a1c3fe37572a53d83154138b2de5d5e8b',1,'nc::nans(uint32 inSquareSize)']]], - ['nans_5flike_1986',['nans_like',['../namespacenc.html#aae8b7e12e53ff6e21d555c1eabadf615',1,'nc']]], - ['nanstdev_1987',['nanstdev',['../namespacenc.html#a3ae8768b4362f564849bc2ba0115450a',1,'nc']]], - ['nansum_1988',['nansum',['../namespacenc.html#a69b05488ef7b28eefa3bc733836a4e48',1,'nc']]], - ['nanvar_1989',['nanvar',['../namespacenc.html#a333035c5f246c01da1de4ae7015f5715',1,'nc']]], - ['nbytes_1990',['nbytes',['../namespacenc.html#a66464387c8d92793b5355e2afd107cbc',1,'nc::nbytes()'],['../classnc_1_1_nd_array.html#a775e07af6829b5336969c703c4eddba7',1,'nc::NdArray::nbytes() const noexcept']]], - ['ndarray_1991',['NdArray',['../classnc_1_1_nd_array.html#a567a45c944672939e89fa507236d1158',1,'nc::NdArray::NdArray(const std::deque< std::deque< dtype >> &in2dDeque)'],['../classnc_1_1_nd_array.html#a46c4fbd999ab1d612586191a15ada4b7',1,'nc::NdArray::NdArray(Iterator inFirst, Iterator inLast)'],['../classnc_1_1_nd_array.html#ad94cfcf69d664d94e81fc98a0a61d193',1,'nc::NdArray::NdArray(const std::deque< dtype > &inDeque)'],['../classnc_1_1_nd_array.html#a00cddf06371547d613388cefeece2cc0',1,'nc::NdArray::NdArray(std::vector< std::array< dtype, Dim1Size >> &in2dArray, bool copy=true)'],['../classnc_1_1_nd_array.html#a9d7045ecdff86bac3306a8bfd9a787eb',1,'nc::NdArray::NdArray(const std::vector< std::vector< dtype >> &in2dVector)'],['../classnc_1_1_nd_array.html#a1847487093139deb6a541cfaa43c3d90',1,'nc::NdArray::NdArray(std::vector< dtype > &inVector, bool copy=true)'],['../classnc_1_1_nd_array.html#ad9ccdeb2572f239a33ca5fbb473b513a',1,'nc::NdArray::NdArray(std::array< std::array< dtype, Dim1Size >, Dim0Size > &in2dArray, bool copy=true)'],['../classnc_1_1_nd_array.html#ad724d08ab913c125a38bc528e68cad8e',1,'nc::NdArray::NdArray(std::array< dtype, ArraySize > &inArray, bool copy=true)'],['../classnc_1_1_nd_array.html#a1877502ba79a59c3a9b144e6111def1a',1,'nc::NdArray::NdArray(const std::initializer_list< std::initializer_list< dtype > > &inList)'],['../classnc_1_1_nd_array.html#a9b5658aaaff185187c964a6bf3f4f5a3',1,'nc::NdArray::NdArray(const std::initializer_list< dtype > &inList)'],['../classnc_1_1_nd_array.html#af8cd2e1b7214c4b8b8b784e1b5265c11',1,'nc::NdArray::NdArray(const Shape &inShape)'],['../classnc_1_1_nd_array.html#a8509cda74ae6f29995dd8a9f27d30d11',1,'nc::NdArray::NdArray(size_type inNumRows, size_type inNumCols)'],['../classnc_1_1_nd_array.html#a91801907e76fd8ecc9ce7ff3b85ea9bd',1,'nc::NdArray::NdArray(size_type inSquareSize)'],['../classnc_1_1_nd_array.html#a7b46bea4f56ab2327fc291dac4e75788',1,'nc::NdArray::NdArray()=default'],['../classnc_1_1_nd_array.html#a7b0f43ea1853dcc471949c0e7eb977f5',1,'nc::NdArray::NdArray(const std::list< dtype > &inList)'],['../classnc_1_1_nd_array.html#ad8160a6009ce9c0c8bbb384261ce18bb',1,'nc::NdArray::NdArray(const_pointer inPtr, size_type size)'],['../classnc_1_1_nd_array.html#a7473135d0434a04abec09a884b5683cc',1,'nc::NdArray::NdArray(const_pointer inPtr, UIntType1 numRows, UIntType2 numCols)'],['../classnc_1_1_nd_array.html#aee44fee3e2c882d490898c082db39449',1,'nc::NdArray::NdArray(pointer inPtr, size_type size, Bool takeOwnership) noexcept'],['../classnc_1_1_nd_array.html#aa6bf0b18b1ebb54b2a1fd4e4b33253dd',1,'nc::NdArray::NdArray(NdArray< dtype > &&inOtherArray) noexcept'],['../classnc_1_1_nd_array.html#ae04a364f503fe72c06d2f7cd78e712d6',1,'nc::NdArray::NdArray(const NdArray< dtype > &inOtherArray)'],['../classnc_1_1_nd_array.html#a7fcb1cf40a8402e8ba6353e58eed8dbd',1,'nc::NdArray::NdArray(pointer inPtr, uint32 numRows, uint32 numCols, Bool takeOwnership) noexcept']]], - ['ndarrayconstcolumniterator_1992',['NdArrayConstColumnIterator',['../classnc_1_1_nd_array_const_column_iterator.html#aff03e1020fa6e935fb0fe2a926a4f378',1,'nc::NdArrayConstColumnIterator::NdArrayConstColumnIterator(pointer ptr, SizeType numRows, SizeType numCols) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a3c779a77e6a0920d8fc799931feb3c3d',1,'nc::NdArrayConstColumnIterator::NdArrayConstColumnIterator()=default']]], - ['ndarrayconstiterator_1993',['NdArrayConstIterator',['../classnc_1_1_nd_array_const_iterator.html#a8f0504fbf9ea4d0f89cda5b7e120b6f0',1,'nc::NdArrayConstIterator::NdArrayConstIterator(pointer ptr)'],['../classnc_1_1_nd_array_const_iterator.html#a518e77992a6b8710c2d43734a84f2006',1,'nc::NdArrayConstIterator::NdArrayConstIterator()=default']]], - ['nearest1d_1994',['nearest1d',['../namespacenc_1_1filter_1_1boundary.html#ac5f60c43aa94490993eee9fcc1e105b1',1,'nc::filter::boundary']]], - ['nearest2d_1995',['nearest2d',['../namespacenc_1_1filter_1_1boundary.html#a7f70d66ead018652239bb3334a040850',1,'nc::filter::boundary']]], - ['negative_1996',['negative',['../namespacenc.html#a678a4671c949113db1578078d409bb91',1,'nc']]], - ['negativebinomial_1997',['negativeBinomial',['../namespacenc_1_1random.html#a1a15a08fe9134f5dcf5e7b32eb1de5e2',1,'nc::random::negativeBinomial(dtype inN, double inP=0.5)'],['../namespacenc_1_1random.html#ac6181e54b9cae303574f9c5fad33cfc2',1,'nc::random::negativeBinomial(const Shape &inShape, dtype inN, double inP=0.5)']]], - ['newbyteorder_1998',['newbyteorder',['../classnc_1_1_nd_array.html#ae5fe2e501921c3361c0edc66030b772d',1,'nc::NdArray::newbyteorder()'],['../namespacenc.html#a4d2ae51817f2acee83e2df0e04a8bac5',1,'nc::newbyteorder(dtype inValue, Endian inEndianess)'],['../namespacenc.html#adfc5c49151c50d90fce45c676b0fcaa4',1,'nc::newbyteorder(const NdArray< dtype > &inArray, Endian inEndianess)']]], - ['newton_1999',['Newton',['../classnc_1_1roots_1_1_newton.html#ab5b82361c4ce325e6165e023c0255d3e',1,'nc::roots::Newton::Newton(const double epsilon, std::function< double(double)> f, std::function< double(double)> fPrime) noexcept'],['../classnc_1_1roots_1_1_newton.html#aecc72e3899f42b277536689439ea24bc',1,'nc::roots::Newton::Newton(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f, std::function< double(double)> fPrime) noexcept']]], - ['nlerp_2000',['nlerp',['../classnc_1_1rotations_1_1_quaternion.html#a314478702a3da52f2be3f422057d8732',1,'nc::rotations::Quaternion::nlerp(const Quaternion &inQuat1, const Quaternion &inQuat2, double inPercent)'],['../classnc_1_1rotations_1_1_quaternion.html#ab055510c1338490b957de867cecaf790',1,'nc::rotations::Quaternion::nlerp(const Quaternion &inQuat2, double inPercent) const']]], - ['noncentralchisquared_2001',['nonCentralChiSquared',['../namespacenc_1_1random.html#abf3cab0396026700ebf2d2ffa5e13fa6',1,'nc::random::nonCentralChiSquared(dtype inK=1, dtype inLambda=1)'],['../namespacenc_1_1random.html#af01395c7355ee4c0f36441c40039e82d',1,'nc::random::nonCentralChiSquared(const Shape &inShape, dtype inK=1, dtype inLambda=1)']]], - ['none_2002',['none',['../namespacenc.html#ada2840f1202c44082ee75b5f5705399d',1,'nc::none()'],['../classnc_1_1_nd_array.html#a379f8cd88dc84a38d668cb7bf97078ee',1,'nc::NdArray::none()']]], - ['none_5fof_2003',['none_of',['../namespacenc_1_1stl__algorithms.html#a2804ccb14980f96c7680838adc3b2762',1,'nc::stl_algorithms']]], - ['nonzero_2004',['nonzero',['../classnc_1_1_nd_array.html#a6cc8c7b53a707468d6da112849970904',1,'nc::NdArray::nonzero()'],['../namespacenc.html#a46ce9bcc6ba641e0550934b981175683',1,'nc::nonzero(const NdArray< dtype > &inArray)']]], - ['norm_2005',['norm',['../namespacenc.html#aa57b910a1d9a448a15e76bd72563ac5d',1,'nc::norm(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a13467936d679d6d078d585504bc42642',1,'nc::norm(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)'],['../classnc_1_1_vec2.html#ab6922f6c089b20e9d019301fddc6dc0a',1,'nc::Vec2::norm()'],['../classnc_1_1_vec3.html#a6c177e1f5c00584279a0527d3053dee8',1,'nc::Vec3::norm()']]], - ['normal_2006',['normal',['../namespacenc_1_1random.html#a0d52ff6ccaa63bc36348ba39e5936056',1,'nc::random::normal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#ab655c4af3dac07aeff39efd50c120f4d',1,'nc::random::normal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)']]], - ['normalize_2007',['normalize',['../classnc_1_1_vec3.html#a6356b462b11a156b923a7c79b9747c25',1,'nc::Vec3::normalize()'],['../classnc_1_1_vec2.html#a8d8a3ec28ef8336ab02dcd964a3e836c',1,'nc::Vec2::normalize()']]], - ['not_5fequal_2008',['not_equal',['../namespacenc.html#ac6c0da616068bc667891c0a460431de3',1,'nc']]], - ['nth_5felement_2009',['nth_element',['../namespacenc_1_1stl__algorithms.html#af5ef45ab7814938799020ad24358b734',1,'nc::stl_algorithms::nth_element(RandomIt first, RandomIt nth, RandomIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#a9928869b550b082898709c5671936079',1,'nc::stl_algorithms::nth_element(RandomIt first, RandomIt nth, RandomIt last, Compare comp) noexcept']]], - ['num2str_2010',['num2str',['../namespacenc_1_1utils.html#a16a6ad93c420ed7a003d9921bee1a7c6',1,'nc::utils']]], - ['numcols_2011',['numCols',['../classnc_1_1_nd_array.html#a0049b5d6d1d99463edc773f01eb7c091',1,'nc::NdArray']]], - ['numelements_2012',['numElements',['../classnc_1_1_slice.html#aab35be40c38521a4bd9b3c99b3d33731',1,'nc::Slice']]], - ['numiterations_2013',['numIterations',['../classnc_1_1roots_1_1_iteration.html#ab3192d0f9de4b8b27b23013c65489e5a',1,'nc::roots::Iteration']]], - ['numrows_2014',['numRows',['../classnc_1_1_nd_array.html#a2dbdc72c98c216a133f7e1a8d3c067f7',1,'nc::NdArray']]] + ['name_2070',['name',['../classnc_1_1filesystem_1_1_file.html#a29fd40eb720c1caad3dcef59e2f215a4',1,'nc::filesystem::File']]], + ['nan_5fto_5fnum_2071',['nan_to_num',['../namespacenc.html#ab5b2173fccfe4b4a8c91edb704c51b12',1,'nc']]], + ['nanargmax_2072',['nanargmax',['../namespacenc.html#a5f3d3d15fae35dc9538f6daa792f3e1b',1,'nc']]], + ['nanargmin_2073',['nanargmin',['../namespacenc.html#a0c69df200cbe88324129ae3c6fc05330',1,'nc']]], + ['nancumprod_2074',['nancumprod',['../namespacenc.html#ad22449b2b6c92860eed3670d68ea4ba4',1,'nc']]], + ['nancumsum_2075',['nancumsum',['../namespacenc.html#a626089b225be4978da275ef9a7ecf451',1,'nc']]], + ['nanmax_2076',['nanmax',['../namespacenc.html#a00ab1c4ed4358cba5e87a3d107720474',1,'nc']]], + ['nanmean_2077',['nanmean',['../namespacenc.html#acac66186b7fff8d8cdc1dd3f37b98297',1,'nc']]], + ['nanmedian_2078',['nanmedian',['../namespacenc.html#a60fd6cc6607d10bf8fe4913a5daa7f3a',1,'nc']]], + ['nanmin_2079',['nanmin',['../namespacenc.html#a2f4b9832c72a282a23da1dad186d36d8',1,'nc']]], + ['nanpercentile_2080',['nanpercentile',['../namespacenc.html#ade1f6fe4e6860b046b50e05252a61c0a',1,'nc']]], + ['nanprod_2081',['nanprod',['../namespacenc.html#a8121a0aa2907751c6fd7db34dfc28719',1,'nc']]], + ['nans_2082',['nans',['../classnc_1_1_nd_array.html#aa7592409ea9bc24e4324725e5ff74ee9',1,'nc::NdArray::nans()'],['../namespacenc.html#a6bec1d7117a467081676bfd8d31fcd87',1,'nc::nans(const Shape &inShape)'],['../namespacenc.html#aea74254d1b55e5b9adf1e6610b0da9d6',1,'nc::nans(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#a1c3fe37572a53d83154138b2de5d5e8b',1,'nc::nans(uint32 inSquareSize)']]], + ['nans_5flike_2083',['nans_like',['../namespacenc.html#aae8b7e12e53ff6e21d555c1eabadf615',1,'nc']]], + ['nanstdev_2084',['nanstdev',['../namespacenc.html#a3ae8768b4362f564849bc2ba0115450a',1,'nc']]], + ['nansum_2085',['nansum',['../namespacenc.html#a69b05488ef7b28eefa3bc733836a4e48',1,'nc']]], + ['nanvar_2086',['nanvar',['../namespacenc.html#a333035c5f246c01da1de4ae7015f5715',1,'nc']]], + ['nbytes_2087',['nbytes',['../classnc_1_1_nd_array.html#a775e07af6829b5336969c703c4eddba7',1,'nc::NdArray::nbytes()'],['../namespacenc.html#a66464387c8d92793b5355e2afd107cbc',1,'nc::nbytes()']]], + ['ndarray_2088',['NdArray',['../classnc_1_1_nd_array.html#a7b46bea4f56ab2327fc291dac4e75788',1,'nc::NdArray::NdArray()=default'],['../classnc_1_1_nd_array.html#a91801907e76fd8ecc9ce7ff3b85ea9bd',1,'nc::NdArray::NdArray(size_type inSquareSize)'],['../classnc_1_1_nd_array.html#a8509cda74ae6f29995dd8a9f27d30d11',1,'nc::NdArray::NdArray(size_type inNumRows, size_type inNumCols)'],['../classnc_1_1_nd_array.html#af8cd2e1b7214c4b8b8b784e1b5265c11',1,'nc::NdArray::NdArray(const Shape &inShape)'],['../classnc_1_1_nd_array.html#a66ae5664d66e900a48ca1d9a607f655e',1,'nc::NdArray::NdArray(std::initializer_list< dtype > inList)'],['../classnc_1_1_nd_array.html#a1877502ba79a59c3a9b144e6111def1a',1,'nc::NdArray::NdArray(const std::initializer_list< std::initializer_list< dtype > > &inList)'],['../classnc_1_1_nd_array.html#ad724d08ab913c125a38bc528e68cad8e',1,'nc::NdArray::NdArray(std::array< dtype, ArraySize > &inArray, bool copy=true)'],['../classnc_1_1_nd_array.html#a1847487093139deb6a541cfaa43c3d90',1,'nc::NdArray::NdArray(std::vector< dtype > &inVector, bool copy=true)'],['../classnc_1_1_nd_array.html#a9d7045ecdff86bac3306a8bfd9a787eb',1,'nc::NdArray::NdArray(const std::vector< std::vector< dtype >> &in2dVector)'],['../classnc_1_1_nd_array.html#a00cddf06371547d613388cefeece2cc0',1,'nc::NdArray::NdArray(std::vector< std::array< dtype, Dim1Size >> &in2dArray, bool copy=true)'],['../classnc_1_1_nd_array.html#ad94cfcf69d664d94e81fc98a0a61d193',1,'nc::NdArray::NdArray(const std::deque< dtype > &inDeque)'],['../classnc_1_1_nd_array.html#a567a45c944672939e89fa507236d1158',1,'nc::NdArray::NdArray(const std::deque< std::deque< dtype >> &in2dDeque)'],['../classnc_1_1_nd_array.html#a7b0f43ea1853dcc471949c0e7eb977f5',1,'nc::NdArray::NdArray(const std::list< dtype > &inList)'],['../classnc_1_1_nd_array.html#a46c4fbd999ab1d612586191a15ada4b7',1,'nc::NdArray::NdArray(Iterator inFirst, Iterator inLast)'],['../classnc_1_1_nd_array.html#ad8160a6009ce9c0c8bbb384261ce18bb',1,'nc::NdArray::NdArray(const_pointer inPtr, size_type size)'],['../classnc_1_1_nd_array.html#a7473135d0434a04abec09a884b5683cc',1,'nc::NdArray::NdArray(const_pointer inPtr, UIntType1 numRows, UIntType2 numCols)'],['../classnc_1_1_nd_array.html#aee44fee3e2c882d490898c082db39449',1,'nc::NdArray::NdArray(pointer inPtr, size_type size, Bool takeOwnership) noexcept'],['../classnc_1_1_nd_array.html#a7fcb1cf40a8402e8ba6353e58eed8dbd',1,'nc::NdArray::NdArray(pointer inPtr, uint32 numRows, uint32 numCols, Bool takeOwnership) noexcept'],['../classnc_1_1_nd_array.html#ae04a364f503fe72c06d2f7cd78e712d6',1,'nc::NdArray::NdArray(const NdArray< dtype > &inOtherArray)'],['../classnc_1_1_nd_array.html#aa6bf0b18b1ebb54b2a1fd4e4b33253dd',1,'nc::NdArray::NdArray(NdArray< dtype > &&inOtherArray) noexcept'],['../classnc_1_1_nd_array.html#ad9ccdeb2572f239a33ca5fbb473b513a',1,'nc::NdArray::NdArray(std::array< std::array< dtype, Dim1Size >, Dim0Size > &in2dArray, bool copy=true)']]], + ['ndarrayconstcolumniterator_2089',['NdArrayConstColumnIterator',['../classnc_1_1_nd_array_const_column_iterator.html#a3c779a77e6a0920d8fc799931feb3c3d',1,'nc::NdArrayConstColumnIterator::NdArrayConstColumnIterator()=default'],['../classnc_1_1_nd_array_const_column_iterator.html#aff03e1020fa6e935fb0fe2a926a4f378',1,'nc::NdArrayConstColumnIterator::NdArrayConstColumnIterator(pointer ptr, SizeType numRows, SizeType numCols) noexcept']]], + ['ndarrayconstiterator_2090',['NdArrayConstIterator',['../classnc_1_1_nd_array_const_iterator.html#a8f0504fbf9ea4d0f89cda5b7e120b6f0',1,'nc::NdArrayConstIterator::NdArrayConstIterator(pointer ptr)'],['../classnc_1_1_nd_array_const_iterator.html#a518e77992a6b8710c2d43734a84f2006',1,'nc::NdArrayConstIterator::NdArrayConstIterator()=default']]], + ['nearest1d_2091',['nearest1d',['../namespacenc_1_1filter_1_1boundary.html#ac5f60c43aa94490993eee9fcc1e105b1',1,'nc::filter::boundary']]], + ['nearest2d_2092',['nearest2d',['../namespacenc_1_1filter_1_1boundary.html#a7f70d66ead018652239bb3334a040850',1,'nc::filter::boundary']]], + ['negative_2093',['negative',['../namespacenc.html#a678a4671c949113db1578078d409bb91',1,'nc']]], + ['negativebinomial_2094',['negativeBinomial',['../namespacenc_1_1random.html#ac6181e54b9cae303574f9c5fad33cfc2',1,'nc::random::negativeBinomial(const Shape &inShape, dtype inN, double inP=0.5)'],['../namespacenc_1_1random.html#a1a15a08fe9134f5dcf5e7b32eb1de5e2',1,'nc::random::negativeBinomial(dtype inN, double inP=0.5)']]], + ['newbyteorder_2095',['newbyteorder',['../namespacenc.html#adfc5c49151c50d90fce45c676b0fcaa4',1,'nc::newbyteorder(const NdArray< dtype > &inArray, Endian inEndianess)'],['../namespacenc.html#a4d2ae51817f2acee83e2df0e04a8bac5',1,'nc::newbyteorder(dtype inValue, Endian inEndianess)'],['../classnc_1_1_nd_array.html#ae5fe2e501921c3361c0edc66030b772d',1,'nc::NdArray::newbyteorder()']]], + ['newton_2096',['Newton',['../classnc_1_1roots_1_1_newton.html#aecc72e3899f42b277536689439ea24bc',1,'nc::roots::Newton::Newton(const double epsilon, const uint32 maxNumIterations, std::function< double(double)> f, std::function< double(double)> fPrime) noexcept'],['../classnc_1_1roots_1_1_newton.html#ab5b82361c4ce325e6165e023c0255d3e',1,'nc::roots::Newton::Newton(const double epsilon, std::function< double(double)> f, std::function< double(double)> fPrime) noexcept']]], + ['nextpoweroftwo_2097',['nextPowerOfTwo',['../namespacenc_1_1edac_1_1detail.html#a279241a794bffbea6920299cf8e5c4a1',1,'nc::edac::detail']]], + ['nlerp_2098',['nlerp',['../classnc_1_1rotations_1_1_quaternion.html#ab055510c1338490b957de867cecaf790',1,'nc::rotations::Quaternion::nlerp(const Quaternion &inQuat2, double inPercent) const'],['../classnc_1_1rotations_1_1_quaternion.html#a314478702a3da52f2be3f422057d8732',1,'nc::rotations::Quaternion::nlerp(const Quaternion &inQuat1, const Quaternion &inQuat2, double inPercent)']]], + ['noncentralchisquared_2099',['nonCentralChiSquared',['../namespacenc_1_1random.html#af01395c7355ee4c0f36441c40039e82d',1,'nc::random::nonCentralChiSquared(const Shape &inShape, dtype inK=1, dtype inLambda=1)'],['../namespacenc_1_1random.html#abf3cab0396026700ebf2d2ffa5e13fa6',1,'nc::random::nonCentralChiSquared(dtype inK=1, dtype inLambda=1)']]], + ['none_2100',['none',['../classnc_1_1_nd_array.html#a379f8cd88dc84a38d668cb7bf97078ee',1,'nc::NdArray::none()'],['../namespacenc.html#ada2840f1202c44082ee75b5f5705399d',1,'nc::none()']]], + ['none_5fof_2101',['none_of',['../namespacenc_1_1stl__algorithms.html#a2804ccb14980f96c7680838adc3b2762',1,'nc::stl_algorithms']]], + ['nonzero_2102',['nonzero',['../classnc_1_1_nd_array.html#a6cc8c7b53a707468d6da112849970904',1,'nc::NdArray::nonzero()'],['../namespacenc.html#a46ce9bcc6ba641e0550934b981175683',1,'nc::nonzero()']]], + ['norm_2103',['norm',['../classnc_1_1_vec2.html#ab6922f6c089b20e9d019301fddc6dc0a',1,'nc::Vec2::norm()'],['../classnc_1_1_vec3.html#a6c177e1f5c00584279a0527d3053dee8',1,'nc::Vec3::norm()'],['../namespacenc.html#aa57b910a1d9a448a15e76bd72563ac5d',1,'nc::norm(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)'],['../namespacenc.html#a13467936d679d6d078d585504bc42642',1,'nc::norm(const NdArray< std::complex< dtype >> &inArray, Axis inAxis=Axis::NONE)']]], + ['normal_2104',['normal',['../namespacenc_1_1random.html#a0d52ff6ccaa63bc36348ba39e5936056',1,'nc::random::normal(dtype inMean=0, dtype inSigma=1)'],['../namespacenc_1_1random.html#ab655c4af3dac07aeff39efd50c120f4d',1,'nc::random::normal(const Shape &inShape, dtype inMean=0, dtype inSigma=1)']]], + ['normalize_2105',['normalize',['../classnc_1_1_vec2.html#a8d8a3ec28ef8336ab02dcd964a3e836c',1,'nc::Vec2::normalize()'],['../classnc_1_1_vec3.html#a6356b462b11a156b923a7c79b9747c25',1,'nc::Vec3::normalize()']]], + ['not_5fequal_2106',['not_equal',['../namespacenc.html#ac6c0da616068bc667891c0a460431de3',1,'nc']]], + ['nth_5felement_2107',['nth_element',['../namespacenc_1_1stl__algorithms.html#af5ef45ab7814938799020ad24358b734',1,'nc::stl_algorithms::nth_element(RandomIt first, RandomIt nth, RandomIt last) noexcept'],['../namespacenc_1_1stl__algorithms.html#a9928869b550b082898709c5671936079',1,'nc::stl_algorithms::nth_element(RandomIt first, RandomIt nth, RandomIt last, Compare comp) noexcept']]], + ['nth_5froot_2108',['nth_root',['../namespacenc.html#aae5eb97b7313026b451ac4d7c01db027',1,'nc::nth_root(dtype1 inValue, dtype2 inRoot) noexcept'],['../namespacenc.html#a6da3daf9d73c1cea2e69c77f62b267b0',1,'nc::nth_root(const NdArray< dtype1 > &inArray, dtype2 inRoot)']]], + ['num2str_2109',['num2str',['../namespacenc_1_1utils.html#a16a6ad93c420ed7a003d9921bee1a7c6',1,'nc::utils']]], + ['numcols_2110',['numCols',['../classnc_1_1_nd_array.html#a0049b5d6d1d99463edc773f01eb7c091',1,'nc::NdArray']]], + ['numelements_2111',['numElements',['../classnc_1_1_slice.html#aab35be40c38521a4bd9b3c99b3d33731',1,'nc::Slice']]], + ['numiterations_2112',['numIterations',['../classnc_1_1roots_1_1_iteration.html#ab3192d0f9de4b8b27b23013c65489e5a',1,'nc::roots::Iteration']]], + ['numrows_2113',['numRows',['../classnc_1_1_nd_array.html#a2dbdc72c98c216a133f7e1a8d3c067f7',1,'nc::NdArray']]], + ['numsecdedparitybitsneeded_2114',['numSecdedParityBitsNeeded',['../namespacenc_1_1edac_1_1detail.html#a6ee59971c08bfdc3e11a0245f17d5f9a',1,'nc::edac::detail']]] ]; diff --git a/docs/doxygen/html/search/functions_e.html b/docs/doxygen/html/search/functions_e.html index edb386f60..22d2a6bf5 100644 --- a/docs/doxygen/html/search/functions_e.html +++ b/docs/doxygen/html/search/functions_e.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_e.js b/docs/doxygen/html/search/functions_e.js index 05e25baef..933d17d44 100644 --- a/docs/doxygen/html/search/functions_e.js +++ b/docs/doxygen/html/search/functions_e.js @@ -1,44 +1,44 @@ var searchData= [ - ['ones_2015',['ones',['../classnc_1_1_nd_array.html#ac6e5a0c875c593a6bc1970745af3684b',1,'nc::NdArray::ones()'],['../namespacenc.html#a5a935c0d187c7a0cab3d7ada27ffafc5',1,'nc::ones(const Shape &inShape)'],['../namespacenc.html#a0f6db9a6dcb85c14639b515f53d6b893',1,'nc::ones(uint32 inNumRows, uint32 inNumCols)'],['../namespacenc.html#ac9ffd1a2fa29857f39a38a9dab1079a2',1,'nc::ones(uint32 inSquareSize)']]], - ['ones_5flike_2016',['ones_like',['../namespacenc.html#a90cb0bbdc492b0b10e635a79aa943e51',1,'nc']]], - ['operator_21_2017',['operator!',['../namespacenc.html#a5afb0ad958d78f15eb6617618aec0640',1,'nc']]], - ['operator_21_3d_2018',['operator!=',['../classnc_1_1coordinates_1_1_coordinate.html#a8d139bb6b4d2d315d32d6fa818dab93d',1,'nc::coordinates::Coordinate::operator!=()'],['../namespacenc.html#a631e6eb2bf338af6af8487fd2d94b0a8',1,'nc::operator!=(dtype inValue, const NdArray< dtype > &inArray)'],['../namespacenc.html#a4cb019941743262a028a62001cda4bd0',1,'nc::operator!=(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#a33e15d535856758fb49567aa71204426',1,'nc::operator!=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1_vec3.html#aad142760da8d2b3493462b4542e42673',1,'nc::Vec3::operator!=()'],['../classnc_1_1_vec2.html#ac83768c682c162ec9dffe1bfb9637338',1,'nc::Vec2::operator!=()'],['../classnc_1_1_nd_array_const_column_iterator.html#ad7a25b0cb28882ed45417dd3ed01e094',1,'nc::NdArrayConstColumnIterator::operator!=()'],['../classnc_1_1coordinates_1_1_dec.html#a60c04d5b65d89ed8204a51247b31c733',1,'nc::coordinates::Dec::operator!=()'],['../classnc_1_1coordinates_1_1_r_a.html#ab9354c5b4942674a815b2315e8b92978',1,'nc::coordinates::RA::operator!=()'],['../classnc_1_1_shape.html#a56c44db7af73bc585c83e094da8996b5',1,'nc::Shape::operator!=()'],['../classnc_1_1_slice.html#afd66bc2d5f975f986e62230b124ae607',1,'nc::Slice::operator!=()'],['../classnc_1_1image_processing_1_1_centroid.html#a89eb742174a9dd27b730ce4502e119cd',1,'nc::imageProcessing::Centroid::operator!=()'],['../classnc_1_1image_processing_1_1_cluster.html#aa023fb6ea06515f18cd629b155f96a2c',1,'nc::imageProcessing::Cluster::operator!=()'],['../classnc_1_1image_processing_1_1_pixel.html#a4b80694a366506909633ff28c74b4042',1,'nc::imageProcessing::Pixel::operator!=()'],['../classnc_1_1_nd_array_const_iterator.html#a96a196ff02ef70fe942c36afcb402f67',1,'nc::NdArrayConstIterator::operator!=()'],['../classnc_1_1rotations_1_1_quaternion.html#adcf57fd29d62e19f5c764750262ff7c3',1,'nc::rotations::Quaternion::operator!=()']]], - ['operator_25_2019',['operator%',['../namespacenc.html#a54ce1f6f396a09dddabae0f02d9aeeeb',1,'nc::operator%(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a4c7d623473bf78038f36fe75395e685b',1,'nc::operator%(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a6c703ec4985bf1bc6ea5c4a32fd72fcf',1,'nc::operator%(const NdArray< dtype > &lhs, dtype rhs)']]], - ['operator_25_3d_2020',['operator%=',['../namespacenc.html#a02273630b6ed39b81c3341674a2ce527',1,'nc::operator%=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a112144152ae720509653d881e3a9d4f4',1,'nc::operator%=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], - ['operator_26_2021',['operator&',['../namespacenc.html#aaa9c45bb88e88461db334c8b933217e3',1,'nc::operator&(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a12d6f6d2a62496d8fe53f8b2daf0b6a8',1,'nc::operator&(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a0c80b9ed3ff24fb25fb794e22a3467e6',1,'nc::operator&(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], - ['operator_26_26_2022',['operator&&',['../namespacenc.html#aa73c70b154a9045312635eb5a9252875',1,'nc::operator&&(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a7f508d7557317498384741bd76fe39d5',1,'nc::operator&&(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#aa9c15b56f7dc1eb4ce63b15285c7f8b1',1,'nc::operator&&(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], - ['operator_26_3d_2023',['operator&=',['../namespacenc.html#ae104d25f74df02965d9ef6e4a9848659',1,'nc::operator&=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#aedc89e1be7f41979fc870006016b6b46',1,'nc::operator&=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], - ['operator_28_29_2024',['operator()',['../classnc_1_1_nd_array.html#adfc2050efba624e48733775ae48da8ff',1,'nc::NdArray::operator()(Slice rowSlice, const Indices &colIndices) const'],['../classnc_1_1_nd_array.html#abf2c4d2e67b692c67e5aed62cd981800',1,'nc::NdArray::operator()(int32 inRowIndex, int32 inColIndex) noexcept'],['../classnc_1_1_nd_array.html#aac0b806c621ce85a61f1370cc618fcc8',1,'nc::NdArray::operator()(int32 inRowIndex, int32 inColIndex) const noexcept'],['../classnc_1_1_nd_array.html#a694ed71b52be045362ed9c9ed9d0d5a0',1,'nc::NdArray::operator()(Slice inRowSlice, Slice inColSlice) const'],['../classnc_1_1_nd_array.html#a1583ae58b94d68e101079c4578fe1716',1,'nc::NdArray::operator()(Slice inRowSlice, int32 inColIndex) const'],['../classnc_1_1_nd_array.html#a6ca54f3e1aca253d55dab87e38d21df1',1,'nc::NdArray::operator()(int32 inRowIndex, Slice inColSlice) const'],['../classnc_1_1_nd_array.html#ab2b2913858d7d8427ef5c58ce2caee01',1,'nc::NdArray::operator()(const Indices &rowIndices, int32 colIndex) const'],['../classnc_1_1_nd_array.html#a9c33b3d44d196376aa9511f86c9c860c',1,'nc::NdArray::operator()(const Indices &rowIndices, Slice colSlice) const'],['../classnc_1_1_nd_array.html#ac97b34c8348f6a510820bc3887a088d1',1,'nc::NdArray::operator()(RowIndices rowIndices, ColIndices colIndices) const'],['../classnc_1_1_nd_array.html#a921862c636c42a394cb25d95b2c6e326',1,'nc::NdArray::operator()(int32 rowIndex, const Indices &colIndices) const'],['../classnc_1_1polynomial_1_1_poly1d.html#ac82910d648a2a3cfd2301e12907414dd',1,'nc::polynomial::Poly1d::operator()()']]], - ['operator_2a_2025',['operator*',['../namespacenc.html#ace6d6bf5d703e886d8f137cf73be5021',1,'nc::operator*(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#af51c9efd8dbadbdc664972bd96583a72',1,'nc::operator*(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#af4ecba4e059c6dcf672644a3c1bff75d',1,'nc::operator*(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a39b128708b2225a00de527c8ec83d72a',1,'nc::operator*(const Vec3 &lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a1769d68f44f9c98d94dd412bc32a9bb5',1,'nc::operator*(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a8248dae03ae96d459320f42d60fdf424',1,'nc::operator*(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a199168f4bff489c9ad1d0755e573c6aa',1,'nc::operator*(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a9a0ff185c891d6c5af3d7150bc645dc8',1,'nc::operator*(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../classnc_1_1_nd_array_const_iterator.html#ad4ce15f95730d8c089db4f2a26b91090',1,'nc::NdArrayConstIterator::operator*()'],['../classnc_1_1_nd_array_iterator.html#ae1e918bc6718fe1ffa58f7c6a82fbe30',1,'nc::NdArrayIterator::operator*()'],['../classnc_1_1_nd_array_const_column_iterator.html#ac096213e50279dc023bbf6270c31969a',1,'nc::NdArrayConstColumnIterator::operator*()'],['../classnc_1_1_nd_array_column_iterator.html#af387e330729ecde7c09d388915ae346a',1,'nc::NdArrayColumnIterator::operator*()'],['../classnc_1_1polynomial_1_1_poly1d.html#aab8cce6bf7a9400862d98684de8ef355',1,'nc::polynomial::Poly1d::operator*()'],['../classnc_1_1rotations_1_1_quaternion.html#adad6ca92266f6090930addc585900805',1,'nc::rotations::Quaternion::operator*(const Quaternion &inRhs) const noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#ad63920fa01f5bd4949c0fbb3ff7c7137',1,'nc::rotations::Quaternion::operator*(double inScalar) const noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a10fd2d44927d59f19e37c45586072d14',1,'nc::rotations::Quaternion::operator*(const NdArray< double > &inVec) const'],['../classnc_1_1rotations_1_1_quaternion.html#a97a81255a6bb91049b1ad7e7b83e2f7f',1,'nc::rotations::Quaternion::operator*(const Vec3 &inVec3) const'],['../namespacenc.html#a7865c90c232341c387b0105ac4fdbfd9',1,'nc::operator*(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#af4f34a2e6e8b9011cb2d2fc5c564e10a',1,'nc::operator*(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#af09d0c6363ef9dc8e661e9254bcf109f',1,'nc::operator*(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#abf6f57d9d17019d8756b86bfa1019bc1',1,'nc::operator*(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a34212756103e0c821034e5469f0f0ed7',1,'nc::operator*(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a72a4a5ad03afcaf6e9f9b7ee6e145a80',1,'nc::operator*(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a9188c8ea881ad55ea9dc85ae154cbc22',1,'nc::operator*(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], - ['operator_2a_3d_2026',['operator*=',['../namespacenc.html#a25ad051c1d98b01675e9c1a52eb8f8c8',1,'nc::operator*=(NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#af0a3674baebda83b99ba3b18ca4a59d3',1,'nc::operator*=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9211f93baeed5af8e00cfd30628d65f6',1,'nc::operator*=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a36c7c3a0be4e8652e52e1710f2808ddd',1,'nc::operator*=(NdArray< dtype > &lhs, dtype rhs)'],['../classnc_1_1polynomial_1_1_poly1d.html#a06293521430112062f975b4854090d24',1,'nc::polynomial::Poly1d::operator*=()'],['../classnc_1_1rotations_1_1_quaternion.html#aaaa8a1bd7130e7ce6a819284584a84c5',1,'nc::rotations::Quaternion::operator*=(const Quaternion &inRhs) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a17636913a3a1e810a81a558dc986fd54',1,'nc::rotations::Quaternion::operator*=(double inScalar) noexcept'],['../classnc_1_1_vec2.html#a72ac39ba88f909cb5552f6b379509f81',1,'nc::Vec2::operator*=()'],['../classnc_1_1_vec3.html#a02ec360e4ebb7b4a6b629eedf8d24a2f',1,'nc::Vec3::operator*=()']]], - ['operator_2b_2027',['operator+',['../classnc_1_1_nd_array_column_iterator.html#a6e4c3af43aa00d49305bcd50eaa477e1',1,'nc::NdArrayColumnIterator::operator+()'],['../classnc_1_1_nd_array_const_iterator.html#a55064001ba08765b1e97962ca82a91cd',1,'nc::NdArrayConstIterator::operator+()'],['../classnc_1_1_nd_array_iterator.html#ab26263e7aa624ed5dd5b0140f2adccb7',1,'nc::NdArrayIterator::operator+()'],['../classnc_1_1_nd_array_const_column_iterator.html#a0375a9e5bb7a8e268d80da41186d58a4',1,'nc::NdArrayConstColumnIterator::operator+()'],['../classnc_1_1rotations_1_1_quaternion.html#a53c84fdd06a1f980c7c74a185d568156',1,'nc::rotations::Quaternion::operator+()'],['../namespacenc.html#acf7b3bfdc67df0619847cd06cb2f0519',1,'nc::operator+(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#ac6f8a785c25c21f9b4b8328dfd7da6c6',1,'nc::operator+(const Vec3 &lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a26bec2e52fdab966f0f3714d1e2ea8bb',1,'nc::operator+(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a5ded64221f16b9a774bc35de58204e28',1,'nc::operator+(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#ab769651a09123be0a13a54a82aaa088a',1,'nc::operator+(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a43fad0472de9a72d2680623200138907',1,'nc::operator+(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a9f50afa50b63aea110be8b9b477d1cb4',1,'nc::operator+(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a9c2f64fa5154e84e1b33b518f75b2ee8',1,'nc::operator+(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a2d00329ee55367cc78bb5ec002d177cf',1,'nc::operator+(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#ae7a4dd062b1c5d1f495741e11947f3b5',1,'nc::operator+(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a5a056c387e8726b0612d920bfa55123f',1,'nc::operator+(typename NdArrayConstIterator< dtype, PointerType, DifferenceType >::difference_type offset, NdArrayConstIterator< dtype, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#a2fff3527567d94f0a1a62269549ad20a',1,'nc::operator+(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a050e6920070ccd078fc357b3ef0198e1',1,'nc::operator+(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a44bd86bfac8783b176ecb2242d3ae93f',1,'nc::operator+(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aae286fee26a3f654159dca70928e4060',1,'nc::operator+(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a98293d4bef0cd036ce30829e7965126e',1,'nc::operator+(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a675deb20abd6aec02f63f72e4c4787dd',1,'nc::operator+(typename NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >::difference_type offset, NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#acb8250110150dfe1c585f48f988d703a',1,'nc::operator+(typename NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType >::difference_type offset, NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#a3768e00a52c63b8bbc18d712cb4330c6',1,'nc::operator+(typename NdArrayIterator< dtype, PointerType, DifferenceType >::difference_type offset, NdArrayIterator< dtype, PointerType, DifferenceType > next) noexcept'],['../classnc_1_1polynomial_1_1_poly1d.html#a65afb72ad35683688c7fb71ee77f839e',1,'nc::polynomial::Poly1d::operator+()']]], - ['operator_2b_2b_2028',['operator++',['../classnc_1_1_nd_array_column_iterator.html#a388ac709c8d2b80c0ed5aa7fbb2047a6',1,'nc::NdArrayColumnIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_column_iterator.html#abd93d4f21e45188893fcb1c43f907ff0',1,'nc::NdArrayColumnIterator::operator++() noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a82ded30f6199ce6c9f3630b28e971650',1,'nc::NdArrayConstColumnIterator::operator++()'],['../namespacenc.html#ad1dfa157bab28851bf97d9982df3f2f3',1,'nc::operator++(NdArray< dtype > &lhs, int)'],['../namespacenc.html#ab0ad6a59584ad4f4e277ddedd3c4d476',1,'nc::operator++(NdArray< dtype > &rhs)'],['../classnc_1_1_nd_array_const_iterator.html#ae955fba21b22639a84b9b030283476a6',1,'nc::NdArrayConstIterator::operator++() noexcept'],['../classnc_1_1_nd_array_const_iterator.html#a3d40f842cc5345a8f8051ae6bdebe321',1,'nc::NdArrayConstIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_iterator.html#ab832430f99b5ddfed996584e4c354f4a',1,'nc::NdArrayIterator::operator++() noexcept'],['../classnc_1_1_nd_array_iterator.html#a350b5406b062642ed48d6c3d9d2ce4b9',1,'nc::NdArrayIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#ad69593e9f3cbf04dff6941bd52827208',1,'nc::NdArrayConstColumnIterator::operator++() noexcept']]], - ['operator_2b_3d_2029',['operator+=',['../classnc_1_1_nd_array_const_column_iterator.html#aa6b2701798827af7b54de723628a20d7',1,'nc::NdArrayConstColumnIterator::operator+=()'],['../classnc_1_1_vec3.html#afef859d21f4332089843c5d337c1ce01',1,'nc::Vec3::operator+=()'],['../classnc_1_1_nd_array_column_iterator.html#acc186137be7b139f7fdcf323e716e5a0',1,'nc::NdArrayColumnIterator::operator+=()'],['../classnc_1_1polynomial_1_1_poly1d.html#a44a0331a1cfc760d7b80bfc20b661366',1,'nc::polynomial::Poly1d::operator+=()'],['../classnc_1_1rotations_1_1_quaternion.html#af2b75597d538e55cfdd1215c35c9c6fe',1,'nc::rotations::Quaternion::operator+=()'],['../classnc_1_1_vec2.html#a21b1c9c0aa0b7e8886f1b4a7c255bb9e',1,'nc::Vec2::operator+=()'],['../classnc_1_1_vec3.html#a2b1c4e63a7233fb56e2f037807dffb68',1,'nc::Vec3::operator+=()'],['../classnc_1_1_vec2.html#af441d4bbee40c07f9b86fbd056ff637e',1,'nc::Vec2::operator+=()'],['../classnc_1_1_nd_array_iterator.html#af691ece9b6335b8191eeeb43a6168b00',1,'nc::NdArrayIterator::operator+=()'],['../classnc_1_1_nd_array_const_iterator.html#aedc3bbd86f2b1b678abb27109dd50ff6',1,'nc::NdArrayConstIterator::operator+=()'],['../namespacenc.html#a4f44f946519987633cf47549e5764298',1,'nc::operator+=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aad9f67cc0911a32f877365833eec3f95',1,'nc::operator+=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ae11d9ca1ca975cd511b91ddb512dd097',1,'nc::operator+=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a7d26cc24b2a68f3ee89c701453e6c9a8',1,'nc::operator+=(NdArray< std::complex< dtype >> &lhs, dtype rhs)']]], - ['operator_2d_2030',['operator-',['../classnc_1_1_nd_array_const_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a',1,'nc::NdArrayConstColumnIterator::operator-()'],['../classnc_1_1_nd_array_const_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e',1,'nc::NdArrayConstIterator::operator-()'],['../classnc_1_1_nd_array_iterator.html#a8bb1505ab1105805bd3ced24b69d17eb',1,'nc::NdArrayIterator::operator-()'],['../namespacenc.html#a88d16d314b7e1427529122d2434223e0',1,'nc::operator-()'],['../classnc_1_1_nd_array_const_iterator.html#a4eaa70b83644e14dbfeccbc227408b63',1,'nc::NdArrayConstIterator::operator-()'],['../namespacenc.html#aea4fe5d4daa75249a7b7765a219cbdb9',1,'nc::operator-(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#aae5b14c2febca550101675a55ee5e436',1,'nc::operator-(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1_nd_array_const_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70',1,'nc::NdArrayConstColumnIterator::operator-()'],['../classnc_1_1_nd_array_column_iterator.html#a6dda98c1eba18dff31c9a66f528cd72b',1,'nc::NdArrayColumnIterator::operator-()'],['../classnc_1_1polynomial_1_1_poly1d.html#ade7b4f432e1056bc66d88a131a2cbf41',1,'nc::polynomial::Poly1d::operator-()'],['../classnc_1_1rotations_1_1_quaternion.html#ad6eb2370d77e01a944c4b32a48966e76',1,'nc::rotations::Quaternion::operator-(const Quaternion &inRhs) const noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a43fe6603ffbaaadf9348910e17e99519',1,'nc::rotations::Quaternion::operator-() const noexcept'],['../classnc_1_1_nd_array_iterator.html#a4eaa70b83644e14dbfeccbc227408b63',1,'nc::NdArrayIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e',1,'nc::NdArrayIterator::operator-(const self_type &rhs) const noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a',1,'nc::NdArrayColumnIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70',1,'nc::NdArrayColumnIterator::operator-(const self_type &rhs) const noexcept'],['../namespacenc.html#a419f15a00c80bffbe8446892e2015eae',1,'nc::operator-(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a7c61e5d343e6439c26abb36db5a0b948',1,'nc::operator-(const Vec3 &lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#af87da9c66c9e535066221e4f85f3ed90',1,'nc::operator-(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a6935362e6d04b73f04c0e8191ae3098d',1,'nc::operator-(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#a7227073082d530baaf7ebb96ee06995b',1,'nc::operator-(const Vec3 &vec) noexcept'],['../namespacenc.html#a7cf1dfd7144b41f4d748af9fb8aa5ffb',1,'nc::operator-(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#ad279cbad60173006f6883e0d18b0147e',1,'nc::operator-(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#af29a28cada8fd30111a2c6d41a110ff8',1,'nc::operator-(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a31b3ca85817b7242152028c4fd3f32c3',1,'nc::operator-(const NdArray< dtype > &inArray)'],['../namespacenc.html#a5e63a7dbcbc5bf2e9e5ad41c0169df34',1,'nc::operator-(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a9d459ed977535f74996fe4820343138d',1,'nc::operator-(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a305a3e10402251fc06871a84f8941298',1,'nc::operator-(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a1c852c2418c1b5eac6da53972f82233e',1,'nc::operator-(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#a9b0eb6f1f7c4c55004478a3eb99c5367',1,'nc::operator-(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a7c52ae6f5c5daf9d27c292e0451cccc3',1,'nc::operator-(const Vec2 &vec) noexcept']]], - ['operator_2d_2d_2031',['operator--',['../classnc_1_1_nd_array_iterator.html#a3bcc95583b7a85e5d253b6c830d33ec4',1,'nc::NdArrayIterator::operator--() noexcept'],['../classnc_1_1_nd_array_iterator.html#adcd3b9918db13467bcd234e6f3eec61f',1,'nc::NdArrayIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a9813a585d99eb656cbe7e1e12476d30b',1,'nc::NdArrayConstColumnIterator::operator--() noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a5fea275f4afdd1fca5b59830ce182bff',1,'nc::NdArrayConstColumnIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a145c2fa5cbd327fbba7dd4701ef27baf',1,'nc::NdArrayColumnIterator::operator--() noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a8ee7c1ecf2dc107159aec64377f5d6bd',1,'nc::NdArrayColumnIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_const_iterator.html#a526a13c16c0ef08b005f67184f80087a',1,'nc::NdArrayConstIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_const_iterator.html#a6061cf25f89e41d3a77d0f4fb0ccc7e2',1,'nc::NdArrayConstIterator::operator--() noexcept'],['../namespacenc.html#ab1ac162f983d66eec0f6189325bd1720',1,'nc::operator--(NdArray< dtype > &lhs, int)'],['../namespacenc.html#aa7ea8977a2740af99f4c08c88d7a79e8',1,'nc::operator--(NdArray< dtype > &rhs)']]], - ['operator_2d_3d_2032',['operator-=',['../classnc_1_1_vec2.html#abfb0b00888fa37d52a895d06f2b39133',1,'nc::Vec2::operator-=()'],['../classnc_1_1_nd_array_iterator.html#a3ae9bd787a73639f2d0334d87f1fb720',1,'nc::NdArrayIterator::operator-=()'],['../namespacenc.html#aae2f4895eb95921ca77529137e603cd0',1,'nc::operator-=(NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#ac870e3973346560eba3380c11f216540',1,'nc::operator-=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a9093ebf2aaa2dbc811ae45e77ba52960',1,'nc::operator-=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a8ba0ad93a3ec2ca409cdb14785e1f679',1,'nc::operator-=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1_vec3.html#a208820649ed763a5dcc9405c4aa481f2',1,'nc::Vec3::operator-=(const Vec3 &rhs) noexcept'],['../classnc_1_1_vec3.html#a70251860269c7cb5becbe988a0b2c48e',1,'nc::Vec3::operator-=(double scaler) noexcept'],['../classnc_1_1_vec2.html#a13a2bbc2595248211e0bc97de51e13b5',1,'nc::Vec2::operator-=()'],['../classnc_1_1rotations_1_1_quaternion.html#a60f1f33144c887cde1338fd80183638f',1,'nc::rotations::Quaternion::operator-=()'],['../classnc_1_1_nd_array_const_iterator.html#a9ae2efc38005276adaa744e6bec116c3',1,'nc::NdArrayConstIterator::operator-=()'],['../classnc_1_1polynomial_1_1_poly1d.html#a732cca31f4b6180d0ad035a6daeb160a',1,'nc::polynomial::Poly1d::operator-=()'],['../classnc_1_1_nd_array_column_iterator.html#a80924e15c192ee04843add79ad2efece',1,'nc::NdArrayColumnIterator::operator-=()'],['../classnc_1_1_nd_array_const_column_iterator.html#af68690450642df08758a9e067edeee47',1,'nc::NdArrayConstColumnIterator::operator-=()']]], - ['operator_2d_3e_2033',['operator->',['../classnc_1_1_nd_array_const_iterator.html#a36aee44e67ed7bdc2fd3ca660e1748fa',1,'nc::NdArrayConstIterator::operator->()'],['../classnc_1_1_nd_array_iterator.html#aa1627ff7d2b0089222794bfebaa29a32',1,'nc::NdArrayIterator::operator->()'],['../classnc_1_1_nd_array_const_column_iterator.html#a33d2e58d269f938c742ac25f46edf008',1,'nc::NdArrayConstColumnIterator::operator->()'],['../classnc_1_1_nd_array_column_iterator.html#ae66efdfa1252f405042276e3e9a25364',1,'nc::NdArrayColumnIterator::operator->()']]], - ['operator_2f_2034',['operator/',['../namespacenc.html#a04bf5ca073685e762d84932ae14b8caa',1,'nc::operator/(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ac8cd599e4b67e78c173894bc3d2bd7f2',1,'nc::operator/(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a1eee81e10b382e6b0474508725831a4f',1,'nc::operator/(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#a8d2ca407e7579acac2ca6496c4196d15',1,'nc::operator/(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a58862db40468f4be62b860990cf05336',1,'nc::operator/(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a06365d71ef5c147fee8e571b9fef7313',1,'nc::operator/(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#abe2fc114afe7f62aacf55a9288f45c4a',1,'nc::operator/(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a0a070b4ec8a29ee1a357c53857d4778a',1,'nc::operator/(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#a4dda3a7297e38679bf172d870090da1d',1,'nc::operator/(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a4bec4dbe25db0a2ec84e5999458a2c02',1,'nc::operator/(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a69481119ed4cf9e7fe41b0c9228693e3',1,'nc::operator/(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../classnc_1_1rotations_1_1_quaternion.html#ab054e067fc333a48582e291f95120866',1,'nc::rotations::Quaternion::operator/()']]], - ['operator_2f_3d_2035',['operator/=',['../classnc_1_1_vec3.html#a431b2ac6af51bf59d804adbe5c8a7700',1,'nc::Vec3::operator/=()'],['../classnc_1_1_vec2.html#a1a1c875b11ea5571cb2b71778a692472',1,'nc::Vec2::operator/=()'],['../classnc_1_1rotations_1_1_quaternion.html#a859df40774ccff755560604b930c934d',1,'nc::rotations::Quaternion::operator/=()'],['../namespacenc.html#ad554e38d21aec306a8e3e4cd4ca990a2',1,'nc::operator/=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a26c691c1a8a6ddea49796591063e7630',1,'nc::operator/=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a05414ec63ae42b4a3e9e81ceef072094',1,'nc::operator/=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a7bbd0ddf9efe256d0c010e2c481da2d5',1,'nc::operator/=(NdArray< std::complex< dtype >> &lhs, dtype rhs)']]], - ['operator_3c_2036',['operator<',['../namespacenc.html#a6500fd0898086f300bb7909249b3e50f',1,'nc::operator<(dtype inValue, const NdArray< dtype > &inArray)'],['../namespacenc.html#a8b68828e75eb8bd91ccdc63e6c39511f',1,'nc::operator<(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#ac1e7489f428b83ed55b5d44963b4eab6',1,'nc::operator<(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a724cd71c78633aa5a757aa76b514f46a',1,'nc::operator<(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../classnc_1_1_nd_array_const_iterator.html#a6ae3aca3c7cb79a9fd985c1820b74c39',1,'nc::NdArrayConstIterator::operator<()'],['../classnc_1_1image_processing_1_1_centroid.html#a093719e81ed5bd5af0cb80dcfd03289f',1,'nc::imageProcessing::Centroid::operator<()'],['../classnc_1_1image_processing_1_1_pixel.html#a592926833195d4f2587efef12e4b1148',1,'nc::imageProcessing::Pixel::operator<()'],['../classnc_1_1_nd_array_const_column_iterator.html#ab0928638c653f5ed37088a3e5098064b',1,'nc::NdArrayConstColumnIterator::operator<()']]], - ['operator_3c_3c_2037',['operator<<',['../namespacenc.html#a0cf6f27f323d5bc34b6c56316c480865',1,'nc::operator<<(std::ostream &stream, const Vec3 &vec)'],['../namespacenc.html#aecdda46f9eca3e1f802bb5451ca952cb',1,'nc::operator<<(std::ostream &stream, const Vec2 &vec)'],['../namespacenc.html#a5df285ae528f83294768588fa622d41f',1,'nc::operator<<(std::ostream &inOStream, const NdArray< dtype > &inArray)'],['../namespacenc.html#a39964568372712a2a5427c44e59ffbe2',1,'nc::operator<<(const NdArray< dtype > &lhs, uint8 inNumBits)']]], - ['operator_3c_3c_3d_2038',['operator<<=',['../namespacenc.html#a9d82fca424a68c0042594e483b51ced2',1,'nc']]], - ['operator_3c_3d_2039',['operator<=',['../classnc_1_1_nd_array_const_iterator.html#a171276f9e90a1336d156c61c2b61bd23',1,'nc::NdArrayConstIterator::operator<=()'],['../namespacenc.html#accb22a9c6f4dc0452020b0a86ef8fdf9',1,'nc::operator<=(dtype inValue, const NdArray< dtype > &inArray)'],['../namespacenc.html#a4ceffb2e21de23701d431abde8e78592',1,'nc::operator<=(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#a496de942a0d74925ed64972dcb2cffe8',1,'nc::operator<=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9f9bb9e7b4ecf581498351e14f074145',1,'nc::operator<=(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a8468d6928d88c7f34d1456261331f238',1,'nc::NdArrayConstColumnIterator::operator<=()']]], - ['operator_3d_2040',['operator=',['../classnc_1_1_nd_array.html#abe4cda5855bc5d6aee488293000d1acb',1,'nc::NdArray::operator=(const NdArray< dtype > &rhs)'],['../classnc_1_1_nd_array.html#ae5150db09cf7f76269b3254ceb0c43a8',1,'nc::NdArray::operator=(value_type inValue) noexcept'],['../classnc_1_1_nd_array.html#a5ff24670b2173fccf1c9a35b688f2683',1,'nc::NdArray::operator=(NdArray< dtype > &&rhs) noexcept']]], - ['operator_3d_3d_2041',['operator==',['../classnc_1_1_shape.html#a0267d8b7eb226fdc442be5c914f9c870',1,'nc::Shape::operator==()'],['../namespacenc.html#a283fba259d2cd892a8cbb2782490b92a',1,'nc::operator==(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aa956dff0507eddc1c1d80e423f126383',1,'nc::operator==(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#afdcaaff39ed10311d74302a6e9be2fd4',1,'nc::operator==(dtype inValue, const NdArray< dtype > &inArray)'],['../classnc_1_1coordinates_1_1_coordinate.html#a96255907cf1af2c416c7dbe34e96b0d5',1,'nc::coordinates::Coordinate::operator==()'],['../classnc_1_1coordinates_1_1_dec.html#a5b264a9d7bb9b2c1b537b03a5eac7265',1,'nc::coordinates::Dec::operator==()'],['../classnc_1_1coordinates_1_1_r_a.html#ab9e22496d5fdc265ee5a5d77ec97c184',1,'nc::coordinates::RA::operator==()'],['../classnc_1_1_slice.html#a769815d8fbb98ba34101c18a21efbbf5',1,'nc::Slice::operator==()'],['../classnc_1_1image_processing_1_1_centroid.html#a503a2542b388f65fb80710dd33610abc',1,'nc::imageProcessing::Centroid::operator==()'],['../classnc_1_1image_processing_1_1_cluster.html#a8308c5f0313872c9499de36d69d0ff19',1,'nc::imageProcessing::Cluster::operator==()'],['../classnc_1_1_nd_array_const_iterator.html#ac055ccace7f791cfb94d7df8e7100dc2',1,'nc::NdArrayConstIterator::operator==()'],['../classnc_1_1_nd_array_const_column_iterator.html#aec9953c2361595fc656a1a5d306e36c0',1,'nc::NdArrayConstColumnIterator::operator==()'],['../classnc_1_1rotations_1_1_quaternion.html#a82f40acb2292256faffab2b88aa38208',1,'nc::rotations::Quaternion::operator==()'],['../classnc_1_1_vec2.html#af04a7f20ae8ac7a59ae44f7819668fa0',1,'nc::Vec2::operator==()'],['../classnc_1_1_vec3.html#a2cc63855706091881f765b63dcf52c44',1,'nc::Vec3::operator==()'],['../classnc_1_1image_processing_1_1_pixel.html#a008757a06c498b1a31e26d53a54e51dc',1,'nc::imageProcessing::Pixel::operator==()']]], - ['operator_3e_2042',['operator>',['../classnc_1_1_nd_array_const_iterator.html#a8a312e1809eae90df625971d6b4ab62e',1,'nc::NdArrayConstIterator::operator>()'],['../classnc_1_1_nd_array_const_column_iterator.html#a827d0a8431ec616ef0161144b3d24af6',1,'nc::NdArrayConstColumnIterator::operator>()'],['../namespacenc.html#a20910640e1c1dd8bc9298561fedc84a4',1,'nc::operator>(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#a5755bb93bff9c0cbd38dbf1296902374',1,'nc::operator>(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a7433343db2634ef8f75e290370cfe21e',1,'nc::operator>(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#a113de1155a4e2a71dcdad1709c58afe8',1,'nc::operator>(dtype inValue, const NdArray< dtype > &inArray)']]], - ['operator_3e_3d_2043',['operator>=',['../classnc_1_1_nd_array_const_column_iterator.html#a9935c5d4b3deff76207ccde7cfccbf62',1,'nc::NdArrayConstColumnIterator::operator>=()'],['../namespacenc.html#ac453f615df2e03778835908a70907145',1,'nc::operator>=(dtype inValue, const NdArray< dtype > &inArray)'],['../namespacenc.html#a0dfd9f5c1ec0c3d61959c4c54e6dc23a',1,'nc::operator>=(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#a48199b1c11d42106cd09ae57215520fe',1,'nc::operator>=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a4a32b6c123eaa3f46c14159b243522de',1,'nc::operator>=(const NdArray< dtype > &lhs, dtype inValue)'],['../classnc_1_1_nd_array_const_iterator.html#a06871d8ba079130e84a892995c07a49a',1,'nc::NdArrayConstIterator::operator>=()']]], - ['operator_3e_3e_2044',['operator>>',['../namespacenc.html#a7e6fe3981b55cd4f381339b616a55ec8',1,'nc']]], - ['operator_3e_3e_3d_2045',['operator>>=',['../namespacenc.html#a7626eefaf34c6ac138da762c6ae930e7',1,'nc']]], - ['operator_5b_5d_2046',['operator[]',['../classnc_1_1image_processing_1_1_cluster.html#a386b222d5747fc2b77448ea5a56d24e4',1,'nc::imageProcessing::Cluster::operator[]()'],['../classnc_1_1_nd_array_column_iterator.html#a5dc1514332728850b8fbeaa7d1f8bda0',1,'nc::NdArrayColumnIterator::operator[]()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3a37dd5a1496ecf2249950325b0a388c',1,'nc::NdArrayConstColumnIterator::operator[]()'],['../classnc_1_1_nd_array_iterator.html#a40c132f8a7c1dd9fde17bcd3ddc2a18f',1,'nc::NdArrayIterator::operator[]()'],['../classnc_1_1_nd_array_const_iterator.html#a83ee672f75e74c4421a25a7816be12c6',1,'nc::NdArrayConstIterator::operator[]()'],['../classnc_1_1_nd_array.html#a0f53f1d4f5b259021cf61026f65759e0',1,'nc::NdArray::operator[](const Indices &inIndices) const'],['../classnc_1_1_nd_array.html#ab04b63c2794747b88b0e640f737c6b2c',1,'nc::NdArray::operator[](const NdArray< bool > &inMask) const'],['../classnc_1_1_nd_array.html#a4744ab68830cc2cc16d8804295662b6a',1,'nc::NdArray::operator[](const Slice &inSlice) const'],['../classnc_1_1_nd_array.html#aeabee2aba11a885f3bd874b7a06d62ea',1,'nc::NdArray::operator[](int32 inIndex) const noexcept'],['../classnc_1_1image_processing_1_1_cluster_maker.html#ae92d75ae626bb18324b0dfe69ee44f25',1,'nc::imageProcessing::ClusterMaker::operator[]()'],['../classnc_1_1_nd_array.html#aa58a51df41648b4d39f2f972c60e09ae',1,'nc::NdArray::operator[]()'],['../classnc_1_1_data_cube.html#a1a16b98e982d79cc6a172b8e2bfad856',1,'nc::DataCube::operator[](uint32 inIndex) noexcept'],['../classnc_1_1_data_cube.html#a403c0b0df22fc5fa0858109fa7a65f87',1,'nc::DataCube::operator[](uint32 inIndex) const noexcept']]], - ['operator_5e_2047',['operator^',['../namespacenc.html#af4f0fce9397ab714d3567d454f143835',1,'nc::operator^(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aa6be940ce9eed012ca0fac881d884411',1,'nc::operator^(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#ae4befd8a03420464348fdfcc71b106bb',1,'nc::operator^(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1polynomial_1_1_poly1d.html#a548c945121cb39859f649cf39a6d0830',1,'nc::polynomial::Poly1d::operator^()']]], - ['operator_5e_3d_2048',['operator^=',['../namespacenc.html#a8d3d77fe59d533d1301aea0112e38fa8',1,'nc::operator^=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ad4f2748ac9b7ebe59f1592e118169ea7',1,'nc::operator^=(NdArray< dtype > &lhs, dtype rhs)'],['../classnc_1_1polynomial_1_1_poly1d.html#a930f53185992537e3eb5844ebb70bf38',1,'nc::polynomial::Poly1d::operator^=()']]], - ['operator_7c_2049',['operator|',['../namespacenc.html#a2dd868d584e1d65748cf04957eb97d99',1,'nc::operator|(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a129a0c61ca191919674576a76ee7fd93',1,'nc::operator|(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a50e6d418c92ccd6d7a2cf42a899a2203',1,'nc::operator|(dtype lhs, const NdArray< dtype > &rhs)']]], - ['operator_7c_3d_2050',['operator|=',['../namespacenc.html#a958f4fd964269c7affaaff0e30b4dc01',1,'nc::operator|=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#afbb3e9d2eb28cad36a9de996263067d9',1,'nc::operator|=(NdArray< dtype > &lhs, dtype rhs)']]], - ['operator_7c_7c_2051',['operator||',['../namespacenc.html#a25c9ac2d82de1fd3c81890ad38ebfb25',1,'nc::operator||(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#affe1935670d985dfe387f429d68874e2',1,'nc::operator||(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a37ef6f1c023837fbe628c3838b14d940',1,'nc::operator||(dtype lhs, const NdArray< dtype > &rhs)']]], - ['operator_7e_2052',['operator~',['../namespacenc.html#ae9d44b86bb2c2968d5c67f11ca789d3e',1,'nc']]], - ['order_2053',['order',['../classnc_1_1polynomial_1_1_poly1d.html#ab978ca2f65c7cd640309c1be86aa9141',1,'nc::polynomial::Poly1d']]], - ['outer_2054',['outer',['../namespacenc.html#a395197f9b1d3f53a5fdcd234fa6e6baf',1,'nc']]], - ['ownsinternaldata_2055',['ownsInternalData',['../classnc_1_1_nd_array.html#a63a1c0f9fdef078770e4f8cbe2c249ec',1,'nc::NdArray']]] + ['ones_2115',['ones',['../classnc_1_1_nd_array.html#ac6e5a0c875c593a6bc1970745af3684b',1,'nc::NdArray::ones()'],['../namespacenc.html#a5a935c0d187c7a0cab3d7ada27ffafc5',1,'nc::ones(const Shape &inShape)'],['../namespacenc.html#ac9ffd1a2fa29857f39a38a9dab1079a2',1,'nc::ones(uint32 inSquareSize)'],['../namespacenc.html#a0f6db9a6dcb85c14639b515f53d6b893',1,'nc::ones(uint32 inNumRows, uint32 inNumCols)']]], + ['ones_5flike_2116',['ones_like',['../namespacenc.html#a90cb0bbdc492b0b10e635a79aa943e51',1,'nc']]], + ['operator_21_2117',['operator!',['../namespacenc.html#a5afb0ad958d78f15eb6617618aec0640',1,'nc']]], + ['operator_21_3d_2118',['operator!=',['../classnc_1_1coordinates_1_1_coordinate.html#a8d139bb6b4d2d315d32d6fa818dab93d',1,'nc::coordinates::Coordinate::operator!=()'],['../classnc_1_1coordinates_1_1_dec.html#a60c04d5b65d89ed8204a51247b31c733',1,'nc::coordinates::Dec::operator!=()'],['../classnc_1_1coordinates_1_1_r_a.html#ab9354c5b4942674a815b2315e8b92978',1,'nc::coordinates::RA::operator!=()'],['../classnc_1_1_shape.html#a56c44db7af73bc585c83e094da8996b5',1,'nc::Shape::operator!=()'],['../classnc_1_1_slice.html#afd66bc2d5f975f986e62230b124ae607',1,'nc::Slice::operator!=()'],['../classnc_1_1image_processing_1_1_centroid.html#a89eb742174a9dd27b730ce4502e119cd',1,'nc::imageProcessing::Centroid::operator!=()'],['../classnc_1_1image_processing_1_1_cluster.html#aa023fb6ea06515f18cd629b155f96a2c',1,'nc::imageProcessing::Cluster::operator!=()'],['../classnc_1_1image_processing_1_1_pixel.html#a4b80694a366506909633ff28c74b4042',1,'nc::imageProcessing::Pixel::operator!=()'],['../classnc_1_1_nd_array_const_iterator.html#a96a196ff02ef70fe942c36afcb402f67',1,'nc::NdArrayConstIterator::operator!=()'],['../classnc_1_1_nd_array_const_column_iterator.html#ad7a25b0cb28882ed45417dd3ed01e094',1,'nc::NdArrayConstColumnIterator::operator!=()'],['../classnc_1_1rotations_1_1_quaternion.html#adcf57fd29d62e19f5c764750262ff7c3',1,'nc::rotations::Quaternion::operator!=()'],['../classnc_1_1_vec2.html#ac83768c682c162ec9dffe1bfb9637338',1,'nc::Vec2::operator!=()'],['../classnc_1_1_vec3.html#aad142760da8d2b3493462b4542e42673',1,'nc::Vec3::operator!=()'],['../namespacenc.html#a4cb019941743262a028a62001cda4bd0',1,'nc::operator!=(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#a631e6eb2bf338af6af8487fd2d94b0a8',1,'nc::operator!=(dtype inValue, const NdArray< dtype > &inArray)'],['../namespacenc.html#a33e15d535856758fb49567aa71204426',1,'nc::operator!=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], + ['operator_25_2119',['operator%',['../namespacenc.html#a54ce1f6f396a09dddabae0f02d9aeeeb',1,'nc::operator%(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a6c703ec4985bf1bc6ea5c4a32fd72fcf',1,'nc::operator%(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#af2360d92e17c3bf8956f1ab391f0022a',1,'nc::operator%(dtype lhs, const NdArray< dtype > &rhs)']]], + ['operator_25_3d_2120',['operator%=',['../namespacenc.html#a9b9a9ad49ab9cdaa1b3434038c6c983a',1,'nc::operator%=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a0dfaa5d06ddc26868216477f53b56b46',1,'nc::operator%=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], + ['operator_26_2121',['operator&',['../namespacenc.html#a12d6f6d2a62496d8fe53f8b2daf0b6a8',1,'nc::operator&(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#aaa9c45bb88e88461db334c8b933217e3',1,'nc::operator&(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a0c80b9ed3ff24fb25fb794e22a3467e6',1,'nc::operator&(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], + ['operator_26_26_2122',['operator&&',['../namespacenc.html#aa9c15b56f7dc1eb4ce63b15285c7f8b1',1,'nc::operator&&(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a7f508d7557317498384741bd76fe39d5',1,'nc::operator&&(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#aa73c70b154a9045312635eb5a9252875',1,'nc::operator&&(dtype lhs, const NdArray< dtype > &rhs)']]], + ['operator_26_3d_2123',['operator&=',['../namespacenc.html#ae104d25f74df02965d9ef6e4a9848659',1,'nc::operator&=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#aedc89e1be7f41979fc870006016b6b46',1,'nc::operator&=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], + ['operator_28_29_2124',['operator()',['../classnc_1_1_nd_array.html#abf2c4d2e67b692c67e5aed62cd981800',1,'nc::NdArray::operator()(int32 inRowIndex, int32 inColIndex) noexcept'],['../classnc_1_1_nd_array.html#aac0b806c621ce85a61f1370cc618fcc8',1,'nc::NdArray::operator()(int32 inRowIndex, int32 inColIndex) const noexcept'],['../classnc_1_1_nd_array.html#a694ed71b52be045362ed9c9ed9d0d5a0',1,'nc::NdArray::operator()(Slice inRowSlice, Slice inColSlice) const'],['../classnc_1_1_nd_array.html#a1583ae58b94d68e101079c4578fe1716',1,'nc::NdArray::operator()(Slice inRowSlice, int32 inColIndex) const'],['../classnc_1_1_nd_array.html#a6ca54f3e1aca253d55dab87e38d21df1',1,'nc::NdArray::operator()(int32 inRowIndex, Slice inColSlice) const'],['../classnc_1_1_nd_array.html#a9c33b3d44d196376aa9511f86c9c860c',1,'nc::NdArray::operator()(const Indices &rowIndices, Slice colSlice) const'],['../classnc_1_1_nd_array.html#a921862c636c42a394cb25d95b2c6e326',1,'nc::NdArray::operator()(int32 rowIndex, const Indices &colIndices) const'],['../classnc_1_1_nd_array.html#adfc2050efba624e48733775ae48da8ff',1,'nc::NdArray::operator()(Slice rowSlice, const Indices &colIndices) const'],['../classnc_1_1_nd_array.html#ac97b34c8348f6a510820bc3887a088d1',1,'nc::NdArray::operator()(RowIndices rowIndices, ColIndices colIndices) const'],['../classnc_1_1_nd_array.html#ab2b2913858d7d8427ef5c58ce2caee01',1,'nc::NdArray::operator()(const Indices &rowIndices, int32 colIndex) const'],['../classnc_1_1polynomial_1_1_poly1d.html#ac82910d648a2a3cfd2301e12907414dd',1,'nc::polynomial::Poly1d::operator()()']]], + ['operator_2a_2125',['operator*',['../classnc_1_1rotations_1_1_quaternion.html#a10fd2d44927d59f19e37c45586072d14',1,'nc::rotations::Quaternion::operator*()'],['../namespacenc.html#a39b128708b2225a00de527c8ec83d72a',1,'nc::operator*(const Vec3 &lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#af4ecba4e059c6dcf672644a3c1bff75d',1,'nc::operator*(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#af51c9efd8dbadbdc664972bd96583a72',1,'nc::operator*(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#a34212756103e0c821034e5469f0f0ed7',1,'nc::operator*(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a72a4a5ad03afcaf6e9f9b7ee6e145a80',1,'nc::operator*(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a9188c8ea881ad55ea9dc85ae154cbc22',1,'nc::operator*(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../classnc_1_1rotations_1_1_quaternion.html#ad63920fa01f5bd4949c0fbb3ff7c7137',1,'nc::rotations::Quaternion::operator*()'],['../namespacenc.html#af4f34a2e6e8b9011cb2d2fc5c564e10a',1,'nc::operator*(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#a7865c90c232341c387b0105ac4fdbfd9',1,'nc::operator*(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9a0ff185c891d6c5af3d7150bc645dc8',1,'nc::operator*(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a199168f4bff489c9ad1d0755e573c6aa',1,'nc::operator*(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a8248dae03ae96d459320f42d60fdf424',1,'nc::operator*(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a1769d68f44f9c98d94dd412bc32a9bb5',1,'nc::operator*(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#ace6d6bf5d703e886d8f137cf73be5021',1,'nc::operator*(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#ac096213e50279dc023bbf6270c31969a',1,'nc::NdArrayConstColumnIterator::operator*()'],['../classnc_1_1rotations_1_1_quaternion.html#a97a81255a6bb91049b1ad7e7b83e2f7f',1,'nc::rotations::Quaternion::operator*(const Vec3 &inVec3) const'],['../classnc_1_1rotations_1_1_quaternion.html#adad6ca92266f6090930addc585900805',1,'nc::rotations::Quaternion::operator*(const Quaternion &inRhs) const noexcept'],['../namespacenc.html#af09d0c6363ef9dc8e661e9254bcf109f',1,'nc::operator*()'],['../classnc_1_1_nd_array_column_iterator.html#af387e330729ecde7c09d388915ae346a',1,'nc::NdArrayColumnIterator::operator*()'],['../classnc_1_1_nd_array_iterator.html#ae1e918bc6718fe1ffa58f7c6a82fbe30',1,'nc::NdArrayIterator::operator*()'],['../classnc_1_1_nd_array_const_iterator.html#ad4ce15f95730d8c089db4f2a26b91090',1,'nc::NdArrayConstIterator::operator*()'],['../namespacenc.html#abf6f57d9d17019d8756b86bfa1019bc1',1,'nc::operator*()'],['../classnc_1_1polynomial_1_1_poly1d.html#aab8cce6bf7a9400862d98684de8ef355',1,'nc::polynomial::Poly1d::operator*(const Poly1d< dtype > &inOtherPoly) const']]], + ['operator_2a_3d_2126',['operator*=',['../classnc_1_1polynomial_1_1_poly1d.html#a06293521430112062f975b4854090d24',1,'nc::polynomial::Poly1d::operator*=()'],['../classnc_1_1rotations_1_1_quaternion.html#aaaa8a1bd7130e7ce6a819284584a84c5',1,'nc::rotations::Quaternion::operator*=(const Quaternion &inRhs) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a17636913a3a1e810a81a558dc986fd54',1,'nc::rotations::Quaternion::operator*=(double inScalar) noexcept'],['../classnc_1_1_vec2.html#a72ac39ba88f909cb5552f6b379509f81',1,'nc::Vec2::operator*=()'],['../classnc_1_1_vec3.html#a02ec360e4ebb7b4a6b629eedf8d24a2f',1,'nc::Vec3::operator*=()'],['../namespacenc.html#a36c7c3a0be4e8652e52e1710f2808ddd',1,'nc::operator*=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a25ad051c1d98b01675e9c1a52eb8f8c8',1,'nc::operator*=(NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#af0a3674baebda83b99ba3b18ca4a59d3',1,'nc::operator*=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9211f93baeed5af8e00cfd30628d65f6',1,'nc::operator*=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)']]], + ['operator_2b_2127',['operator+',['../classnc_1_1_nd_array_const_iterator.html#a55064001ba08765b1e97962ca82a91cd',1,'nc::NdArrayConstIterator::operator+()'],['../classnc_1_1_nd_array_iterator.html#ab26263e7aa624ed5dd5b0140f2adccb7',1,'nc::NdArrayIterator::operator+()'],['../classnc_1_1_nd_array_const_column_iterator.html#a0375a9e5bb7a8e268d80da41186d58a4',1,'nc::NdArrayConstColumnIterator::operator+()'],['../classnc_1_1_nd_array_column_iterator.html#a6e4c3af43aa00d49305bcd50eaa477e1',1,'nc::NdArrayColumnIterator::operator+()'],['../classnc_1_1polynomial_1_1_poly1d.html#a65afb72ad35683688c7fb71ee77f839e',1,'nc::polynomial::Poly1d::operator+()'],['../classnc_1_1rotations_1_1_quaternion.html#a53c84fdd06a1f980c7c74a185d568156',1,'nc::rotations::Quaternion::operator+()'],['../namespacenc.html#ae7a4dd062b1c5d1f495741e11947f3b5',1,'nc::operator+(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a2d00329ee55367cc78bb5ec002d177cf',1,'nc::operator+(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a9c2f64fa5154e84e1b33b518f75b2ee8',1,'nc::operator+(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a9f50afa50b63aea110be8b9b477d1cb4',1,'nc::operator+(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#ac6f8a785c25c21f9b4b8328dfd7da6c6',1,'nc::operator+(const Vec3 &lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a26bec2e52fdab966f0f3714d1e2ea8bb',1,'nc::operator+(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#a5ded64221f16b9a774bc35de58204e28',1,'nc::operator+(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#ab769651a09123be0a13a54a82aaa088a',1,'nc::operator+(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a3768e00a52c63b8bbc18d712cb4330c6',1,'nc::operator+(typename NdArrayIterator< dtype, PointerType, DifferenceType >::difference_type offset, NdArrayIterator< dtype, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#a43fad0472de9a72d2680623200138907',1,'nc::operator+(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a5a056c387e8726b0612d920bfa55123f',1,'nc::operator+(typename NdArrayConstIterator< dtype, PointerType, DifferenceType >::difference_type offset, NdArrayConstIterator< dtype, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#acb8250110150dfe1c585f48f988d703a',1,'nc::operator+(typename NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType >::difference_type offset, NdArrayConstColumnIterator< dtype, SizeType, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#a675deb20abd6aec02f63f72e4c4787dd',1,'nc::operator+(typename NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType >::difference_type offset, NdArrayColumnIterator< dtype, SizeType, PointerType, DifferenceType > next) noexcept'],['../namespacenc.html#a98293d4bef0cd036ce30829e7965126e',1,'nc::operator+(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aae286fee26a3f654159dca70928e4060',1,'nc::operator+(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a44bd86bfac8783b176ecb2242d3ae93f',1,'nc::operator+(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a050e6920070ccd078fc357b3ef0198e1',1,'nc::operator+(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a2fff3527567d94f0a1a62269549ad20a',1,'nc::operator+(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#acf7b3bfdc67df0619847cd06cb2f0519',1,'nc::operator+(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)']]], + ['operator_2b_2b_2128',['operator++',['../classnc_1_1_nd_array_const_iterator.html#ae955fba21b22639a84b9b030283476a6',1,'nc::NdArrayConstIterator::operator++() noexcept'],['../classnc_1_1_nd_array_const_iterator.html#a3d40f842cc5345a8f8051ae6bdebe321',1,'nc::NdArrayConstIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_iterator.html#ab832430f99b5ddfed996584e4c354f4a',1,'nc::NdArrayIterator::operator++() noexcept'],['../classnc_1_1_nd_array_iterator.html#a350b5406b062642ed48d6c3d9d2ce4b9',1,'nc::NdArrayIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#ad69593e9f3cbf04dff6941bd52827208',1,'nc::NdArrayConstColumnIterator::operator++() noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a82ded30f6199ce6c9f3630b28e971650',1,'nc::NdArrayConstColumnIterator::operator++(int) noexcept'],['../classnc_1_1_nd_array_column_iterator.html#abd93d4f21e45188893fcb1c43f907ff0',1,'nc::NdArrayColumnIterator::operator++() noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a388ac709c8d2b80c0ed5aa7fbb2047a6',1,'nc::NdArrayColumnIterator::operator++(int) noexcept'],['../namespacenc.html#ab0ad6a59584ad4f4e277ddedd3c4d476',1,'nc::operator++(NdArray< dtype > &rhs)'],['../namespacenc.html#ad1dfa157bab28851bf97d9982df3f2f3',1,'nc::operator++(NdArray< dtype > &lhs, int)']]], + ['operator_2b_3d_2129',['operator+=',['../classnc_1_1_nd_array_const_iterator.html#aedc3bbd86f2b1b678abb27109dd50ff6',1,'nc::NdArrayConstIterator::operator+=()'],['../classnc_1_1_nd_array_iterator.html#af691ece9b6335b8191eeeb43a6168b00',1,'nc::NdArrayIterator::operator+=()'],['../classnc_1_1_nd_array_const_column_iterator.html#aa6b2701798827af7b54de723628a20d7',1,'nc::NdArrayConstColumnIterator::operator+=()'],['../classnc_1_1_nd_array_column_iterator.html#acc186137be7b139f7fdcf323e716e5a0',1,'nc::NdArrayColumnIterator::operator+=()'],['../classnc_1_1rotations_1_1_quaternion.html#af2b75597d538e55cfdd1215c35c9c6fe',1,'nc::rotations::Quaternion::operator+=()'],['../classnc_1_1_vec2.html#a21b1c9c0aa0b7e8886f1b4a7c255bb9e',1,'nc::Vec2::operator+=(double scaler) noexcept'],['../classnc_1_1_vec2.html#af441d4bbee40c07f9b86fbd056ff637e',1,'nc::Vec2::operator+=(const Vec2 &rhs) noexcept'],['../classnc_1_1_vec3.html#afef859d21f4332089843c5d337c1ce01',1,'nc::Vec3::operator+=(double scaler) noexcept'],['../classnc_1_1_vec3.html#a2b1c4e63a7233fb56e2f037807dffb68',1,'nc::Vec3::operator+=(const Vec3 &rhs) noexcept'],['../classnc_1_1polynomial_1_1_poly1d.html#a44a0331a1cfc760d7b80bfc20b661366',1,'nc::polynomial::Poly1d::operator+=()'],['../namespacenc.html#a4f44f946519987633cf47549e5764298',1,'nc::operator+=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aad9f67cc0911a32f877365833eec3f95',1,'nc::operator+=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ae11d9ca1ca975cd511b91ddb512dd097',1,'nc::operator+=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a7d26cc24b2a68f3ee89c701453e6c9a8',1,'nc::operator+=(NdArray< std::complex< dtype >> &lhs, dtype rhs)']]], + ['operator_2d_2130',['operator-',['../classnc_1_1_nd_array_const_iterator.html#a4eaa70b83644e14dbfeccbc227408b63',1,'nc::NdArrayConstIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_const_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e',1,'nc::NdArrayConstIterator::operator-(const self_type &rhs) const noexcept'],['../classnc_1_1_nd_array_iterator.html#a8bb1505ab1105805bd3ced24b69d17eb',1,'nc::NdArrayIterator::operator-()'],['../classnc_1_1_nd_array_const_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a',1,'nc::NdArrayConstColumnIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70',1,'nc::NdArrayConstColumnIterator::operator-(const self_type &rhs) const noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a6dda98c1eba18dff31c9a66f528cd72b',1,'nc::NdArrayColumnIterator::operator-()'],['../classnc_1_1polynomial_1_1_poly1d.html#ade7b4f432e1056bc66d88a131a2cbf41',1,'nc::polynomial::Poly1d::operator-()'],['../classnc_1_1rotations_1_1_quaternion.html#ad6eb2370d77e01a944c4b32a48966e76',1,'nc::rotations::Quaternion::operator-(const Quaternion &inRhs) const noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#a43fe6603ffbaaadf9348910e17e99519',1,'nc::rotations::Quaternion::operator-() const noexcept'],['../classnc_1_1_nd_array_iterator.html#a4eaa70b83644e14dbfeccbc227408b63',1,'nc::NdArrayIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_iterator.html#aa39c56b1301477ca5d9fb4b2e2d5e38e',1,'nc::NdArrayIterator::operator-(const self_type &rhs) const noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a6918b5de4f8eef3081abe3ce5ddefa7a',1,'nc::NdArrayColumnIterator::operator-(const difference_type offset) const noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a60c7f27f5b0574716750257d89ba7a70',1,'nc::NdArrayColumnIterator::operator-(const self_type &rhs) const noexcept'],['../namespacenc.html#a7c61e5d343e6439c26abb36db5a0b948',1,'nc::operator-(const Vec3 &lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#aea4fe5d4daa75249a7b7765a219cbdb9',1,'nc::operator-(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a7227073082d530baaf7ebb96ee06995b',1,'nc::operator-(const Vec3 &vec) noexcept'],['../namespacenc.html#a9b0eb6f1f7c4c55004478a3eb99c5367',1,'nc::operator-(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a419f15a00c80bffbe8446892e2015eae',1,'nc::operator-(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a1c852c2418c1b5eac6da53972f82233e',1,'nc::operator-(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)'],['../namespacenc.html#a305a3e10402251fc06871a84f8941298',1,'nc::operator-(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a88d16d314b7e1427529122d2434223e0',1,'nc::operator-(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a9d459ed977535f74996fe4820343138d',1,'nc::operator-(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a5e63a7dbcbc5bf2e9e5ad41c0169df34',1,'nc::operator-(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#a31b3ca85817b7242152028c4fd3f32c3',1,'nc::operator-(const NdArray< dtype > &inArray)'],['../namespacenc.html#a7c52ae6f5c5daf9d27c292e0451cccc3',1,'nc::operator-(const Vec2 &vec) noexcept'],['../namespacenc.html#af29a28cada8fd30111a2c6d41a110ff8',1,'nc::operator-(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#ad279cbad60173006f6883e0d18b0147e',1,'nc::operator-(double lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a7cf1dfd7144b41f4d748af9fb8aa5ffb',1,'nc::operator-(const Vec2 &lhs, const Vec2 &rhs) noexcept'],['../namespacenc.html#a6935362e6d04b73f04c0e8191ae3098d',1,'nc::operator-(const Vec3 &lhs, double rhs) noexcept'],['../namespacenc.html#af87da9c66c9e535066221e4f85f3ed90',1,'nc::operator-(double lhs, const Vec3 &rhs) noexcept'],['../namespacenc.html#aae5b14c2febca550101675a55ee5e436',1,'nc::operator-(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], + ['operator_2d_2d_2131',['operator--',['../classnc_1_1_nd_array_const_iterator.html#a6061cf25f89e41d3a77d0f4fb0ccc7e2',1,'nc::NdArrayConstIterator::operator--() noexcept'],['../classnc_1_1_nd_array_const_iterator.html#a526a13c16c0ef08b005f67184f80087a',1,'nc::NdArrayConstIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_iterator.html#a3bcc95583b7a85e5d253b6c830d33ec4',1,'nc::NdArrayIterator::operator--() noexcept'],['../classnc_1_1_nd_array_iterator.html#adcd3b9918db13467bcd234e6f3eec61f',1,'nc::NdArrayIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a9813a585d99eb656cbe7e1e12476d30b',1,'nc::NdArrayConstColumnIterator::operator--() noexcept'],['../classnc_1_1_nd_array_const_column_iterator.html#a5fea275f4afdd1fca5b59830ce182bff',1,'nc::NdArrayConstColumnIterator::operator--(int) noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a145c2fa5cbd327fbba7dd4701ef27baf',1,'nc::NdArrayColumnIterator::operator--() noexcept'],['../classnc_1_1_nd_array_column_iterator.html#a8ee7c1ecf2dc107159aec64377f5d6bd',1,'nc::NdArrayColumnIterator::operator--(int) noexcept'],['../namespacenc.html#ab1ac162f983d66eec0f6189325bd1720',1,'nc::operator--(NdArray< dtype > &lhs, int)'],['../namespacenc.html#aa7ea8977a2740af99f4c08c88d7a79e8',1,'nc::operator--(NdArray< dtype > &rhs)']]], + ['operator_2d_3d_2132',['operator-=',['../classnc_1_1_nd_array_const_iterator.html#a9ae2efc38005276adaa744e6bec116c3',1,'nc::NdArrayConstIterator::operator-=()'],['../classnc_1_1_nd_array_iterator.html#a3ae9bd787a73639f2d0334d87f1fb720',1,'nc::NdArrayIterator::operator-=()'],['../classnc_1_1_nd_array_const_column_iterator.html#af68690450642df08758a9e067edeee47',1,'nc::NdArrayConstColumnIterator::operator-=()'],['../classnc_1_1_nd_array_column_iterator.html#a80924e15c192ee04843add79ad2efece',1,'nc::NdArrayColumnIterator::operator-=()'],['../classnc_1_1polynomial_1_1_poly1d.html#a732cca31f4b6180d0ad035a6daeb160a',1,'nc::polynomial::Poly1d::operator-=()'],['../classnc_1_1rotations_1_1_quaternion.html#a60f1f33144c887cde1338fd80183638f',1,'nc::rotations::Quaternion::operator-=()'],['../classnc_1_1_vec2.html#abfb0b00888fa37d52a895d06f2b39133',1,'nc::Vec2::operator-=(double scaler) noexcept'],['../classnc_1_1_vec2.html#a13a2bbc2595248211e0bc97de51e13b5',1,'nc::Vec2::operator-=(const Vec2 &rhs) noexcept'],['../classnc_1_1_vec3.html#a70251860269c7cb5becbe988a0b2c48e',1,'nc::Vec3::operator-=(double scaler) noexcept'],['../classnc_1_1_vec3.html#a208820649ed763a5dcc9405c4aa481f2',1,'nc::Vec3::operator-=(const Vec3 &rhs) noexcept'],['../namespacenc.html#a9093ebf2aaa2dbc811ae45e77ba52960',1,'nc::operator-=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a8ba0ad93a3ec2ca409cdb14785e1f679',1,'nc::operator-=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aae2f4895eb95921ca77529137e603cd0',1,'nc::operator-=(NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#ac870e3973346560eba3380c11f216540',1,'nc::operator-=(NdArray< dtype > &lhs, dtype rhs)']]], + ['operator_2d_3e_2133',['operator->',['../classnc_1_1_nd_array_iterator.html#aa1627ff7d2b0089222794bfebaa29a32',1,'nc::NdArrayIterator::operator->()'],['../classnc_1_1_nd_array_const_column_iterator.html#a33d2e58d269f938c742ac25f46edf008',1,'nc::NdArrayConstColumnIterator::operator->()'],['../classnc_1_1_nd_array_column_iterator.html#ae66efdfa1252f405042276e3e9a25364',1,'nc::NdArrayColumnIterator::operator->()'],['../classnc_1_1_nd_array_const_iterator.html#a36aee44e67ed7bdc2fd3ca660e1748fa',1,'nc::NdArrayConstIterator::operator->()']]], + ['operator_2f_2134',['operator/',['../namespacenc.html#a8d2ca407e7579acac2ca6496c4196d15',1,'nc::operator/(const std::complex< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a58862db40468f4be62b860990cf05336',1,'nc::operator/(const NdArray< std::complex< dtype >> &lhs, dtype rhs)'],['../namespacenc.html#a06365d71ef5c147fee8e571b9fef7313',1,'nc::operator/(dtype lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#abe2fc114afe7f62aacf55a9288f45c4a',1,'nc::operator/(const Vec2 &lhs, double rhs) noexcept'],['../namespacenc.html#a0a070b4ec8a29ee1a357c53857d4778a',1,'nc::operator/(const Vec3 &lhs, double rhs) noexcept'],['../classnc_1_1rotations_1_1_quaternion.html#ab054e067fc333a48582e291f95120866',1,'nc::rotations::Quaternion::operator/()'],['../namespacenc.html#a69481119ed4cf9e7fe41b0c9228693e3',1,'nc::operator/(const NdArray< dtype > &lhs, const NdArray< std::complex< dtype >> &rhs)'],['../namespacenc.html#ac8cd599e4b67e78c173894bc3d2bd7f2',1,'nc::operator/(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a4bec4dbe25db0a2ec84e5999458a2c02',1,'nc::operator/(const NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a4dda3a7297e38679bf172d870090da1d',1,'nc::operator/(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a04bf5ca073685e762d84932ae14b8caa',1,'nc::operator/(dtype lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a1eee81e10b382e6b0474508725831a4f',1,'nc::operator/(const NdArray< dtype > &lhs, const std::complex< dtype > &rhs)']]], + ['operator_2f_3d_2135',['operator/=',['../classnc_1_1_vec3.html#a431b2ac6af51bf59d804adbe5c8a7700',1,'nc::Vec3::operator/=()'],['../classnc_1_1_vec2.html#a1a1c875b11ea5571cb2b71778a692472',1,'nc::Vec2::operator/=()'],['../classnc_1_1rotations_1_1_quaternion.html#a859df40774ccff755560604b930c934d',1,'nc::rotations::Quaternion::operator/=()'],['../namespacenc.html#ad554e38d21aec306a8e3e4cd4ca990a2',1,'nc::operator/=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a26c691c1a8a6ddea49796591063e7630',1,'nc::operator/=(NdArray< std::complex< dtype >> &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a05414ec63ae42b4a3e9e81ceef072094',1,'nc::operator/=(NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a7bbd0ddf9efe256d0c010e2c481da2d5',1,'nc::operator/=(NdArray< std::complex< dtype >> &lhs, dtype rhs)']]], + ['operator_3c_2136',['operator<',['../classnc_1_1_nd_array_const_iterator.html#a6ae3aca3c7cb79a9fd985c1820b74c39',1,'nc::NdArrayConstIterator::operator<()'],['../classnc_1_1image_processing_1_1_pixel.html#a592926833195d4f2587efef12e4b1148',1,'nc::imageProcessing::Pixel::operator<()'],['../classnc_1_1image_processing_1_1_centroid.html#a093719e81ed5bd5af0cb80dcfd03289f',1,'nc::imageProcessing::Centroid::operator<()'],['../classnc_1_1_nd_array_const_column_iterator.html#ab0928638c653f5ed37088a3e5098064b',1,'nc::NdArrayConstColumnIterator::operator<()'],['../namespacenc.html#a724cd71c78633aa5a757aa76b514f46a',1,'nc::operator<(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#ac1e7489f428b83ed55b5d44963b4eab6',1,'nc::operator<(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a8b68828e75eb8bd91ccdc63e6c39511f',1,'nc::operator<(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#a6500fd0898086f300bb7909249b3e50f',1,'nc::operator<(dtype inValue, const NdArray< dtype > &inArray)']]], + ['operator_3c_3c_2137',['operator<<',['../namespacenc.html#a39964568372712a2a5427c44e59ffbe2',1,'nc::operator<<(const NdArray< dtype > &lhs, uint8 inNumBits)'],['../namespacenc.html#a5df285ae528f83294768588fa622d41f',1,'nc::operator<<(std::ostream &inOStream, const NdArray< dtype > &inArray)'],['../namespacenc.html#aecdda46f9eca3e1f802bb5451ca952cb',1,'nc::operator<<(std::ostream &stream, const Vec2 &vec)'],['../namespacenc.html#a0cf6f27f323d5bc34b6c56316c480865',1,'nc::operator<<(std::ostream &stream, const Vec3 &vec)']]], + ['operator_3c_3c_3d_2138',['operator<<=',['../namespacenc.html#a9d82fca424a68c0042594e483b51ced2',1,'nc']]], + ['operator_3c_3d_2139',['operator<=',['../classnc_1_1_nd_array_const_iterator.html#a171276f9e90a1336d156c61c2b61bd23',1,'nc::NdArrayConstIterator::operator<=()'],['../classnc_1_1_nd_array_const_column_iterator.html#a8468d6928d88c7f34d1456261331f238',1,'nc::NdArrayConstColumnIterator::operator<=()'],['../namespacenc.html#a9f9bb9e7b4ecf581498351e14f074145',1,'nc::operator<=(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#a496de942a0d74925ed64972dcb2cffe8',1,'nc::operator<=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a4ceffb2e21de23701d431abde8e78592',1,'nc::operator<=(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#accb22a9c6f4dc0452020b0a86ef8fdf9',1,'nc::operator<=(dtype inValue, const NdArray< dtype > &inArray)']]], + ['operator_3d_2140',['operator=',['../classnc_1_1_nd_array.html#abe4cda5855bc5d6aee488293000d1acb',1,'nc::NdArray::operator=(const NdArray< dtype > &rhs)'],['../classnc_1_1_nd_array.html#a5ff24670b2173fccf1c9a35b688f2683',1,'nc::NdArray::operator=(NdArray< dtype > &&rhs) noexcept'],['../classnc_1_1_nd_array.html#ae5150db09cf7f76269b3254ceb0c43a8',1,'nc::NdArray::operator=(value_type inValue) noexcept']]], + ['operator_3d_3d_2141',['operator==',['../classnc_1_1_vec2.html#af04a7f20ae8ac7a59ae44f7819668fa0',1,'nc::Vec2::operator==()'],['../classnc_1_1rotations_1_1_quaternion.html#a82f40acb2292256faffab2b88aa38208',1,'nc::rotations::Quaternion::operator==()'],['../classnc_1_1_nd_array_const_column_iterator.html#aec9953c2361595fc656a1a5d306e36c0',1,'nc::NdArrayConstColumnIterator::operator==()'],['../classnc_1_1_nd_array_const_iterator.html#ac055ccace7f791cfb94d7df8e7100dc2',1,'nc::NdArrayConstIterator::operator==()'],['../classnc_1_1image_processing_1_1_pixel.html#a008757a06c498b1a31e26d53a54e51dc',1,'nc::imageProcessing::Pixel::operator==()'],['../classnc_1_1image_processing_1_1_cluster.html#a8308c5f0313872c9499de36d69d0ff19',1,'nc::imageProcessing::Cluster::operator==()'],['../classnc_1_1image_processing_1_1_centroid.html#a503a2542b388f65fb80710dd33610abc',1,'nc::imageProcessing::Centroid::operator==()'],['../classnc_1_1_slice.html#a769815d8fbb98ba34101c18a21efbbf5',1,'nc::Slice::operator==()'],['../classnc_1_1_shape.html#a0267d8b7eb226fdc442be5c914f9c870',1,'nc::Shape::operator==()'],['../classnc_1_1coordinates_1_1_r_a.html#ab9e22496d5fdc265ee5a5d77ec97c184',1,'nc::coordinates::RA::operator==()'],['../classnc_1_1coordinates_1_1_dec.html#a5b264a9d7bb9b2c1b537b03a5eac7265',1,'nc::coordinates::Dec::operator==()'],['../classnc_1_1coordinates_1_1_coordinate.html#a96255907cf1af2c416c7dbe34e96b0d5',1,'nc::coordinates::Coordinate::operator==()'],['../namespacenc.html#aa956dff0507eddc1c1d80e423f126383',1,'nc::operator==()'],['../classnc_1_1_vec3.html#a2cc63855706091881f765b63dcf52c44',1,'nc::Vec3::operator==()'],['../namespacenc.html#a283fba259d2cd892a8cbb2782490b92a',1,'nc::operator==(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#afdcaaff39ed10311d74302a6e9be2fd4',1,'nc::operator==(dtype inValue, const NdArray< dtype > &inArray)']]], + ['operator_3e_2142',['operator>',['../classnc_1_1_nd_array_const_iterator.html#a8a312e1809eae90df625971d6b4ab62e',1,'nc::NdArrayConstIterator::operator>()'],['../classnc_1_1_nd_array_const_column_iterator.html#a827d0a8431ec616ef0161144b3d24af6',1,'nc::NdArrayConstColumnIterator::operator>()'],['../namespacenc.html#a113de1155a4e2a71dcdad1709c58afe8',1,'nc::operator>(dtype inValue, const NdArray< dtype > &inArray)'],['../namespacenc.html#a20910640e1c1dd8bc9298561fedc84a4',1,'nc::operator>(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept'],['../namespacenc.html#a7433343db2634ef8f75e290370cfe21e',1,'nc::operator>(const NdArray< dtype > &lhs, dtype inValue)'],['../namespacenc.html#a5755bb93bff9c0cbd38dbf1296902374',1,'nc::operator>(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)']]], + ['operator_3e_3d_2143',['operator>=',['../classnc_1_1_nd_array_const_column_iterator.html#a9935c5d4b3deff76207ccde7cfccbf62',1,'nc::NdArrayConstColumnIterator::operator>=()'],['../namespacenc.html#a4a32b6c123eaa3f46c14159b243522de',1,'nc::operator>=()'],['../classnc_1_1_nd_array_const_iterator.html#a06871d8ba079130e84a892995c07a49a',1,'nc::NdArrayConstIterator::operator>=()'],['../namespacenc.html#ac453f615df2e03778835908a70907145',1,'nc::operator>=(dtype inValue, const NdArray< dtype > &inArray)'],['../namespacenc.html#a48199b1c11d42106cd09ae57215520fe',1,'nc::operator>=(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a0dfd9f5c1ec0c3d61959c4c54e6dc23a',1,'nc::operator>=(const std::complex< T > &lhs, const std::complex< T > &rhs) noexcept']]], + ['operator_3e_3e_2144',['operator>>',['../namespacenc.html#a7e6fe3981b55cd4f381339b616a55ec8',1,'nc']]], + ['operator_3e_3e_3d_2145',['operator>>=',['../namespacenc.html#a7626eefaf34c6ac138da762c6ae930e7',1,'nc']]], + ['operator_5b_5d_2146',['operator[]',['../classnc_1_1image_processing_1_1_cluster.html#a386b222d5747fc2b77448ea5a56d24e4',1,'nc::imageProcessing::Cluster::operator[]()'],['../classnc_1_1_nd_array.html#aeabee2aba11a885f3bd874b7a06d62ea',1,'nc::NdArray::operator[](int32 inIndex) const noexcept'],['../classnc_1_1_nd_array.html#a4744ab68830cc2cc16d8804295662b6a',1,'nc::NdArray::operator[](const Slice &inSlice) const'],['../classnc_1_1_nd_array.html#ab04b63c2794747b88b0e640f737c6b2c',1,'nc::NdArray::operator[](const NdArray< bool > &inMask) const'],['../classnc_1_1_nd_array.html#a0f53f1d4f5b259021cf61026f65759e0',1,'nc::NdArray::operator[](const Indices &inIndices) const'],['../classnc_1_1_nd_array_const_iterator.html#a83ee672f75e74c4421a25a7816be12c6',1,'nc::NdArrayConstIterator::operator[]()'],['../classnc_1_1_nd_array_iterator.html#a40c132f8a7c1dd9fde17bcd3ddc2a18f',1,'nc::NdArrayIterator::operator[]()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3a37dd5a1496ecf2249950325b0a388c',1,'nc::NdArrayConstColumnIterator::operator[]()'],['../classnc_1_1_nd_array.html#aa58a51df41648b4d39f2f972c60e09ae',1,'nc::NdArray::operator[]()'],['../classnc_1_1image_processing_1_1_cluster_maker.html#ae92d75ae626bb18324b0dfe69ee44f25',1,'nc::imageProcessing::ClusterMaker::operator[]()'],['../classnc_1_1_nd_array_column_iterator.html#a5dc1514332728850b8fbeaa7d1f8bda0',1,'nc::NdArrayColumnIterator::operator[]()'],['../classnc_1_1_data_cube.html#a1a16b98e982d79cc6a172b8e2bfad856',1,'nc::DataCube::operator[](uint32 inIndex) noexcept'],['../classnc_1_1_data_cube.html#a403c0b0df22fc5fa0858109fa7a65f87',1,'nc::DataCube::operator[](uint32 inIndex) const noexcept']]], + ['operator_5e_2147',['operator^',['../classnc_1_1polynomial_1_1_poly1d.html#a548c945121cb39859f649cf39a6d0830',1,'nc::polynomial::Poly1d::operator^()'],['../namespacenc.html#ae4befd8a03420464348fdfcc71b106bb',1,'nc::operator^(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#aa6be940ce9eed012ca0fac881d884411',1,'nc::operator^(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#af4f0fce9397ab714d3567d454f143835',1,'nc::operator^(dtype lhs, const NdArray< dtype > &rhs)']]], + ['operator_5e_3d_2148',['operator^=',['../classnc_1_1polynomial_1_1_poly1d.html#a930f53185992537e3eb5844ebb70bf38',1,'nc::polynomial::Poly1d::operator^=()'],['../namespacenc.html#a8d3d77fe59d533d1301aea0112e38fa8',1,'nc::operator^=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#ad4f2748ac9b7ebe59f1592e118169ea7',1,'nc::operator^=(NdArray< dtype > &lhs, dtype rhs)']]], + ['operator_7c_2149',['operator|',['../namespacenc.html#a2dd868d584e1d65748cf04957eb97d99',1,'nc::operator|(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#a129a0c61ca191919674576a76ee7fd93',1,'nc::operator|(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a50e6d418c92ccd6d7a2cf42a899a2203',1,'nc::operator|(dtype lhs, const NdArray< dtype > &rhs)']]], + ['operator_7c_3d_2150',['operator|=',['../namespacenc.html#a958f4fd964269c7affaaff0e30b4dc01',1,'nc::operator|=(NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#afbb3e9d2eb28cad36a9de996263067d9',1,'nc::operator|=(NdArray< dtype > &lhs, dtype rhs)']]], + ['operator_7c_7c_2151',['operator||',['../namespacenc.html#a25c9ac2d82de1fd3c81890ad38ebfb25',1,'nc::operator||(const NdArray< dtype > &lhs, const NdArray< dtype > &rhs)'],['../namespacenc.html#affe1935670d985dfe387f429d68874e2',1,'nc::operator||(const NdArray< dtype > &lhs, dtype rhs)'],['../namespacenc.html#a37ef6f1c023837fbe628c3838b14d940',1,'nc::operator||(dtype lhs, const NdArray< dtype > &rhs)']]], + ['operator_7e_2152',['operator~',['../namespacenc.html#ae9d44b86bb2c2968d5c67f11ca789d3e',1,'nc']]], + ['order_2153',['order',['../classnc_1_1polynomial_1_1_poly1d.html#ab978ca2f65c7cd640309c1be86aa9141',1,'nc::polynomial::Poly1d']]], + ['outer_2154',['outer',['../namespacenc.html#a395197f9b1d3f53a5fdcd234fa6e6baf',1,'nc']]], + ['ownsinternaldata_2155',['ownsInternalData',['../classnc_1_1_nd_array.html#a63a1c0f9fdef078770e4f8cbe2c249ec',1,'nc::NdArray']]] ]; diff --git a/docs/doxygen/html/search/functions_f.html b/docs/doxygen/html/search/functions_f.html index d84063c14..54b7dee08 100644 --- a/docs/doxygen/html/search/functions_f.html +++ b/docs/doxygen/html/search/functions_f.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/functions_f.js b/docs/doxygen/html/search/functions_f.js index a70fc3fdd..e7cb94759 100644 --- a/docs/doxygen/html/search/functions_f.js +++ b/docs/doxygen/html/search/functions_f.js @@ -1,31 +1,33 @@ var searchData= [ - ['pad_2056',['pad',['../namespacenc.html#a54ebb23ac2a5fef9013f82afd8efd143',1,'nc']]], - ['partition_2057',['partition',['../classnc_1_1_nd_array.html#a2fa17d38624fabcae789cfa3323b66d8',1,'nc::NdArray::partition()'],['../namespacenc.html#a4756e923c974025e793ede125bf0902f',1,'nc::partition()']]], - ['peakpixelintensity_2058',['peakPixelIntensity',['../classnc_1_1image_processing_1_1_cluster.html#aab51c1c4539c3824bcdbd20a5db1fd4a',1,'nc::imageProcessing::Cluster']]], - ['percentile_2059',['percentile',['../namespacenc.html#aea6e5b5c0255660d4968b657b06b4d58',1,'nc']]], - ['percentilefilter_2060',['percentileFilter',['../namespacenc_1_1filter.html#a357d5be7b2dc0b511d398acc4c8af1fd',1,'nc::filter']]], - ['percentilefilter1d_2061',['percentileFilter1d',['../namespacenc_1_1filter.html#aee202739b753a067c7cb2aa32a9b1519',1,'nc::filter']]], - ['permutation_2062',['permutation',['../namespacenc_1_1random.html#a01eed1c9d55b68fa4c93afef918dd3e0',1,'nc::random::permutation(dtype inValue)'],['../namespacenc_1_1random.html#ac2ddd4fda3731e5f66378b191804085f',1,'nc::random::permutation(const NdArray< dtype > &inArray)']]], - ['pitch_2063',['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()']]], - ['pivotlu_5fdecomposition_2064',['pivotLU_decomposition',['../namespacenc_1_1linalg.html#a390c3d32ed4b8ed7e718cbe121025ebd',1,'nc::linalg']]], - ['pixel_2065',['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']]], - ['pnr_2066',['pnr',['../namespacenc_1_1special.html#ab52643e0c6a859c47871094023c834b5',1,'nc::special']]], - ['poisson_2067',['poisson',['../namespacenc_1_1random.html#ae103ffefefe45e4b64067d52a1763f24',1,'nc::random::poisson(const Shape &inShape, double inMean=1)'],['../namespacenc_1_1random.html#ae18029c16ca489ea9db6331c609b20e8',1,'nc::random::poisson(double inMean=1)']]], - ['polar_2068',['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)']]], - ['poly1d_2069',['Poly1d',['../classnc_1_1polynomial_1_1_poly1d.html#a33c01905d846d32e7d49dc4e7e884551',1,'nc::polynomial::Poly1d::Poly1d(const NdArray< dtype > &inValues, bool isRoots=false)'],['../classnc_1_1polynomial_1_1_poly1d.html#a30777a0dd9351cf64f96959dad0d9ba5',1,'nc::polynomial::Poly1d::Poly1d()=default']]], - ['polygamma_2070',['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)']]], - ['pop_5fback_2071',['pop_back',['../classnc_1_1_data_cube.html#a8e261e08fd074073771b98dc96726b0f',1,'nc::DataCube']]], - ['power_2072',['power',['../namespacenc.html#a1f059635ecfc805979db6973dfa29008',1,'nc::power(dtype inValue, uint8 inExponent) noexcept'],['../namespacenc.html#a545b7daab1de503eed95d64b2d6b6002',1,'nc::power(const NdArray< dtype > &inArray, uint8 inExponent)'],['../namespacenc.html#ad09cd336cd7c12dd32a84c91654fa5d1',1,'nc::power(const NdArray< dtype > &inArray, const NdArray< uint8 > &inExponents)'],['../namespacenc_1_1utils.html#a716a63ef8627c73f6cc4146481fcabdf',1,'nc::utils::power(dtype inValue, uint8 inPower) noexcept']]], - ['powerf_2073',['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)'],['../namespacenc.html#acc759e42feb1633b521ed7138cf4bfe3',1,'nc::powerf(dtype1 inValue, dtype2 inExponent) noexcept']]], - ['prime_2074',['prime',['../namespacenc_1_1special.html#a9fa95a2e2a03a5eff8ea2f9e0594b206',1,'nc::special::prime(const NdArray< uint32 > &inArray)'],['../namespacenc_1_1special.html#a2e0b9f447fd033ac62a0dfe3eadb46cd',1,'nc::special::prime(uint32 n)']]], - ['print_2075',['print',['../classnc_1_1coordinates_1_1_dec.html#aaf14d802f311f155310a8efa1bf18567',1,'nc::coordinates::Dec::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_1image_processing_1_1_centroid.html#a139efcdd994d1bacdf62d65b3c427d8d',1,'nc::imageProcessing::Centroid::print()'],['../classnc_1_1_slice.html#a24c1eb77b94d3120bb02868cc965c058',1,'nc::Slice::print()'],['../classnc_1_1_shape.html#a494a3d8467911c47d56aa881e11a69f1',1,'nc::Shape::print()'],['../classnc_1_1coordinates_1_1_r_a.html#a1f935f2825ee66373e5a5b0635851d8e',1,'nc::coordinates::RA::print()'],['../classnc_1_1coordinates_1_1_coordinate.html#afb451d6e6c10d1f6cacd98bea67850a2',1,'nc::coordinates::Coordinate::print()'],['../namespacenc.html#aad1fad7ba0ba94b118bdceb29178488b',1,'nc::print()']]], - ['prod_2076',['prod',['../classnc_1_1_nd_array.html#a1a95a48b1434d2260a265d13509f864d',1,'nc::NdArray::prod()'],['../namespacenc.html#afadd339ab80158ebd9f1dc294052e58d',1,'nc::prod(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], - ['proj_2077',['proj',['../namespacenc.html#a7d1c3835da6ff00937ae62a975240957',1,'nc::proj(const NdArray< std::complex< dtype >> &inArray)'],['../namespacenc.html#a645f790a7dfb01c78317ff23e000db52',1,'nc::proj(const std::complex< dtype > &inValue)']]], - ['project_2078',['project',['../classnc_1_1_vec3.html#aaba2a76701fbf17582641cefeb513f1c',1,'nc::Vec3::project()'],['../classnc_1_1_vec2.html#aa5cb2f954360d7be97c443da16694383',1,'nc::Vec2::project()']]], - ['ptp_2079',['ptp',['../classnc_1_1_nd_array.html#aabfb3d013e77626b7e423da910ab9ffb',1,'nc::NdArray::ptp()'],['../namespacenc.html#ae336fd0ff89427cca931a05fd9a9697a',1,'nc::ptp()']]], - ['push_5fback_2080',['push_back',['../classnc_1_1_data_cube.html#a00f652afe3e8734f7d0707b12afd6a65',1,'nc::DataCube']]], - ['put_2081',['put',['../namespacenc.html#a5047b3f195605e63ef655048a8d07279',1,'nc::put(NdArray< dtype > &inArray, const NdArray< uint32 > &inIndices, const NdArray< dtype > &inValues)'],['../namespacenc.html#aa1ecdda42e74eaa37516ee8032a9a84e',1,'nc::put(NdArray< dtype > &inArray, const NdArray< uint32 > &inIndices, dtype inValue)'],['../classnc_1_1_nd_array.html#ad74b89f5bac37d089ee940ae8c225703',1,'nc::NdArray::put(int32 inRowIndex, const Slice &inColSlice, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#af062cf00ee693dbd74d0f440b1cbded7',1,'nc::NdArray::put(const Slice &inRowSlice, int32 inColIndex, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a17398abb49993b960a33bd14c0db399e',1,'nc::NdArray::put(const Slice &inRowSlice, const Slice &inColSlice, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a7ae6272ff9d4dea6c890ef6dcbae6eb4',1,'nc::NdArray::put(int32 inRowIndex, const Slice &inColSlice, value_type inValue)'],['../classnc_1_1_nd_array.html#a2ebd28ce6f5227d42bd5c990a22d9f29',1,'nc::NdArray::put(const Slice &inRowSlice, int32 inColIndex, value_type inValue)'],['../classnc_1_1_nd_array.html#a094424d8f368eaa3730102a5f75f0c2e',1,'nc::NdArray::put(const Slice &inRowSlice, const Slice &inColSlice, value_type inValue)'],['../classnc_1_1_nd_array.html#ab67c8f364caab7706d32041b2d01012d',1,'nc::NdArray::put(const Slice &inSlice, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#ae8213735dca5d0ad895138f01aa70947',1,'nc::NdArray::put(const Slice &inSlice, value_type inValue)'],['../classnc_1_1_nd_array.html#a6a0bd2406380b080b0ab7565759bb660',1,'nc::NdArray::put(const NdArray< uint32 > &inIndices, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#aa8f52298436a941b3e53b8204b0b85df',1,'nc::NdArray::put(const NdArray< uint32 > &inIndices, value_type inValue)'],['../classnc_1_1_nd_array.html#a57e1fc57f28b17f5ba6b421b82066388',1,'nc::NdArray::put(int32 inRow, int32 inCol, value_type inValue)'],['../classnc_1_1_nd_array.html#a02a06425d6284dbc370807ed11b1f7b2',1,'nc::NdArray::put(int32 inIndex, value_type inValue)']]], - ['putmask_2082',['putMask',['../classnc_1_1_nd_array.html#aaf9229244e8984f557a823223ac35a29',1,'nc::NdArray::putMask(const NdArray< bool > &inMask, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a52e65ffbf29d168d53ac7605acb69b4e',1,'nc::NdArray::putMask(const NdArray< bool > &inMask, value_type inValue)']]], - ['putmask_2083',['putmask',['../namespacenc.html#af6468198b46c36c8a93068c936617725',1,'nc::putmask(NdArray< dtype > &inArray, const NdArray< bool > &inMask, dtype inValue)'],['../namespacenc.html#a0ae15cbd793c43445aca3660fc209a0c',1,'nc::putmask(NdArray< dtype > &inArray, const NdArray< bool > &inMask, const NdArray< dtype > &inValues)']]] + ['pad_2156',['pad',['../namespacenc.html#a54ebb23ac2a5fef9013f82afd8efd143',1,'nc']]], + ['partition_2157',['partition',['../classnc_1_1_nd_array.html#a2fa17d38624fabcae789cfa3323b66d8',1,'nc::NdArray::partition()'],['../namespacenc.html#a4756e923c974025e793ede125bf0902f',1,'nc::partition()']]], + ['peakpixelintensity_2158',['peakPixelIntensity',['../classnc_1_1image_processing_1_1_cluster.html#aab51c1c4539c3824bcdbd20a5db1fd4a',1,'nc::imageProcessing::Cluster']]], + ['percentile_2159',['percentile',['../namespacenc.html#aea6e5b5c0255660d4968b657b06b4d58',1,'nc']]], + ['percentilefilter_2160',['percentileFilter',['../namespacenc_1_1filter.html#a357d5be7b2dc0b511d398acc4c8af1fd',1,'nc::filter']]], + ['percentilefilter1d_2161',['percentileFilter1d',['../namespacenc_1_1filter.html#aee202739b753a067c7cb2aa32a9b1519',1,'nc::filter']]], + ['permutation_2162',['permutation',['../namespacenc_1_1random.html#ac2ddd4fda3731e5f66378b191804085f',1,'nc::random::permutation(const NdArray< dtype > &inArray)'],['../namespacenc_1_1random.html#a01eed1c9d55b68fa4c93afef918dd3e0',1,'nc::random::permutation(dtype inValue)']]], + ['pitch_2163',['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()']]], + ['pivotlu_5fdecomposition_2164',['pivotLU_decomposition',['../namespacenc_1_1linalg.html#a390c3d32ed4b8ed7e718cbe121025ebd',1,'nc::linalg']]], + ['pixel_2165',['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_2166',['place',['../namespacenc.html#a171da00c79cfbc9500916b6ac4d3de70',1,'nc']]], + ['pnr_2167',['pnr',['../namespacenc_1_1special.html#ab52643e0c6a859c47871094023c834b5',1,'nc::special']]], + ['poisson_2168',['poisson',['../namespacenc_1_1random.html#ae103ffefefe45e4b64067d52a1763f24',1,'nc::random::poisson(const Shape &inShape, double inMean=1)'],['../namespacenc_1_1random.html#ae18029c16ca489ea9db6331c609b20e8',1,'nc::random::poisson(double inMean=1)']]], + ['polar_2169',['polar',['../namespacenc.html#a4f674e5cab66c911b212a5eae86a641b',1,'nc::polar(const NdArray< dtype > &magnitude, const NdArray< dtype > &phaseAngle)'],['../namespacenc.html#abbf3200fe11e4cb7ae6363b00099c2fe',1,'nc::polar(dtype magnitude, dtype phaseAngle)']]], + ['poly1d_2170',['Poly1d',['../classnc_1_1polynomial_1_1_poly1d.html#a30777a0dd9351cf64f96959dad0d9ba5',1,'nc::polynomial::Poly1d::Poly1d()=default'],['../classnc_1_1polynomial_1_1_poly1d.html#a33c01905d846d32e7d49dc4e7e884551',1,'nc::polynomial::Poly1d::Poly1d(const NdArray< dtype > &inValues, bool isRoots=false)']]], + ['polygamma_2171',['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)']]], + ['pop_5fback_2172',['pop_back',['../classnc_1_1_data_cube.html#a8e261e08fd074073771b98dc96726b0f',1,'nc::DataCube']]], + ['power_2173',['power',['../namespacenc.html#a1f059635ecfc805979db6973dfa29008',1,'nc::power(dtype inValue, uint8 inExponent) noexcept'],['../namespacenc.html#a545b7daab1de503eed95d64b2d6b6002',1,'nc::power(const NdArray< dtype > &inArray, uint8 inExponent)'],['../namespacenc.html#ad09cd336cd7c12dd32a84c91654fa5d1',1,'nc::power(const NdArray< dtype > &inArray, const NdArray< uint8 > &inExponents)'],['../namespacenc_1_1utils.html#a716a63ef8627c73f6cc4146481fcabdf',1,'nc::utils::power()']]], + ['powerf_2174',['powerf',['../namespacenc.html#acc759e42feb1633b521ed7138cf4bfe3',1,'nc::powerf(dtype1 inValue, dtype2 inExponent) noexcept'],['../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)'],['../namespacenc_1_1utils.html#ac113b30b96f9c707c0cbe2eecbabe85f',1,'nc::utils::powerf()']]], + ['powersoftwo_2175',['powersOfTwo',['../namespacenc_1_1edac_1_1detail.html#ad4328ffa9ba9949a9c4b494592496055',1,'nc::edac::detail']]], + ['prime_2176',['prime',['../namespacenc_1_1special.html#a9fa95a2e2a03a5eff8ea2f9e0594b206',1,'nc::special::prime(const NdArray< uint32 > &inArray)'],['../namespacenc_1_1special.html#a2e0b9f447fd033ac62a0dfe3eadb46cd',1,'nc::special::prime(uint32 n)']]], + ['print_2177',['print',['../classnc_1_1rotations_1_1_quaternion.html#a815d72f9b492ff821077d5d4652b7985',1,'nc::rotations::Quaternion::print()'],['../classnc_1_1coordinates_1_1_coordinate.html#afb451d6e6c10d1f6cacd98bea67850a2',1,'nc::coordinates::Coordinate::print()'],['../classnc_1_1coordinates_1_1_dec.html#aaf14d802f311f155310a8efa1bf18567',1,'nc::coordinates::Dec::print()'],['../classnc_1_1coordinates_1_1_r_a.html#a1f935f2825ee66373e5a5b0635851d8e',1,'nc::coordinates::RA::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_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()'],['../namespacenc.html#aad1fad7ba0ba94b118bdceb29178488b',1,'nc::print()']]], + ['prod_2178',['prod',['../classnc_1_1_nd_array.html#a1a95a48b1434d2260a265d13509f864d',1,'nc::NdArray::prod()'],['../namespacenc.html#afadd339ab80158ebd9f1dc294052e58d',1,'nc::prod(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)']]], + ['proj_2179',['proj',['../namespacenc.html#a645f790a7dfb01c78317ff23e000db52',1,'nc::proj(const std::complex< dtype > &inValue)'],['../namespacenc.html#a7d1c3835da6ff00937ae62a975240957',1,'nc::proj(const NdArray< std::complex< dtype >> &inArray)']]], + ['project_2180',['project',['../classnc_1_1_vec3.html#aaba2a76701fbf17582641cefeb513f1c',1,'nc::Vec3::project()'],['../classnc_1_1_vec2.html#aa5cb2f954360d7be97c443da16694383',1,'nc::Vec2::project()']]], + ['ptp_2181',['ptp',['../classnc_1_1_nd_array.html#aabfb3d013e77626b7e423da910ab9ffb',1,'nc::NdArray::ptp()'],['../namespacenc.html#ae336fd0ff89427cca931a05fd9a9697a',1,'nc::ptp()']]], + ['push_5fback_2182',['push_back',['../classnc_1_1_data_cube.html#a00f652afe3e8734f7d0707b12afd6a65',1,'nc::DataCube']]], + ['put_2183',['put',['../classnc_1_1_nd_array.html#aa8f52298436a941b3e53b8204b0b85df',1,'nc::NdArray::put(const NdArray< uint32 > &inIndices, value_type inValue)'],['../classnc_1_1_nd_array.html#a57e1fc57f28b17f5ba6b421b82066388',1,'nc::NdArray::put(int32 inRow, int32 inCol, value_type inValue)'],['../classnc_1_1_nd_array.html#a02a06425d6284dbc370807ed11b1f7b2',1,'nc::NdArray::put(int32 inIndex, value_type inValue)'],['../classnc_1_1_nd_array.html#ad74b89f5bac37d089ee940ae8c225703',1,'nc::NdArray::put(int32 inRowIndex, const Slice &inColSlice, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#af062cf00ee693dbd74d0f440b1cbded7',1,'nc::NdArray::put(const Slice &inRowSlice, int32 inColIndex, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a17398abb49993b960a33bd14c0db399e',1,'nc::NdArray::put(const Slice &inRowSlice, const Slice &inColSlice, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a7ae6272ff9d4dea6c890ef6dcbae6eb4',1,'nc::NdArray::put(int32 inRowIndex, const Slice &inColSlice, value_type inValue)'],['../classnc_1_1_nd_array.html#a2ebd28ce6f5227d42bd5c990a22d9f29',1,'nc::NdArray::put(const Slice &inRowSlice, int32 inColIndex, value_type inValue)'],['../classnc_1_1_nd_array.html#a094424d8f368eaa3730102a5f75f0c2e',1,'nc::NdArray::put(const Slice &inRowSlice, const Slice &inColSlice, value_type inValue)'],['../classnc_1_1_nd_array.html#ab67c8f364caab7706d32041b2d01012d',1,'nc::NdArray::put(const Slice &inSlice, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a6a0bd2406380b080b0ab7565759bb660',1,'nc::NdArray::put(const NdArray< uint32 > &inIndices, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#ae8213735dca5d0ad895138f01aa70947',1,'nc::NdArray::put(const Slice &inSlice, value_type inValue)'],['../namespacenc.html#aa1ecdda42e74eaa37516ee8032a9a84e',1,'nc::put(NdArray< dtype > &inArray, const NdArray< uint32 > &inIndices, dtype inValue)'],['../namespacenc.html#a5047b3f195605e63ef655048a8d07279',1,'nc::put(NdArray< dtype > &inArray, const NdArray< uint32 > &inIndices, const NdArray< dtype > &inValues)']]], + ['putmask_2184',['putMask',['../classnc_1_1_nd_array.html#aaf9229244e8984f557a823223ac35a29',1,'nc::NdArray::putMask(const NdArray< bool > &inMask, const NdArray< dtype > &inValues)'],['../classnc_1_1_nd_array.html#a52e65ffbf29d168d53ac7605acb69b4e',1,'nc::NdArray::putMask(const NdArray< bool > &inMask, value_type inValue)']]], + ['putmask_2185',['putmask',['../namespacenc.html#af6468198b46c36c8a93068c936617725',1,'nc::putmask(NdArray< dtype > &inArray, const NdArray< bool > &inMask, dtype inValue)'],['../namespacenc.html#a0ae15cbd793c43445aca3660fc209a0c',1,'nc::putmask(NdArray< dtype > &inArray, const NdArray< bool > &inMask, const NdArray< dtype > &inValues)']]] ]; diff --git a/docs/doxygen/html/search/namespaces_0.html b/docs/doxygen/html/search/namespaces_0.html index 5b42bb2aa..21db2c3a5 100644 --- a/docs/doxygen/html/search/namespaces_0.html +++ b/docs/doxygen/html/search/namespaces_0.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/namespaces_0.js b/docs/doxygen/html/search/namespaces_0.js index 35de88d96..067620a12 100644 --- a/docs/doxygen/html/search/namespaces_0.js +++ b/docs/doxygen/html/search/namespaces_0.js @@ -1,21 +1,23 @@ var searchData= [ - ['boundary_1200',['boundary',['../namespacenc_1_1filter_1_1boundary.html',1,'nc::filter']]], - ['constants_1201',['constants',['../namespacenc_1_1constants.html',1,'nc']]], - ['coordinates_1202',['coordinates',['../namespacenc_1_1coordinates.html',1,'nc']]], - ['endian_1203',['endian',['../namespacenc_1_1endian.html',1,'nc']]], - ['error_1204',['error',['../namespacenc_1_1error.html',1,'nc']]], - ['filesystem_1205',['filesystem',['../namespacenc_1_1filesystem.html',1,'nc']]], - ['filter_1206',['filter',['../namespacenc_1_1filter.html',1,'nc']]], - ['imageprocessing_1207',['imageProcessing',['../namespacenc_1_1image_processing.html',1,'nc']]], - ['integrate_1208',['integrate',['../namespacenc_1_1integrate.html',1,'nc']]], - ['linalg_1209',['linalg',['../namespacenc_1_1linalg.html',1,'nc']]], - ['nc_1210',['nc',['../namespacenc.html',1,'']]], - ['polynomial_1211',['polynomial',['../namespacenc_1_1polynomial.html',1,'nc']]], - ['random_1212',['random',['../namespacenc_1_1random.html',1,'nc']]], - ['roots_1213',['roots',['../namespacenc_1_1roots.html',1,'nc']]], - ['rotations_1214',['rotations',['../namespacenc_1_1rotations.html',1,'nc']]], - ['special_1215',['special',['../namespacenc_1_1special.html',1,'nc']]], - ['stl_5falgorithms_1216',['stl_algorithms',['../namespacenc_1_1stl__algorithms.html',1,'nc']]], - ['utils_1217',['utils',['../namespacenc_1_1utils.html',1,'nc']]] + ['boundary_1254',['boundary',['../namespacenc_1_1filter_1_1boundary.html',1,'nc::filter']]], + ['constants_1255',['constants',['../namespacenc_1_1constants.html',1,'nc']]], + ['coordinates_1256',['coordinates',['../namespacenc_1_1coordinates.html',1,'nc']]], + ['detail_1257',['detail',['../namespacenc_1_1edac_1_1detail.html',1,'nc::edac']]], + ['edac_1258',['edac',['../namespacenc_1_1edac.html',1,'nc']]], + ['endian_1259',['endian',['../namespacenc_1_1endian.html',1,'nc']]], + ['error_1260',['error',['../namespacenc_1_1error.html',1,'nc']]], + ['filesystem_1261',['filesystem',['../namespacenc_1_1filesystem.html',1,'nc']]], + ['filter_1262',['filter',['../namespacenc_1_1filter.html',1,'nc']]], + ['imageprocessing_1263',['imageProcessing',['../namespacenc_1_1image_processing.html',1,'nc']]], + ['integrate_1264',['integrate',['../namespacenc_1_1integrate.html',1,'nc']]], + ['linalg_1265',['linalg',['../namespacenc_1_1linalg.html',1,'nc']]], + ['nc_1266',['nc',['../namespacenc.html',1,'']]], + ['polynomial_1267',['polynomial',['../namespacenc_1_1polynomial.html',1,'nc']]], + ['random_1268',['random',['../namespacenc_1_1random.html',1,'nc']]], + ['roots_1269',['roots',['../namespacenc_1_1roots.html',1,'nc']]], + ['rotations_1270',['rotations',['../namespacenc_1_1rotations.html',1,'nc']]], + ['special_1271',['special',['../namespacenc_1_1special.html',1,'nc']]], + ['stl_5falgorithms_1272',['stl_algorithms',['../namespacenc_1_1stl__algorithms.html',1,'nc']]], + ['utils_1273',['utils',['../namespacenc_1_1utils.html',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/pages_0.html b/docs/doxygen/html/search/pages_0.html index 179054040..8517b48f0 100644 --- a/docs/doxygen/html/search/pages_0.html +++ b/docs/doxygen/html/search/pages_0.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/pages_0.js b/docs/doxygen/html/search/pages_0.js index bbeddc3da..4c16c9a63 100644 --- a/docs/doxygen/html/search/pages_0.js +++ b/docs/doxygen/html/search/pages_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['building_2347',['Building',['../md__mnt_c__github__num_cpp_docs_markdown__building.html',1,'']]] + ['building_2449',['Building',['../md__c___github__num_cpp_docs_markdown__building.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/pages_1.html b/docs/doxygen/html/search/pages_1.html index 1ffd4f9a0..a0fb67963 100644 --- a/docs/doxygen/html/search/pages_1.html +++ b/docs/doxygen/html/search/pages_1.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/pages_1.js b/docs/doxygen/html/search/pages_1.js index 70a252b5d..d184caae7 100644 --- a/docs/doxygen/html/search/pages_1.js +++ b/docs/doxygen/html/search/pages_1.js @@ -1,4 +1,4 @@ var searchData= [ - ['compiler_20flags_2348',['Compiler Flags',['../md__mnt_c__github__num_cpp_docs_markdown__compiler_flags.html',1,'']]] + ['compiler_20flags_2450',['Compiler Flags',['../md__c___github__num_cpp_docs_markdown__compiler_flags.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/pages_2.html b/docs/doxygen/html/search/pages_2.html index fb2527e90..084edfd03 100644 --- a/docs/doxygen/html/search/pages_2.html +++ b/docs/doxygen/html/search/pages_2.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/pages_2.js b/docs/doxygen/html/search/pages_2.js index 3c7a58abb..097281f88 100644 --- a/docs/doxygen/html/search/pages_2.js +++ b/docs/doxygen/html/search/pages_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['installation_2349',['Installation',['../md__mnt_c__github__num_cpp_docs_markdown__installation.html',1,'']]] + ['installation_2451',['Installation',['../md__c___github__num_cpp_docs_markdown__installation.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/pages_3.html b/docs/doxygen/html/search/pages_3.html index 063756b74..c0b45b0fc 100644 --- a/docs/doxygen/html/search/pages_3.html +++ b/docs/doxygen/html/search/pages_3.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/pages_3.js b/docs/doxygen/html/search/pages_3.js index eb0e7937a..54d582345 100644 --- a/docs/doxygen/html/search/pages_3.js +++ b/docs/doxygen/html/search/pages_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['numcpp_2350',['NumCpp',['../index.html',1,'']]] + ['release_20notes_2452',['Release Notes',['../md__c___github__num_cpp_docs_markdown__release_notes.html',1,'']]] ]; diff --git a/docs/doxygen/html/search/related_0.html b/docs/doxygen/html/search/related_0.html index fd2abf1b9..506aaecc0 100644 --- a/docs/doxygen/html/search/related_0.html +++ b/docs/doxygen/html/search/related_0.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/related_0.js b/docs/doxygen/html/search/related_0.js index a2b65f2c0..b3a963381 100644 --- a/docs/doxygen/html/search/related_0.js +++ b/docs/doxygen/html/search/related_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['operator_3c_3c_2337',['operator<<',['../classnc_1_1coordinates_1_1_coordinate.html#aa9e34ee6b7a8425e6af5a715935a4251',1,'nc::coordinates::Coordinate::operator<<()'],['../classnc_1_1coordinates_1_1_dec.html#a83e1fb757cb9153e02dcecd2a37976c1',1,'nc::coordinates::Dec::operator<<()'],['../classnc_1_1coordinates_1_1_r_a.html#aa7b5289b9d14da6e7b4393be2fddfc33',1,'nc::coordinates::RA::operator<<()'],['../classnc_1_1_shape.html#a520d818f31bbdacdf8cfbe6de9e88a28',1,'nc::Shape::operator<<()'],['../classnc_1_1_slice.html#ad6889d2df295fef3796aebb769b8cac0',1,'nc::Slice::operator<<()'],['../classnc_1_1image_processing_1_1_centroid.html#a787da1f79223e97a2788a2ad47e1c394',1,'nc::imageProcessing::Centroid::operator<<()'],['../classnc_1_1image_processing_1_1_cluster.html#a1b1adec296082d83ee2f87484bfe07cb',1,'nc::imageProcessing::Cluster::operator<<()'],['../classnc_1_1image_processing_1_1_pixel.html#a157a2e98ace3e2185af571a68e5a5b9c',1,'nc::imageProcessing::Pixel::operator<<()'],['../classnc_1_1polynomial_1_1_poly1d.html#a589d9ff132413fa86a20f2fa7910e5df',1,'nc::polynomial::Poly1d::operator<<()'],['../classnc_1_1rotations_1_1_quaternion.html#a6d11f3a719f010cdd220642d2bb586e6',1,'nc::rotations::Quaternion::operator<<()']]] + ['operator_3c_3c_2439',['operator<<',['../classnc_1_1coordinates_1_1_coordinate.html#aa9e34ee6b7a8425e6af5a715935a4251',1,'nc::coordinates::Coordinate::operator<<()'],['../classnc_1_1coordinates_1_1_dec.html#a83e1fb757cb9153e02dcecd2a37976c1',1,'nc::coordinates::Dec::operator<<()'],['../classnc_1_1coordinates_1_1_r_a.html#aa7b5289b9d14da6e7b4393be2fddfc33',1,'nc::coordinates::RA::operator<<()'],['../classnc_1_1_shape.html#a520d818f31bbdacdf8cfbe6de9e88a28',1,'nc::Shape::operator<<()'],['../classnc_1_1_slice.html#ad6889d2df295fef3796aebb769b8cac0',1,'nc::Slice::operator<<()'],['../classnc_1_1image_processing_1_1_centroid.html#a787da1f79223e97a2788a2ad47e1c394',1,'nc::imageProcessing::Centroid::operator<<()'],['../classnc_1_1image_processing_1_1_cluster.html#a1b1adec296082d83ee2f87484bfe07cb',1,'nc::imageProcessing::Cluster::operator<<()'],['../classnc_1_1image_processing_1_1_pixel.html#a157a2e98ace3e2185af571a68e5a5b9c',1,'nc::imageProcessing::Pixel::operator<<()'],['../classnc_1_1polynomial_1_1_poly1d.html#a589d9ff132413fa86a20f2fa7910e5df',1,'nc::polynomial::Poly1d::operator<<()'],['../classnc_1_1rotations_1_1_quaternion.html#a6d11f3a719f010cdd220642d2bb586e6',1,'nc::rotations::Quaternion::operator<<()']]] ]; diff --git a/docs/doxygen/html/search/searchdata.js b/docs/doxygen/html/search/searchdata.js index e4ee9d713..61c01ff30 100644 --- a/docs/doxygen/html/search/searchdata.js +++ b/docs/doxygen/html/search/searchdata.js @@ -1,9 +1,9 @@ var indexSectionsWithContent = { 0: "abcdefghijklmnopqrstuvwxyz~", - 1: "abcdfilnpqrstv", + 1: "abcdfgilnpqrstv", 2: "n", - 3: "abcdefghilmnopqrstuvwz", + 3: "abcdefghiklmnopqrstuvwz", 4: "abcdefghijklmnopqrstuvwxyz~", 5: "acdeghijmnprsvxyz", 6: "acdeiprstuv", @@ -11,7 +11,7 @@ var indexSectionsWithContent = 8: "bclmnprw", 9: "o", 10: "cst", - 11: "bcinr" + 11: "bcir" }; var indexSectionNames = diff --git a/docs/doxygen/html/search/typedefs_0.html b/docs/doxygen/html/search/typedefs_0.html index 96fc8469a..a4684c4ad 100644 --- a/docs/doxygen/html/search/typedefs_0.html +++ b/docs/doxygen/html/search/typedefs_0.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/typedefs_0.js b/docs/doxygen/html/search/typedefs_0.js index c36ba4429..4f14aaf59 100644 --- a/docs/doxygen/html/search/typedefs_0.js +++ b/docs/doxygen/html/search/typedefs_0.js @@ -1,4 +1,4 @@ var searchData= [ - ['allocator_5ftype_2292',['allocator_type',['../classnc_1_1_nd_array.html#a86488494684f55c32dd82e90b818f77e',1,'nc::NdArray']]] + ['allocator_5ftype_2394',['allocator_type',['../classnc_1_1_nd_array.html#a86488494684f55c32dd82e90b818f77e',1,'nc::NdArray']]] ]; diff --git a/docs/doxygen/html/search/typedefs_1.html b/docs/doxygen/html/search/typedefs_1.html index 8bab1725f..46cf01e62 100644 --- a/docs/doxygen/html/search/typedefs_1.html +++ b/docs/doxygen/html/search/typedefs_1.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/typedefs_1.js b/docs/doxygen/html/search/typedefs_1.js index 916104814..329efce54 100644 --- a/docs/doxygen/html/search/typedefs_1.js +++ b/docs/doxygen/html/search/typedefs_1.js @@ -1,11 +1,11 @@ var searchData= [ - ['chronoclock_2293',['ChronoClock',['../classnc_1_1_timer.html#a968ad8ca046ae73671e211e644682c8d',1,'nc::Timer']]], - ['column_5fiterator_2294',['column_iterator',['../classnc_1_1_nd_array.html#a379e1e1ed2a61de6aa44226679620d47',1,'nc::NdArray']]], - ['const_5fcolumn_5fiterator_2295',['const_column_iterator',['../classnc_1_1_nd_array.html#a1307cf472f722baa8850200dcb7a3a89',1,'nc::NdArray']]], - ['const_5fiterator_2296',['const_iterator',['../classnc_1_1_data_cube.html#a1ea7b9bd30731c3325545fbcd2678761',1,'nc::DataCube::const_iterator()'],['../classnc_1_1image_processing_1_1_cluster.html#a3b344c255dfcfcf18e0fc9f1e84979ae',1,'nc::imageProcessing::Cluster::const_iterator()'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a870aeb2f713b4efba22a2f978704c215',1,'nc::imageProcessing::ClusterMaker::const_iterator()'],['../classnc_1_1_nd_array.html#a49deeee0db98eae1c16ac6bca6fa6f31',1,'nc::NdArray::const_iterator()']]], - ['const_5fpointer_2297',['const_pointer',['../classnc_1_1_nd_array.html#a94982f81d8aa8c8a72abe0327f22b4dd',1,'nc::NdArray']]], - ['const_5freference_2298',['const_reference',['../classnc_1_1_nd_array.html#a2e9001eb3a7fb5b44f6400b3cc3b3222',1,'nc::NdArray']]], - ['const_5freverse_5fcolumn_5fiterator_2299',['const_reverse_column_iterator',['../classnc_1_1_nd_array.html#aa4f80e21b4b0f30ff98d1b90ae4fd70d',1,'nc::NdArray']]], - ['const_5freverse_5fiterator_2300',['const_reverse_iterator',['../classnc_1_1_nd_array.html#a6de6f2ef3b2519edd272623a9681b527',1,'nc::NdArray']]] + ['chronoclock_2395',['ChronoClock',['../classnc_1_1_timer.html#a968ad8ca046ae73671e211e644682c8d',1,'nc::Timer']]], + ['column_5fiterator_2396',['column_iterator',['../classnc_1_1_nd_array.html#a379e1e1ed2a61de6aa44226679620d47',1,'nc::NdArray']]], + ['const_5fcolumn_5fiterator_2397',['const_column_iterator',['../classnc_1_1_nd_array.html#a1307cf472f722baa8850200dcb7a3a89',1,'nc::NdArray']]], + ['const_5fiterator_2398',['const_iterator',['../classnc_1_1_data_cube.html#a1ea7b9bd30731c3325545fbcd2678761',1,'nc::DataCube::const_iterator()'],['../classnc_1_1image_processing_1_1_cluster.html#a3b344c255dfcfcf18e0fc9f1e84979ae',1,'nc::imageProcessing::Cluster::const_iterator()'],['../classnc_1_1image_processing_1_1_cluster_maker.html#a870aeb2f713b4efba22a2f978704c215',1,'nc::imageProcessing::ClusterMaker::const_iterator()'],['../classnc_1_1_nd_array.html#a49deeee0db98eae1c16ac6bca6fa6f31',1,'nc::NdArray::const_iterator()']]], + ['const_5fpointer_2399',['const_pointer',['../classnc_1_1_nd_array.html#a94982f81d8aa8c8a72abe0327f22b4dd',1,'nc::NdArray']]], + ['const_5freference_2400',['const_reference',['../classnc_1_1_nd_array.html#a2e9001eb3a7fb5b44f6400b3cc3b3222',1,'nc::NdArray']]], + ['const_5freverse_5fcolumn_5fiterator_2401',['const_reverse_column_iterator',['../classnc_1_1_nd_array.html#aa4f80e21b4b0f30ff98d1b90ae4fd70d',1,'nc::NdArray']]], + ['const_5freverse_5fiterator_2402',['const_reverse_iterator',['../classnc_1_1_nd_array.html#a6de6f2ef3b2519edd272623a9681b527',1,'nc::NdArray']]] ]; diff --git a/docs/doxygen/html/search/typedefs_2.html b/docs/doxygen/html/search/typedefs_2.html index 7aba79e5a..6835ee65b 100644 --- a/docs/doxygen/html/search/typedefs_2.html +++ b/docs/doxygen/html/search/typedefs_2.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/typedefs_2.js b/docs/doxygen/html/search/typedefs_2.js index 2ef8a3fa8..33cf59111 100644 --- a/docs/doxygen/html/search/typedefs_2.js +++ b/docs/doxygen/html/search/typedefs_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['difference_5ftype_2301',['difference_type',['../classnc_1_1_nd_array.html#a612cdd532e56b711ebb9c2478971c04f',1,'nc::NdArray::difference_type()'],['../classnc_1_1_nd_array_const_iterator.html#a16aa191e5615d641693ff077b56771ad',1,'nc::NdArrayConstIterator::difference_type()'],['../classnc_1_1_nd_array_iterator.html#a871a849294da1c7e7b99250008471138',1,'nc::NdArrayIterator::difference_type()'],['../classnc_1_1_nd_array_const_column_iterator.html#ad4e9c4a6df66608a4d6ea6e7608337ce',1,'nc::NdArrayConstColumnIterator::difference_type()'],['../classnc_1_1_nd_array_column_iterator.html#addc363984d95db8bed56843682372e44',1,'nc::NdArrayColumnIterator::difference_type()']]] + ['difference_5ftype_2403',['difference_type',['../classnc_1_1_nd_array.html#a612cdd532e56b711ebb9c2478971c04f',1,'nc::NdArray::difference_type()'],['../classnc_1_1_nd_array_const_iterator.html#a16aa191e5615d641693ff077b56771ad',1,'nc::NdArrayConstIterator::difference_type()'],['../classnc_1_1_nd_array_iterator.html#a871a849294da1c7e7b99250008471138',1,'nc::NdArrayIterator::difference_type()'],['../classnc_1_1_nd_array_const_column_iterator.html#ad4e9c4a6df66608a4d6ea6e7608337ce',1,'nc::NdArrayConstColumnIterator::difference_type()'],['../classnc_1_1_nd_array_column_iterator.html#addc363984d95db8bed56843682372e44',1,'nc::NdArrayColumnIterator::difference_type()']]] ]; diff --git a/docs/doxygen/html/search/typedefs_3.html b/docs/doxygen/html/search/typedefs_3.html index 643350c0c..017004765 100644 --- a/docs/doxygen/html/search/typedefs_3.html +++ b/docs/doxygen/html/search/typedefs_3.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/typedefs_3.js b/docs/doxygen/html/search/typedefs_3.js index 4fbae22b4..601a7aa25 100644 --- a/docs/doxygen/html/search/typedefs_3.js +++ b/docs/doxygen/html/search/typedefs_3.js @@ -1,4 +1,4 @@ var searchData= [ - ['enable_5fif_5ft_2302',['enable_if_t',['../namespacenc.html#ae6f8d4a50bd2b4254f00085e7f17ce01',1,'nc']]] + ['enable_5fif_5ft_2404',['enable_if_t',['../namespacenc.html#ae6f8d4a50bd2b4254f00085e7f17ce01',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/typedefs_4.html b/docs/doxygen/html/search/typedefs_4.html index 0e9086be6..81466a5d2 100644 --- a/docs/doxygen/html/search/typedefs_4.html +++ b/docs/doxygen/html/search/typedefs_4.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/typedefs_4.js b/docs/doxygen/html/search/typedefs_4.js index a89c0ef94..ea747e9b2 100644 --- a/docs/doxygen/html/search/typedefs_4.js +++ b/docs/doxygen/html/search/typedefs_4.js @@ -1,9 +1,9 @@ var searchData= [ - ['int16_2303',['int16',['../namespacenc.html#a8f5045ed0f0a08d87fd76d7a74ac128d',1,'nc']]], - ['int32_2304',['int32',['../namespacenc.html#a9386099a0fdc2bc9fb0dbfde5606584d',1,'nc']]], - ['int64_2305',['int64',['../namespacenc.html#a6223a7f3b0f7886036f64276f36c921e',1,'nc']]], - ['int8_2306',['int8',['../namespacenc.html#a0815baab2bc081f4250ba9cb1cf361b4',1,'nc']]], - ['iterator_2307',['iterator',['../classnc_1_1_data_cube.html#a623df8fc48ba169d221b1c26249e5853',1,'nc::DataCube::iterator()'],['../classnc_1_1_nd_array.html#a33ce0c581a22e809cfc5a79a534bf798',1,'nc::NdArray::iterator()']]], - ['iterator_5fcategory_2308',['iterator_category',['../classnc_1_1_nd_array_const_iterator.html#a17535e5dcb696923adaa626c86cc3c00',1,'nc::NdArrayConstIterator::iterator_category()'],['../classnc_1_1_nd_array_iterator.html#a7b2c0794eac54ab2c3847776a8383283',1,'nc::NdArrayIterator::iterator_category()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3ed61bf2a830e89fd8fbbb6efc2e7171',1,'nc::NdArrayConstColumnIterator::iterator_category()'],['../classnc_1_1_nd_array_column_iterator.html#a3785618b3936e835ccc15b39440f3da5',1,'nc::NdArrayColumnIterator::iterator_category()']]] + ['int16_2405',['int16',['../namespacenc.html#a8f5045ed0f0a08d87fd76d7a74ac128d',1,'nc']]], + ['int32_2406',['int32',['../namespacenc.html#a9386099a0fdc2bc9fb0dbfde5606584d',1,'nc']]], + ['int64_2407',['int64',['../namespacenc.html#a6223a7f3b0f7886036f64276f36c921e',1,'nc']]], + ['int8_2408',['int8',['../namespacenc.html#a0815baab2bc081f4250ba9cb1cf361b4',1,'nc']]], + ['iterator_2409',['iterator',['../classnc_1_1_data_cube.html#a623df8fc48ba169d221b1c26249e5853',1,'nc::DataCube::iterator()'],['../classnc_1_1_nd_array.html#a33ce0c581a22e809cfc5a79a534bf798',1,'nc::NdArray::iterator()']]], + ['iterator_5fcategory_2410',['iterator_category',['../classnc_1_1_nd_array_const_iterator.html#a17535e5dcb696923adaa626c86cc3c00',1,'nc::NdArrayConstIterator::iterator_category()'],['../classnc_1_1_nd_array_iterator.html#a7b2c0794eac54ab2c3847776a8383283',1,'nc::NdArrayIterator::iterator_category()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3ed61bf2a830e89fd8fbbb6efc2e7171',1,'nc::NdArrayConstColumnIterator::iterator_category()'],['../classnc_1_1_nd_array_column_iterator.html#a3785618b3936e835ccc15b39440f3da5',1,'nc::NdArrayColumnIterator::iterator_category()']]] ]; diff --git a/docs/doxygen/html/search/typedefs_5.html b/docs/doxygen/html/search/typedefs_5.html index cfd706941..43fbec1fe 100644 --- a/docs/doxygen/html/search/typedefs_5.html +++ b/docs/doxygen/html/search/typedefs_5.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/typedefs_5.js b/docs/doxygen/html/search/typedefs_5.js index c51dda5f2..c81166e30 100644 --- a/docs/doxygen/html/search/typedefs_5.js +++ b/docs/doxygen/html/search/typedefs_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['pointer_2309',['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()']]] + ['pointer_2411',['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()']]] ]; diff --git a/docs/doxygen/html/search/typedefs_6.html b/docs/doxygen/html/search/typedefs_6.html index fb1fd4fa4..99479c2d5 100644 --- a/docs/doxygen/html/search/typedefs_6.html +++ b/docs/doxygen/html/search/typedefs_6.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/typedefs_6.js b/docs/doxygen/html/search/typedefs_6.js index 4e7a270d5..7e26e3289 100644 --- a/docs/doxygen/html/search/typedefs_6.js +++ b/docs/doxygen/html/search/typedefs_6.js @@ -1,6 +1,6 @@ var searchData= [ - ['reference_2310',['reference',['../classnc_1_1_nd_array.html#adb4a1e1a3c3420c4b2133ba81a44a0e0',1,'nc::NdArray::reference()'],['../classnc_1_1_nd_array_const_iterator.html#aba1912cb4e7cc39898af1ea385847544',1,'nc::NdArrayConstIterator::reference()'],['../classnc_1_1_nd_array_iterator.html#a0782b66e4d3632cd4ce99333fe86d0a3',1,'nc::NdArrayIterator::reference()'],['../classnc_1_1_nd_array_const_column_iterator.html#a6903047bac2424843ca26ed9116abb77',1,'nc::NdArrayConstColumnIterator::reference()'],['../classnc_1_1_nd_array_column_iterator.html#aaccb5a94c10e92de24e5bc465c663305',1,'nc::NdArrayColumnIterator::reference()']]], - ['reverse_5fcolumn_5fiterator_2311',['reverse_column_iterator',['../classnc_1_1_nd_array.html#abc1bc6a854968940dac643396b2fb1b5',1,'nc::NdArray']]], - ['reverse_5fiterator_2312',['reverse_iterator',['../classnc_1_1_nd_array.html#a9987ced72f8182d4b55807c0177eab11',1,'nc::NdArray']]] + ['reference_2412',['reference',['../classnc_1_1_nd_array.html#adb4a1e1a3c3420c4b2133ba81a44a0e0',1,'nc::NdArray::reference()'],['../classnc_1_1_nd_array_const_iterator.html#aba1912cb4e7cc39898af1ea385847544',1,'nc::NdArrayConstIterator::reference()'],['../classnc_1_1_nd_array_iterator.html#a0782b66e4d3632cd4ce99333fe86d0a3',1,'nc::NdArrayIterator::reference()'],['../classnc_1_1_nd_array_const_column_iterator.html#a6903047bac2424843ca26ed9116abb77',1,'nc::NdArrayConstColumnIterator::reference()'],['../classnc_1_1_nd_array_column_iterator.html#aaccb5a94c10e92de24e5bc465c663305',1,'nc::NdArrayColumnIterator::reference()']]], + ['reverse_5fcolumn_5fiterator_2413',['reverse_column_iterator',['../classnc_1_1_nd_array.html#abc1bc6a854968940dac643396b2fb1b5',1,'nc::NdArray']]], + ['reverse_5fiterator_2414',['reverse_iterator',['../classnc_1_1_nd_array.html#a9987ced72f8182d4b55807c0177eab11',1,'nc::NdArray']]] ]; diff --git a/docs/doxygen/html/search/typedefs_7.html b/docs/doxygen/html/search/typedefs_7.html index b0aa9726f..9a825e0a2 100644 --- a/docs/doxygen/html/search/typedefs_7.html +++ b/docs/doxygen/html/search/typedefs_7.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/typedefs_7.js b/docs/doxygen/html/search/typedefs_7.js index 8d64d4d7b..64cf70d23 100644 --- a/docs/doxygen/html/search/typedefs_7.js +++ b/docs/doxygen/html/search/typedefs_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['size_5ftype_2313',['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_2415',['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()']]] ]; diff --git a/docs/doxygen/html/search/typedefs_8.html b/docs/doxygen/html/search/typedefs_8.html index 6126c6ff9..e968613ec 100644 --- a/docs/doxygen/html/search/typedefs_8.html +++ b/docs/doxygen/html/search/typedefs_8.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/typedefs_8.js b/docs/doxygen/html/search/typedefs_8.js index c0735bf6f..22af00e8d 100644 --- a/docs/doxygen/html/search/typedefs_8.js +++ b/docs/doxygen/html/search/typedefs_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['timepoint_2314',['TimePoint',['../classnc_1_1_timer.html#a29e54a50e709622942a33e70b1b1e8f6',1,'nc::Timer']]] + ['timepoint_2416',['TimePoint',['../classnc_1_1_timer.html#a29e54a50e709622942a33e70b1b1e8f6',1,'nc::Timer']]] ]; diff --git a/docs/doxygen/html/search/typedefs_9.html b/docs/doxygen/html/search/typedefs_9.html index c647c84ff..2e9153256 100644 --- a/docs/doxygen/html/search/typedefs_9.html +++ b/docs/doxygen/html/search/typedefs_9.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/typedefs_9.js b/docs/doxygen/html/search/typedefs_9.js index 47f098886..777189142 100644 --- a/docs/doxygen/html/search/typedefs_9.js +++ b/docs/doxygen/html/search/typedefs_9.js @@ -1,7 +1,7 @@ var searchData= [ - ['uint16_2315',['uint16',['../namespacenc.html#a8146518cf6c6a8029c3d84a376167793',1,'nc']]], - ['uint32_2316',['uint32',['../namespacenc.html#af0f49663fb63332596e2e6327009d581',1,'nc']]], - ['uint64_2317',['uint64',['../namespacenc.html#a773f8535ba713f886e9e1b8378f6d76d',1,'nc']]], - ['uint8_2318',['uint8',['../namespacenc.html#a9ba5a0aa26753a185985b8273fb9062d',1,'nc']]] + ['uint16_2417',['uint16',['../namespacenc.html#a8146518cf6c6a8029c3d84a376167793',1,'nc']]], + ['uint32_2418',['uint32',['../namespacenc.html#af0f49663fb63332596e2e6327009d581',1,'nc']]], + ['uint64_2419',['uint64',['../namespacenc.html#a773f8535ba713f886e9e1b8378f6d76d',1,'nc']]], + ['uint8_2420',['uint8',['../namespacenc.html#a9ba5a0aa26753a185985b8273fb9062d',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/typedefs_a.html b/docs/doxygen/html/search/typedefs_a.html index 3e904e453..bb6ac2a82 100644 --- a/docs/doxygen/html/search/typedefs_a.html +++ b/docs/doxygen/html/search/typedefs_a.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/typedefs_a.js b/docs/doxygen/html/search/typedefs_a.js index 26fbcf17d..f30ef019f 100644 --- a/docs/doxygen/html/search/typedefs_a.js +++ b/docs/doxygen/html/search/typedefs_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['value_5ftype_2319',['value_type',['../classnc_1_1_nd_array.html#aed76b0d590eff875e09a6f0d7968e7db',1,'nc::NdArray::value_type()'],['../classnc_1_1_nd_array_const_iterator.html#af4d3be6b1470162a26b34cdaa5a2addd',1,'nc::NdArrayConstIterator::value_type()'],['../classnc_1_1_nd_array_iterator.html#adeb90525f10a8bf2748dafbb2ea154dc',1,'nc::NdArrayIterator::value_type()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3b124e1120c2fb329dcb5d81abe39e1d',1,'nc::NdArrayConstColumnIterator::value_type()'],['../classnc_1_1_nd_array_column_iterator.html#a7191b7c13b188f2a0abaf8477f0bd2d4',1,'nc::NdArrayColumnIterator::value_type()']]] + ['value_5ftype_2421',['value_type',['../classnc_1_1_nd_array.html#aed76b0d590eff875e09a6f0d7968e7db',1,'nc::NdArray::value_type()'],['../classnc_1_1_nd_array_const_iterator.html#af4d3be6b1470162a26b34cdaa5a2addd',1,'nc::NdArrayConstIterator::value_type()'],['../classnc_1_1_nd_array_iterator.html#adeb90525f10a8bf2748dafbb2ea154dc',1,'nc::NdArrayIterator::value_type()'],['../classnc_1_1_nd_array_const_column_iterator.html#a3b124e1120c2fb329dcb5d81abe39e1d',1,'nc::NdArrayConstColumnIterator::value_type()'],['../classnc_1_1_nd_array_column_iterator.html#a7191b7c13b188f2a0abaf8477f0bd2d4',1,'nc::NdArrayColumnIterator::value_type()']]] ]; diff --git a/docs/doxygen/html/search/variables_0.html b/docs/doxygen/html/search/variables_0.html index 67493c603..1e477c08c 100644 --- a/docs/doxygen/html/search/variables_0.html +++ b/docs/doxygen/html/search/variables_0.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_0.js b/docs/doxygen/html/search/variables_0.js index 015ff738d..6ad8c6850 100644 --- a/docs/doxygen/html/search/variables_0.js +++ b/docs/doxygen/html/search/variables_0.js @@ -1,5 +1,5 @@ var searchData= [ - ['all_5farithmetic_5fv_2250',['all_arithmetic_v',['../namespacenc.html#a0b7796ffd2609d1e093207d8546e091a',1,'nc']]], - ['all_5fsame_5fv_2251',['all_same_v',['../namespacenc.html#ad3769ded44b203686d0a33dd6623e142',1,'nc']]] + ['all_5farithmetic_5fv_2351',['all_arithmetic_v',['../namespacenc.html#a0b7796ffd2609d1e093207d8546e091a',1,'nc']]], + ['all_5fsame_5fv_2352',['all_same_v',['../namespacenc.html#ad3769ded44b203686d0a33dd6623e142',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/variables_1.html b/docs/doxygen/html/search/variables_1.html index 44416bd1d..ea73d9a49 100644 --- a/docs/doxygen/html/search/variables_1.html +++ b/docs/doxygen/html/search/variables_1.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_1.js b/docs/doxygen/html/search/variables_1.js index 6b0613346..ed35ffb57 100644 --- a/docs/doxygen/html/search/variables_1.js +++ b/docs/doxygen/html/search/variables_1.js @@ -1,7 +1,7 @@ var searchData= [ - ['c_2252',['c',['../namespacenc_1_1constants.html#ac3fc62713ed109e451648c67faab7581',1,'nc::constants']]], - ['clusterid_2253',['clusterId',['../classnc_1_1image_processing_1_1_pixel.html#ac22936e8b5b80a1c557faaf9722b3183',1,'nc::imageProcessing::Pixel']]], - ['col_2254',['col',['../classnc_1_1image_processing_1_1_pixel.html#a6749c7a5513e2b7ee5c027aef104b269',1,'nc::imageProcessing::Pixel']]], - ['cols_2255',['cols',['../classnc_1_1_shape.html#aae1a3c997648aacaefb60d0e6d0bf10d',1,'nc::Shape']]] + ['c_2353',['c',['../namespacenc_1_1constants.html#ac3fc62713ed109e451648c67faab7581',1,'nc::constants']]], + ['clusterid_2354',['clusterId',['../classnc_1_1image_processing_1_1_pixel.html#ac22936e8b5b80a1c557faaf9722b3183',1,'nc::imageProcessing::Pixel']]], + ['col_2355',['col',['../classnc_1_1image_processing_1_1_pixel.html#a6749c7a5513e2b7ee5c027aef104b269',1,'nc::imageProcessing::Pixel']]], + ['cols_2356',['cols',['../classnc_1_1_shape.html#aae1a3c997648aacaefb60d0e6d0bf10d',1,'nc::Shape']]] ]; diff --git a/docs/doxygen/html/search/variables_10.html b/docs/doxygen/html/search/variables_10.html index 719e57837..dc9920b6d 100644 --- a/docs/doxygen/html/search/variables_10.html +++ b/docs/doxygen/html/search/variables_10.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_10.js b/docs/doxygen/html/search/variables_10.js index b27b1e700..4d93beaaf 100644 --- a/docs/doxygen/html/search/variables_10.js +++ b/docs/doxygen/html/search/variables_10.js @@ -1,4 +1,4 @@ var searchData= [ - ['z_2291',['z',['../classnc_1_1_vec3.html#a0896ee691f46ce0bd669b869fe6acb41',1,'nc::Vec3']]] + ['z_2393',['z',['../classnc_1_1_vec3.html#a0896ee691f46ce0bd669b869fe6acb41',1,'nc::Vec3']]] ]; diff --git a/docs/doxygen/html/search/variables_2.html b/docs/doxygen/html/search/variables_2.html index 117be3aec..0580462e9 100644 --- a/docs/doxygen/html/search/variables_2.html +++ b/docs/doxygen/html/search/variables_2.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_2.js b/docs/doxygen/html/search/variables_2.js index 6f3070d70..85d9d6870 100644 --- a/docs/doxygen/html/search/variables_2.js +++ b/docs/doxygen/html/search/variables_2.js @@ -1,4 +1,4 @@ var searchData= [ - ['days_5fper_5fweek_2256',['DAYS_PER_WEEK',['../namespacenc_1_1constants.html#a2c11c386e1a07a17f95122fc4630cbe9',1,'nc::constants']]] + ['days_5fper_5fweek_2357',['DAYS_PER_WEEK',['../namespacenc_1_1constants.html#a2c11c386e1a07a17f95122fc4630cbe9',1,'nc::constants']]] ]; diff --git a/docs/doxygen/html/search/variables_3.html b/docs/doxygen/html/search/variables_3.html index c583cd67d..0d69e7619 100644 --- a/docs/doxygen/html/search/variables_3.html +++ b/docs/doxygen/html/search/variables_3.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_3.js b/docs/doxygen/html/search/variables_3.js index cc5a03510..9de226180 100644 --- a/docs/doxygen/html/search/variables_3.js +++ b/docs/doxygen/html/search/variables_3.js @@ -1,5 +1,5 @@ var searchData= [ - ['e_2257',['e',['../namespacenc_1_1constants.html#aebabe96d6c2be3df3d71922b399e24c7',1,'nc::constants']]], - ['epsilon_5f_2258',['epsilon_',['../classnc_1_1roots_1_1_iteration.html#a5eafe219bb90f82da4ece84f012a411a',1,'nc::roots::Iteration']]] + ['e_2358',['e',['../namespacenc_1_1constants.html#aebabe96d6c2be3df3d71922b399e24c7',1,'nc::constants']]], + ['epsilon_5f_2359',['epsilon_',['../classnc_1_1roots_1_1_iteration.html#a5eafe219bb90f82da4ece84f012a411a',1,'nc::roots::Iteration']]] ]; diff --git a/docs/doxygen/html/search/variables_4.html b/docs/doxygen/html/search/variables_4.html index c78c42f2b..a4b6506bb 100644 --- a/docs/doxygen/html/search/variables_4.html +++ b/docs/doxygen/html/search/variables_4.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_4.js b/docs/doxygen/html/search/variables_4.js index f7013b19b..d4ac1d60a 100644 --- a/docs/doxygen/html/search/variables_4.js +++ b/docs/doxygen/html/search/variables_4.js @@ -1,4 +1,5 @@ var searchData= [ - ['generator_5f_2259',['generator_',['../namespacenc_1_1random.html#aa541047e6b742f1c5251e72f3b7aec95',1,'nc::random']]] + ['generator_5f_2360',['generator_',['../namespacenc_1_1random.html#aa541047e6b742f1c5251e72f3b7aec95',1,'nc::random']]], + ['greaterthan_5fv_2361',['greaterThan_v',['../namespacenc.html#a4cdb8bc70afcd7483d200f235181471c',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/variables_5.html b/docs/doxygen/html/search/variables_5.html index 2fc8b5efa..7e345d16c 100644 --- a/docs/doxygen/html/search/variables_5.html +++ b/docs/doxygen/html/search/variables_5.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_5.js b/docs/doxygen/html/search/variables_5.js index c297adbb1..384244540 100644 --- a/docs/doxygen/html/search/variables_5.js +++ b/docs/doxygen/html/search/variables_5.js @@ -1,4 +1,4 @@ var searchData= [ - ['hours_5fper_5fday_2260',['HOURS_PER_DAY',['../namespacenc_1_1constants.html#aef903b1f40001bc712b61f5dec7de716',1,'nc::constants']]] + ['hours_5fper_5fday_2362',['HOURS_PER_DAY',['../namespacenc_1_1constants.html#aef903b1f40001bc712b61f5dec7de716',1,'nc::constants']]] ]; diff --git a/docs/doxygen/html/search/variables_6.html b/docs/doxygen/html/search/variables_6.html index d47102084..7d48e75e2 100644 --- a/docs/doxygen/html/search/variables_6.html +++ b/docs/doxygen/html/search/variables_6.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_6.js b/docs/doxygen/html/search/variables_6.js index 33476e553..66b84bbd7 100644 --- a/docs/doxygen/html/search/variables_6.js +++ b/docs/doxygen/html/search/variables_6.js @@ -1,11 +1,11 @@ var searchData= [ - ['inf_2261',['inf',['../namespacenc_1_1constants.html#a4649bfc00f6360ccda3b3f9316e2dc0e',1,'nc::constants']]], - ['intensity_2262',['intensity',['../classnc_1_1image_processing_1_1_pixel.html#a2ffea8fff18945da4971ab4c847a49bd',1,'nc::imageProcessing::Pixel']]], - ['is_5farithmetic_5fv_2263',['is_arithmetic_v',['../namespacenc.html#ad5ef02185c876c1c30e12824c3b9aba5',1,'nc']]], - ['is_5fcomplex_5fv_2264',['is_complex_v',['../namespacenc.html#af8be3598b0e2894429842d64d3ce4050',1,'nc']]], - ['is_5ffloating_5fpoint_5fv_2265',['is_floating_point_v',['../namespacenc.html#a33d8e465a48ee094f340d8a5bab416bd',1,'nc']]], - ['is_5fintegral_5fv_2266',['is_integral_v',['../namespacenc.html#a157cdac039a66a88d2aa922781d060f6',1,'nc']]], - ['is_5fsame_5fv_2267',['is_same_v',['../namespacenc.html#a04829dab261829c5ee2570febfa287eb',1,'nc']]], - ['is_5fvalid_5fdtype_5fv_2268',['is_valid_dtype_v',['../namespacenc.html#aae4eab83016ec7dcaa7d78b6d1e78481',1,'nc']]] + ['inf_2363',['inf',['../namespacenc_1_1constants.html#a4649bfc00f6360ccda3b3f9316e2dc0e',1,'nc::constants']]], + ['intensity_2364',['intensity',['../classnc_1_1image_processing_1_1_pixel.html#a2ffea8fff18945da4971ab4c847a49bd',1,'nc::imageProcessing::Pixel']]], + ['is_5farithmetic_5fv_2365',['is_arithmetic_v',['../namespacenc.html#ad5ef02185c876c1c30e12824c3b9aba5',1,'nc']]], + ['is_5fcomplex_5fv_2366',['is_complex_v',['../namespacenc.html#af8be3598b0e2894429842d64d3ce4050',1,'nc']]], + ['is_5ffloating_5fpoint_5fv_2367',['is_floating_point_v',['../namespacenc.html#a33d8e465a48ee094f340d8a5bab416bd',1,'nc']]], + ['is_5fintegral_5fv_2368',['is_integral_v',['../namespacenc.html#a157cdac039a66a88d2aa922781d060f6',1,'nc']]], + ['is_5fsame_5fv_2369',['is_same_v',['../namespacenc.html#a04829dab261829c5ee2570febfa287eb',1,'nc']]], + ['is_5fvalid_5fdtype_5fv_2370',['is_valid_dtype_v',['../namespacenc.html#aae4eab83016ec7dcaa7d78b6d1e78481',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/variables_7.html b/docs/doxygen/html/search/variables_7.html index e6f8bf8cb..5c2634092 100644 --- a/docs/doxygen/html/search/variables_7.html +++ b/docs/doxygen/html/search/variables_7.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_7.js b/docs/doxygen/html/search/variables_7.js index 66099500b..d5f787fe0 100644 --- a/docs/doxygen/html/search/variables_7.js +++ b/docs/doxygen/html/search/variables_7.js @@ -1,4 +1,4 @@ var searchData= [ - ['j_2269',['j',['../namespacenc_1_1constants.html#a0e933571f05ee6af915fc327260517e9',1,'nc::constants']]] + ['j_2371',['j',['../namespacenc_1_1constants.html#a0e933571f05ee6af915fc327260517e9',1,'nc::constants']]] ]; diff --git a/docs/doxygen/html/search/variables_8.html b/docs/doxygen/html/search/variables_8.html index 3b3de0a50..dc9ec54a5 100644 --- a/docs/doxygen/html/search/variables_8.html +++ b/docs/doxygen/html/search/variables_8.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_8.js b/docs/doxygen/html/search/variables_8.js index 714a189c5..b54ab571e 100644 --- a/docs/doxygen/html/search/variables_8.js +++ b/docs/doxygen/html/search/variables_8.js @@ -1,8 +1,8 @@ var searchData= [ - ['maxnumiterations_5f_2270',['maxNumIterations_',['../classnc_1_1roots_1_1_iteration.html#a9b1c4ea8cf91c5308020c105293b4a02',1,'nc::roots::Iteration']]], - ['milliseconds_5fper_5fday_2271',['MILLISECONDS_PER_DAY',['../namespacenc_1_1constants.html#a2838aa56f95be8020a326aa6b9ba5c68',1,'nc::constants']]], - ['milliseconds_5fper_5fsecond_2272',['MILLISECONDS_PER_SECOND',['../namespacenc_1_1constants.html#a4373df6d6df75334290f4240f174aeb0',1,'nc::constants']]], - ['minutes_5fper_5fday_2273',['MINUTES_PER_DAY',['../namespacenc_1_1constants.html#aa018ab3bca299694899f51683d5b3c0f',1,'nc::constants']]], - ['minutes_5fper_5fhour_2274',['MINUTES_PER_HOUR',['../namespacenc_1_1constants.html#a84dfb71171d2a19b89afea89be57bc52',1,'nc::constants']]] + ['maxnumiterations_5f_2372',['maxNumIterations_',['../classnc_1_1roots_1_1_iteration.html#a9b1c4ea8cf91c5308020c105293b4a02',1,'nc::roots::Iteration']]], + ['milliseconds_5fper_5fday_2373',['MILLISECONDS_PER_DAY',['../namespacenc_1_1constants.html#a2838aa56f95be8020a326aa6b9ba5c68',1,'nc::constants']]], + ['milliseconds_5fper_5fsecond_2374',['MILLISECONDS_PER_SECOND',['../namespacenc_1_1constants.html#a4373df6d6df75334290f4240f174aeb0',1,'nc::constants']]], + ['minutes_5fper_5fday_2375',['MINUTES_PER_DAY',['../namespacenc_1_1constants.html#aa018ab3bca299694899f51683d5b3c0f',1,'nc::constants']]], + ['minutes_5fper_5fhour_2376',['MINUTES_PER_HOUR',['../namespacenc_1_1constants.html#a84dfb71171d2a19b89afea89be57bc52',1,'nc::constants']]] ]; diff --git a/docs/doxygen/html/search/variables_9.html b/docs/doxygen/html/search/variables_9.html index 803220a03..7b0147509 100644 --- a/docs/doxygen/html/search/variables_9.html +++ b/docs/doxygen/html/search/variables_9.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_9.js b/docs/doxygen/html/search/variables_9.js index 4e1d500a6..4ed1a7200 100644 --- a/docs/doxygen/html/search/variables_9.js +++ b/docs/doxygen/html/search/variables_9.js @@ -1,5 +1,5 @@ var searchData= [ - ['nan_2275',['nan',['../namespacenc_1_1constants.html#af94758715a9a5157d7ca95ab89d390ac',1,'nc::constants']]], - ['numiterations_5f_2276',['numIterations_',['../classnc_1_1roots_1_1_iteration.html#a84d7f2f7412d1f54861edeacc7bc0c20',1,'nc::roots::Iteration']]] + ['nan_2377',['nan',['../namespacenc_1_1constants.html#af94758715a9a5157d7ca95ab89d390ac',1,'nc::constants']]], + ['numiterations_5f_2378',['numIterations_',['../classnc_1_1roots_1_1_iteration.html#a84d7f2f7412d1f54861edeacc7bc0c20',1,'nc::roots::Iteration']]] ]; diff --git a/docs/doxygen/html/search/variables_a.html b/docs/doxygen/html/search/variables_a.html index 0f55e75b5..52a724d19 100644 --- a/docs/doxygen/html/search/variables_a.html +++ b/docs/doxygen/html/search/variables_a.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_a.js b/docs/doxygen/html/search/variables_a.js index 5fc649c09..72eb901ca 100644 --- a/docs/doxygen/html/search/variables_a.js +++ b/docs/doxygen/html/search/variables_a.js @@ -1,4 +1,4 @@ var searchData= [ - ['pi_2277',['pi',['../namespacenc_1_1constants.html#a2f1219a120c9cc1434486d9de75a8221',1,'nc::constants']]] + ['pi_2379',['pi',['../namespacenc_1_1constants.html#a2f1219a120c9cc1434486d9de75a8221',1,'nc::constants']]] ]; diff --git a/docs/doxygen/html/search/variables_b.html b/docs/doxygen/html/search/variables_b.html index 44d030c83..f376b27af 100644 --- a/docs/doxygen/html/search/variables_b.html +++ b/docs/doxygen/html/search/variables_b.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_b.js b/docs/doxygen/html/search/variables_b.js index 511b8cc32..6c0f7fa19 100644 --- a/docs/doxygen/html/search/variables_b.js +++ b/docs/doxygen/html/search/variables_b.js @@ -1,5 +1,5 @@ var searchData= [ - ['row_2278',['row',['../classnc_1_1image_processing_1_1_pixel.html#a6e712ef3b6547f5cafb6e8db1349658e',1,'nc::imageProcessing::Pixel']]], - ['rows_2279',['rows',['../classnc_1_1_shape.html#a6f89f699dea6eb89eef19e00c92b223a',1,'nc::Shape']]] + ['row_2380',['row',['../classnc_1_1image_processing_1_1_pixel.html#a6e712ef3b6547f5cafb6e8db1349658e',1,'nc::imageProcessing::Pixel']]], + ['rows_2381',['rows',['../classnc_1_1_shape.html#a6f89f699dea6eb89eef19e00c92b223a',1,'nc::Shape']]] ]; diff --git a/docs/doxygen/html/search/variables_c.html b/docs/doxygen/html/search/variables_c.html index aa86a08b1..6019eba96 100644 --- a/docs/doxygen/html/search/variables_c.html +++ b/docs/doxygen/html/search/variables_c.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_c.js b/docs/doxygen/html/search/variables_c.js index 3d1a333c6..99d436226 100644 --- a/docs/doxygen/html/search/variables_c.js +++ b/docs/doxygen/html/search/variables_c.js @@ -1,10 +1,10 @@ var searchData= [ - ['seconds_5fper_5fday_2280',['SECONDS_PER_DAY',['../namespacenc_1_1constants.html#a766ec3bf1f6fb57f586f943cea1946c3',1,'nc::constants']]], - ['seconds_5fper_5fhour_2281',['SECONDS_PER_HOUR',['../namespacenc_1_1constants.html#ad635a54557e853e1ee098d0ead5f1902',1,'nc::constants']]], - ['seconds_5fper_5fminute_2282',['SECONDS_PER_MINUTE',['../namespacenc_1_1constants.html#ad89620cbdf9102f40ec7c0fd52c16a5e',1,'nc::constants']]], - ['seconds_5fper_5fweek_2283',['SECONDS_PER_WEEK',['../namespacenc_1_1constants.html#ac36cac5f19ce5f81b2acc562f247f0be',1,'nc::constants']]], - ['start_2284',['start',['../classnc_1_1_slice.html#a36ddb261d9057db4a9794b4fc46e9d3f',1,'nc::Slice']]], - ['step_2285',['step',['../classnc_1_1_slice.html#a112855a11aa1737b7859e3d63feb09c4',1,'nc::Slice']]], - ['stop_2286',['stop',['../classnc_1_1_slice.html#ac2d72f4ca003ed645bc82efcafee87f5',1,'nc::Slice']]] + ['seconds_5fper_5fday_2382',['SECONDS_PER_DAY',['../namespacenc_1_1constants.html#a766ec3bf1f6fb57f586f943cea1946c3',1,'nc::constants']]], + ['seconds_5fper_5fhour_2383',['SECONDS_PER_HOUR',['../namespacenc_1_1constants.html#ad635a54557e853e1ee098d0ead5f1902',1,'nc::constants']]], + ['seconds_5fper_5fminute_2384',['SECONDS_PER_MINUTE',['../namespacenc_1_1constants.html#ad89620cbdf9102f40ec7c0fd52c16a5e',1,'nc::constants']]], + ['seconds_5fper_5fweek_2385',['SECONDS_PER_WEEK',['../namespacenc_1_1constants.html#ac36cac5f19ce5f81b2acc562f247f0be',1,'nc::constants']]], + ['start_2386',['start',['../classnc_1_1_slice.html#a36ddb261d9057db4a9794b4fc46e9d3f',1,'nc::Slice']]], + ['step_2387',['step',['../classnc_1_1_slice.html#a112855a11aa1737b7859e3d63feb09c4',1,'nc::Slice']]], + ['stop_2388',['stop',['../classnc_1_1_slice.html#ac2d72f4ca003ed645bc82efcafee87f5',1,'nc::Slice']]] ]; diff --git a/docs/doxygen/html/search/variables_d.html b/docs/doxygen/html/search/variables_d.html index 17d25e040..f61ae7511 100644 --- a/docs/doxygen/html/search/variables_d.html +++ b/docs/doxygen/html/search/variables_d.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_d.js b/docs/doxygen/html/search/variables_d.js index b974c1215..fcf28212a 100644 --- a/docs/doxygen/html/search/variables_d.js +++ b/docs/doxygen/html/search/variables_d.js @@ -1,5 +1,5 @@ var searchData= [ - ['value_2287',['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()'],['../structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html#a02b49e4936f586c2407c089400ee891f',1,'nc::all_same< T1, T2 >::value()'],['../structnc_1_1is__valid__dtype.html#af383f42b2b624cc161c1748b98cc541e',1,'nc::is_valid_dtype::value()'],['../structnc_1_1is__complex.html#a273a78ae8b41cf81e633f259204ce5dd',1,'nc::is_complex::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()']]], - ['version_2288',['VERSION',['../namespacenc.html#a8fa2b5de82ba40f346d1ba1e3ad0397a',1,'nc']]] + ['value_2389',['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()'],['../structnc_1_1all__same_3_01_t1_00_01_t2_01_4.html#a02b49e4936f586c2407c089400ee891f',1,'nc::all_same< T1, T2 >::value()'],['../structnc_1_1is__valid__dtype.html#af383f42b2b624cc161c1748b98cc541e',1,'nc::is_valid_dtype::value()'],['../structnc_1_1is__complex.html#a273a78ae8b41cf81e633f259204ce5dd',1,'nc::is_complex::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_1greater_than.html#a6664c509bb1b73d1547aeffa4ea2afec',1,'nc::greaterThan::value()']]], + ['version_2390',['VERSION',['../namespacenc.html#a8fa2b5de82ba40f346d1ba1e3ad0397a',1,'nc']]] ]; diff --git a/docs/doxygen/html/search/variables_e.html b/docs/doxygen/html/search/variables_e.html index 0b5f5700f..7bfd37215 100644 --- a/docs/doxygen/html/search/variables_e.html +++ b/docs/doxygen/html/search/variables_e.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_e.js b/docs/doxygen/html/search/variables_e.js index b9ef18eea..eb6afdefd 100644 --- a/docs/doxygen/html/search/variables_e.js +++ b/docs/doxygen/html/search/variables_e.js @@ -1,4 +1,4 @@ var searchData= [ - ['x_2289',['x',['../classnc_1_1_vec2.html#a36a67b9395b397e1b8e9364a39a5c458',1,'nc::Vec2::x()'],['../classnc_1_1_vec3.html#a7f71dd08d58a1327739de6041e3362bb',1,'nc::Vec3::x()']]] + ['x_2391',['x',['../classnc_1_1_vec2.html#a36a67b9395b397e1b8e9364a39a5c458',1,'nc::Vec2::x()'],['../classnc_1_1_vec3.html#a7f71dd08d58a1327739de6041e3362bb',1,'nc::Vec3::x()']]] ]; diff --git a/docs/doxygen/html/search/variables_f.html b/docs/doxygen/html/search/variables_f.html index e034bd28f..d97920d08 100644 --- a/docs/doxygen/html/search/variables_f.html +++ b/docs/doxygen/html/search/variables_f.html @@ -2,7 +2,7 @@ - + diff --git a/docs/doxygen/html/search/variables_f.js b/docs/doxygen/html/search/variables_f.js index f02508e1a..b733678d0 100644 --- a/docs/doxygen/html/search/variables_f.js +++ b/docs/doxygen/html/search/variables_f.js @@ -1,4 +1,4 @@ var searchData= [ - ['y_2290',['y',['../classnc_1_1_vec2.html#ad7a5bc1612f92f7e49112cf58caeaace',1,'nc::Vec2::y()'],['../classnc_1_1_vec3.html#a969dd1c195f4c78fc3a93292391e29c1',1,'nc::Vec3::y()']]] + ['y_2392',['y',['../classnc_1_1_vec2.html#ad7a5bc1612f92f7e49112cf58caeaace',1,'nc::Vec2::y()'],['../classnc_1_1_vec3.html#a969dd1c195f4c78fc3a93292391e29c1',1,'nc::Vec3::y()']]] ]; diff --git a/docs/doxygen/html/select_8hpp.html b/docs/doxygen/html/select_8hpp.html new file mode 100644 index 000000000..e03a7d7d9 --- /dev/null +++ b/docs/doxygen/html/select_8hpp.html @@ -0,0 +1,136 @@ + + + + + + + +NumCpp: select.hpp File Reference + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
select.hpp File Reference
+
+
+
#include "NumCpp/NdArray.hpp"
+#include "NumCpp/Core/Shape.hpp"
+#include "NumCpp/Core/Internal/Error.hpp"
+#include <cstdlib>
+#include <initializer_list>
+#include <limits>
+#include <vector>
+
+

Go to the source code of this file.

+ + + + +

+Namespaces

 nc
 
+ + + + + + + +

+Functions

template<typename dtype >
NdArray< dtype > nc::select (const std::vector< const NdArray< bool > * > &condVec, const std::vector< const NdArray< dtype > * > &choiceVec, dtype defaultValue=dtype{0})
 
template<typename dtype >
NdArray< dtype > nc::select (const std::vector< NdArray< bool >> &condList, const std::vector< NdArray< dtype >> &choiceList, dtype defaultValue=dtype{0})
 
+

Detailed Description

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

License Copyright 2018-2022 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 Functions for working with NdArrays

+
+
+ + + + diff --git a/docs/doxygen/html/select_8hpp.js b/docs/doxygen/html/select_8hpp.js new file mode 100644 index 000000000..6e78178d3 --- /dev/null +++ b/docs/doxygen/html/select_8hpp.js @@ -0,0 +1,5 @@ +var select_8hpp = +[ + [ "select", "select_8hpp.html#aab95eb9e265a3daf251b7e1926a42dac", null ], + [ "select", "select_8hpp.html#acbb2b67807944a713b19844d2fe3dcc6", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/select_8hpp_source.html b/docs/doxygen/html/select_8hpp_source.html new file mode 100644 index 000000000..8128db6f9 --- /dev/null +++ b/docs/doxygen/html/select_8hpp_source.html @@ -0,0 +1,216 @@ + + + + + + + +NumCpp: select.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
select.hpp
+
+
+Go to the documentation of this file.
1 #pragma once
+
29 
+
30 #include "NumCpp/NdArray.hpp"
+
31 #include "NumCpp/Core/Shape.hpp"
+ +
33 
+
34 #include <cstdlib>
+
35 #include <initializer_list>
+
36 #include <limits>
+
37 #include <vector>
+
38 
+
39 namespace nc
+
40 {
+
41  //============================================================================
+
42  // Method Description:
+
55  template<typename dtype>
+
56  NdArray<dtype> select(const std::vector<const NdArray<bool>*>& condVec,
+
57  const std::vector<const NdArray<dtype>*>& choiceVec, dtype defaultValue = dtype{0})
+
58  {
+
59  if (choiceVec.size() != condVec.size())
+
60  {
+
61  THROW_INVALID_ARGUMENT_ERROR("condVec and choiceVec need to be the same size");
+
62  }
+
63 
+
64  if (choiceVec.size() == 0)
+
65  {
+
66  THROW_INVALID_ARGUMENT_ERROR("choiceVec is size 0");
+
67  }
+
68 
+
69  auto theShape = condVec.front()->shape();
+
70  for (const auto cond : condVec)
+
71  {
+
72  const auto& theCond = *cond;
+
73  if (theCond.shape() != theShape)
+
74  {
+
75  THROW_INVALID_ARGUMENT_ERROR("all NdArrays of the condVec must be the same shape");
+
76  }
+
77  }
+
78 
+
79  for (const auto choice : choiceVec)
+
80  {
+
81  const auto& theChoice = *choice;
+
82  if (theChoice.shape() != theShape)
+
83  {
+
84  THROW_INVALID_ARGUMENT_ERROR("all NdArrays of the choiceVec must be the same shape, and the same as condVec");
+
85  }
+
86  }
+
87 
+
88  using size_type = typename NdArray<dtype>::size_type;
+
89  constexpr auto nullChoice = std::numeric_limits<size_type>::max();
+
90 
+
91  NdArray<size_type> choiceIndices(theShape);
+
92  choiceIndices.fill(nullChoice);
+
93  for (size_type condIdx = 0; condIdx < condVec.size(); ++condIdx)
+
94  {
+
95  const auto& theCond = *condVec[condIdx];
+
96  for (size_type i = 0; i < theCond.size(); ++i)
+
97  {
+
98  if (theCond[i] && choiceIndices[i] == nullChoice)
+
99  {
+
100  choiceIndices[i] = condIdx;
+
101  }
+
102  }
+
103  }
+
104 
+
105  NdArray<dtype> result(theShape);
+
106  result.fill(defaultValue);
+
107  for (size_type i = 0; i < choiceIndices.size(); ++i)
+
108  {
+
109  const auto choiceIndex = choiceIndices[i];
+
110  if (choiceIndex != nullChoice)
+
111  {
+
112  const auto& theChoice = *choiceVec[choiceIndex];
+
113  result[i] = theChoice[i];
+
114  }
+
115  }
+
116 
+
117  return result;
+
118  }
+
119 
+
120  //============================================================================
+
121  // Method Description:
+
134  template<typename dtype>
+
135  NdArray<dtype> select(const std::vector<NdArray<bool>>& condList,
+
136  const std::vector<NdArray<dtype>>& choiceList,
+
137  dtype defaultValue = dtype{0})
+
138  {
+
139  std::vector<const NdArray<bool>*> condVec;
+
140  condVec.reserve(condList.size());
+
141  for (auto& cond : condList)
+
142  {
+
143  condVec.push_back(&cond);
+
144  }
+
145 
+
146  std::vector<const NdArray<dtype>*> choiceVec;
+
147  choiceVec.reserve(choiceList.size());
+
148  for (auto& choice : choiceList)
+
149  {
+
150  choiceVec.push_back(&choice);
+
151  }
+
152 
+
153  return select(condVec, choiceVec, defaultValue);
+
154  }
+
155 } // namespace nc
+ + +
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition: Error.hpp:36
+ +
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:72
+
uint32 size_type
Definition: NdArrayCore.hpp:87
+
dtype choice(const NdArray< dtype > &inArray)
Definition: choice.hpp:51
+
Definition: Coordinate.hpp:45
+
NdArray< dtype > max(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition: max.hpp:44
+
NdArray< dtype > select(const std::vector< const NdArray< bool > * > &condVec, const std::vector< const NdArray< dtype > * > &choiceVec, dtype defaultValue=dtype{0})
Definition: select.hpp:56
+
+
+ + + + diff --git a/docs/doxygen/html/setdiff1d_8hpp.html b/docs/doxygen/html/setdiff1d_8hpp.html index ee6fb6fdd..f310640f9 100644 --- a/docs/doxygen/html/setdiff1d_8hpp.html +++ b/docs/doxygen/html/setdiff1d_8hpp.html @@ -3,7 +3,7 @@ - + NumCpp: setdiff1d.hpp File Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - + + + + + + + + + + + + + +
+
+ + + + + + + +
+
NumCpp +  2.7.0 +
+
A Templatized Header Only C++ Implementation of the Python NumPy Library
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
nc::greaterThan< Value1, Value2 > Struct Template Reference
+
+
+ +

#include <TypeTraits.hpp>

+ + + + +

+Static Public Attributes

static constexpr bool value = Value1 > Value2
 
+

Detailed Description

+

template<std::size_t Value1, std::size_t Value2>
+struct nc::greaterThan< Value1, Value2 >

+ +

type trait to test if one value is larger than another at compile time

+

Field Documentation

+ +

◆ value

+ +
+
+
+template<std::size_t Value1, std::size_t Value2>
+ + + + + +
+ + + + +
constexpr bool nc::greaterThan< Value1, Value2 >::value = Value1 > Value2
+
+staticconstexpr
+
+ +
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + diff --git a/docs/doxygen/html/structnc_1_1greater_than.js b/docs/doxygen/html/structnc_1_1greater_than.js new file mode 100644 index 000000000..dbb6a3aeb --- /dev/null +++ b/docs/doxygen/html/structnc_1_1greater_than.js @@ -0,0 +1,4 @@ +var structnc_1_1greater_than = +[ + [ "value", "structnc_1_1greater_than.html#a6664c509bb1b73d1547aeffa4ea2afec", null ] +]; \ No newline at end of file diff --git a/docs/doxygen/html/structnc_1_1is__complex.html b/docs/doxygen/html/structnc_1_1is__complex.html index 4b80fe4b4..15e3a05c8 100644 --- a/docs/doxygen/html/structnc_1_1is__complex.html +++ b/docs/doxygen/html/structnc_1_1is__complex.html @@ -3,7 +3,7 @@ - + NumCpp: nc::is_complex< T > Struct Template Reference @@ -28,7 +28,7 @@ Logo
NumCpp -  2.6.2 +  2.7.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
@@ -37,7 +37,7 @@ - +