tomoto 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +123 -0
- data/ext/tomoto/ext.cpp +245 -0
- data/ext/tomoto/extconf.rb +28 -0
- data/lib/tomoto.rb +12 -0
- data/lib/tomoto/ct.rb +11 -0
- data/lib/tomoto/hdp.rb +11 -0
- data/lib/tomoto/lda.rb +67 -0
- data/lib/tomoto/version.rb +3 -0
- data/vendor/EigenRand/EigenRand/Core.h +1139 -0
- data/vendor/EigenRand/EigenRand/Dists/Basic.h +111 -0
- data/vendor/EigenRand/EigenRand/Dists/Discrete.h +877 -0
- data/vendor/EigenRand/EigenRand/Dists/GammaPoisson.h +108 -0
- data/vendor/EigenRand/EigenRand/Dists/NormalExp.h +626 -0
- data/vendor/EigenRand/EigenRand/EigenRand +19 -0
- data/vendor/EigenRand/EigenRand/Macro.h +24 -0
- data/vendor/EigenRand/EigenRand/MorePacketMath.h +978 -0
- data/vendor/EigenRand/EigenRand/PacketFilter.h +286 -0
- data/vendor/EigenRand/EigenRand/PacketRandomEngine.h +624 -0
- data/vendor/EigenRand/EigenRand/RandUtils.h +413 -0
- data/vendor/EigenRand/EigenRand/doc.h +220 -0
- data/vendor/EigenRand/LICENSE +21 -0
- data/vendor/EigenRand/README.md +288 -0
- data/vendor/eigen/COPYING.BSD +26 -0
- data/vendor/eigen/COPYING.GPL +674 -0
- data/vendor/eigen/COPYING.LGPL +502 -0
- data/vendor/eigen/COPYING.MINPACK +52 -0
- data/vendor/eigen/COPYING.MPL2 +373 -0
- data/vendor/eigen/COPYING.README +18 -0
- data/vendor/eigen/Eigen/CMakeLists.txt +19 -0
- data/vendor/eigen/Eigen/Cholesky +46 -0
- data/vendor/eigen/Eigen/CholmodSupport +48 -0
- data/vendor/eigen/Eigen/Core +537 -0
- data/vendor/eigen/Eigen/Dense +7 -0
- data/vendor/eigen/Eigen/Eigen +2 -0
- data/vendor/eigen/Eigen/Eigenvalues +61 -0
- data/vendor/eigen/Eigen/Geometry +62 -0
- data/vendor/eigen/Eigen/Householder +30 -0
- data/vendor/eigen/Eigen/IterativeLinearSolvers +48 -0
- data/vendor/eigen/Eigen/Jacobi +33 -0
- data/vendor/eigen/Eigen/LU +50 -0
- data/vendor/eigen/Eigen/MetisSupport +35 -0
- data/vendor/eigen/Eigen/OrderingMethods +73 -0
- data/vendor/eigen/Eigen/PaStiXSupport +48 -0
- data/vendor/eigen/Eigen/PardisoSupport +35 -0
- data/vendor/eigen/Eigen/QR +51 -0
- data/vendor/eigen/Eigen/QtAlignedMalloc +40 -0
- data/vendor/eigen/Eigen/SPQRSupport +34 -0
- data/vendor/eigen/Eigen/SVD +51 -0
- data/vendor/eigen/Eigen/Sparse +36 -0
- data/vendor/eigen/Eigen/SparseCholesky +45 -0
- data/vendor/eigen/Eigen/SparseCore +69 -0
- data/vendor/eigen/Eigen/SparseLU +46 -0
- data/vendor/eigen/Eigen/SparseQR +37 -0
- data/vendor/eigen/Eigen/StdDeque +27 -0
- data/vendor/eigen/Eigen/StdList +26 -0
- data/vendor/eigen/Eigen/StdVector +27 -0
- data/vendor/eigen/Eigen/SuperLUSupport +64 -0
- data/vendor/eigen/Eigen/UmfPackSupport +40 -0
- data/vendor/eigen/Eigen/src/Cholesky/LDLT.h +673 -0
- data/vendor/eigen/Eigen/src/Cholesky/LLT.h +542 -0
- data/vendor/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h +99 -0
- data/vendor/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +639 -0
- data/vendor/eigen/Eigen/src/Core/Array.h +329 -0
- data/vendor/eigen/Eigen/src/Core/ArrayBase.h +226 -0
- data/vendor/eigen/Eigen/src/Core/ArrayWrapper.h +209 -0
- data/vendor/eigen/Eigen/src/Core/Assign.h +90 -0
- data/vendor/eigen/Eigen/src/Core/AssignEvaluator.h +935 -0
- data/vendor/eigen/Eigen/src/Core/Assign_MKL.h +178 -0
- data/vendor/eigen/Eigen/src/Core/BandMatrix.h +353 -0
- data/vendor/eigen/Eigen/src/Core/Block.h +452 -0
- data/vendor/eigen/Eigen/src/Core/BooleanRedux.h +164 -0
- data/vendor/eigen/Eigen/src/Core/CommaInitializer.h +160 -0
- data/vendor/eigen/Eigen/src/Core/ConditionEstimator.h +175 -0
- data/vendor/eigen/Eigen/src/Core/CoreEvaluators.h +1688 -0
- data/vendor/eigen/Eigen/src/Core/CoreIterators.h +127 -0
- data/vendor/eigen/Eigen/src/Core/CwiseBinaryOp.h +184 -0
- data/vendor/eigen/Eigen/src/Core/CwiseNullaryOp.h +866 -0
- data/vendor/eigen/Eigen/src/Core/CwiseTernaryOp.h +197 -0
- data/vendor/eigen/Eigen/src/Core/CwiseUnaryOp.h +103 -0
- data/vendor/eigen/Eigen/src/Core/CwiseUnaryView.h +128 -0
- data/vendor/eigen/Eigen/src/Core/DenseBase.h +611 -0
- data/vendor/eigen/Eigen/src/Core/DenseCoeffsBase.h +681 -0
- data/vendor/eigen/Eigen/src/Core/DenseStorage.h +570 -0
- data/vendor/eigen/Eigen/src/Core/Diagonal.h +260 -0
- data/vendor/eigen/Eigen/src/Core/DiagonalMatrix.h +343 -0
- data/vendor/eigen/Eigen/src/Core/DiagonalProduct.h +28 -0
- data/vendor/eigen/Eigen/src/Core/Dot.h +318 -0
- data/vendor/eigen/Eigen/src/Core/EigenBase.h +159 -0
- data/vendor/eigen/Eigen/src/Core/ForceAlignedAccess.h +146 -0
- data/vendor/eigen/Eigen/src/Core/Fuzzy.h +155 -0
- data/vendor/eigen/Eigen/src/Core/GeneralProduct.h +455 -0
- data/vendor/eigen/Eigen/src/Core/GenericPacketMath.h +593 -0
- data/vendor/eigen/Eigen/src/Core/GlobalFunctions.h +187 -0
- data/vendor/eigen/Eigen/src/Core/IO.h +225 -0
- data/vendor/eigen/Eigen/src/Core/Inverse.h +118 -0
- data/vendor/eigen/Eigen/src/Core/Map.h +171 -0
- data/vendor/eigen/Eigen/src/Core/MapBase.h +303 -0
- data/vendor/eigen/Eigen/src/Core/MathFunctions.h +1415 -0
- data/vendor/eigen/Eigen/src/Core/MathFunctionsImpl.h +101 -0
- data/vendor/eigen/Eigen/src/Core/Matrix.h +459 -0
- data/vendor/eigen/Eigen/src/Core/MatrixBase.h +529 -0
- data/vendor/eigen/Eigen/src/Core/NestByValue.h +110 -0
- data/vendor/eigen/Eigen/src/Core/NoAlias.h +108 -0
- data/vendor/eigen/Eigen/src/Core/NumTraits.h +248 -0
- data/vendor/eigen/Eigen/src/Core/PermutationMatrix.h +633 -0
- data/vendor/eigen/Eigen/src/Core/PlainObjectBase.h +1035 -0
- data/vendor/eigen/Eigen/src/Core/Product.h +186 -0
- data/vendor/eigen/Eigen/src/Core/ProductEvaluators.h +1112 -0
- data/vendor/eigen/Eigen/src/Core/Random.h +182 -0
- data/vendor/eigen/Eigen/src/Core/Redux.h +505 -0
- data/vendor/eigen/Eigen/src/Core/Ref.h +283 -0
- data/vendor/eigen/Eigen/src/Core/Replicate.h +142 -0
- data/vendor/eigen/Eigen/src/Core/ReturnByValue.h +117 -0
- data/vendor/eigen/Eigen/src/Core/Reverse.h +211 -0
- data/vendor/eigen/Eigen/src/Core/Select.h +162 -0
- data/vendor/eigen/Eigen/src/Core/SelfAdjointView.h +352 -0
- data/vendor/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h +47 -0
- data/vendor/eigen/Eigen/src/Core/Solve.h +188 -0
- data/vendor/eigen/Eigen/src/Core/SolveTriangular.h +235 -0
- data/vendor/eigen/Eigen/src/Core/SolverBase.h +130 -0
- data/vendor/eigen/Eigen/src/Core/StableNorm.h +221 -0
- data/vendor/eigen/Eigen/src/Core/Stride.h +111 -0
- data/vendor/eigen/Eigen/src/Core/Swap.h +67 -0
- data/vendor/eigen/Eigen/src/Core/Transpose.h +403 -0
- data/vendor/eigen/Eigen/src/Core/Transpositions.h +407 -0
- data/vendor/eigen/Eigen/src/Core/TriangularMatrix.h +983 -0
- data/vendor/eigen/Eigen/src/Core/VectorBlock.h +96 -0
- data/vendor/eigen/Eigen/src/Core/VectorwiseOp.h +695 -0
- data/vendor/eigen/Eigen/src/Core/Visitor.h +273 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/Complex.h +451 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +439 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +637 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +51 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +391 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +1316 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +430 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +322 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +1061 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/Complex.h +103 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/Half.h +674 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/MathFunctions.h +91 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h +333 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h +1124 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h +212 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +29 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/Settings.h +49 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/Complex.h +490 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +91 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +760 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/Complex.h +471 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +562 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +895 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +77 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/Complex.h +397 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +137 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +945 -0
- data/vendor/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +168 -0
- data/vendor/eigen/Eigen/src/Core/functors/BinaryFunctors.h +475 -0
- data/vendor/eigen/Eigen/src/Core/functors/NullaryFunctors.h +188 -0
- data/vendor/eigen/Eigen/src/Core/functors/StlFunctors.h +136 -0
- data/vendor/eigen/Eigen/src/Core/functors/TernaryFunctors.h +25 -0
- data/vendor/eigen/Eigen/src/Core/functors/UnaryFunctors.h +792 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +2156 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +492 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +311 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +145 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +122 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +619 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +136 -0
- data/vendor/eigen/Eigen/src/Core/products/Parallelizer.h +163 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +521 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +287 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +260 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +118 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +93 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +466 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +315 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixVector.h +350 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +255 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +335 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +163 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverVector.h +145 -0
- data/vendor/eigen/Eigen/src/Core/util/BlasUtil.h +398 -0
- data/vendor/eigen/Eigen/src/Core/util/Constants.h +547 -0
- data/vendor/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +83 -0
- data/vendor/eigen/Eigen/src/Core/util/ForwardDeclarations.h +302 -0
- data/vendor/eigen/Eigen/src/Core/util/MKL_support.h +130 -0
- data/vendor/eigen/Eigen/src/Core/util/Macros.h +1001 -0
- data/vendor/eigen/Eigen/src/Core/util/Memory.h +993 -0
- data/vendor/eigen/Eigen/src/Core/util/Meta.h +534 -0
- data/vendor/eigen/Eigen/src/Core/util/NonMPL2.h +3 -0
- data/vendor/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +27 -0
- data/vendor/eigen/Eigen/src/Core/util/StaticAssert.h +218 -0
- data/vendor/eigen/Eigen/src/Core/util/XprHelper.h +821 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +346 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +459 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +91 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/EigenSolver.h +622 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +418 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +226 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +374 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +158 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealQZ.h +654 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealSchur.h +546 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +77 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +870 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +87 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +556 -0
- data/vendor/eigen/Eigen/src/Geometry/AlignedBox.h +392 -0
- data/vendor/eigen/Eigen/src/Geometry/AngleAxis.h +247 -0
- data/vendor/eigen/Eigen/src/Geometry/EulerAngles.h +114 -0
- data/vendor/eigen/Eigen/src/Geometry/Homogeneous.h +497 -0
- data/vendor/eigen/Eigen/src/Geometry/Hyperplane.h +282 -0
- data/vendor/eigen/Eigen/src/Geometry/OrthoMethods.h +234 -0
- data/vendor/eigen/Eigen/src/Geometry/ParametrizedLine.h +195 -0
- data/vendor/eigen/Eigen/src/Geometry/Quaternion.h +814 -0
- data/vendor/eigen/Eigen/src/Geometry/Rotation2D.h +199 -0
- data/vendor/eigen/Eigen/src/Geometry/RotationBase.h +206 -0
- data/vendor/eigen/Eigen/src/Geometry/Scaling.h +170 -0
- data/vendor/eigen/Eigen/src/Geometry/Transform.h +1542 -0
- data/vendor/eigen/Eigen/src/Geometry/Translation.h +208 -0
- data/vendor/eigen/Eigen/src/Geometry/Umeyama.h +166 -0
- data/vendor/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h +161 -0
- data/vendor/eigen/Eigen/src/Householder/BlockHouseholder.h +103 -0
- data/vendor/eigen/Eigen/src/Householder/Householder.h +172 -0
- data/vendor/eigen/Eigen/src/Householder/HouseholderSequence.h +470 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +226 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +228 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +246 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +400 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +462 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +394 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +216 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +115 -0
- data/vendor/eigen/Eigen/src/Jacobi/Jacobi.h +462 -0
- data/vendor/eigen/Eigen/src/LU/Determinant.h +101 -0
- data/vendor/eigen/Eigen/src/LU/FullPivLU.h +891 -0
- data/vendor/eigen/Eigen/src/LU/InverseImpl.h +415 -0
- data/vendor/eigen/Eigen/src/LU/PartialPivLU.h +611 -0
- data/vendor/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h +83 -0
- data/vendor/eigen/Eigen/src/LU/arch/Inverse_SSE.h +338 -0
- data/vendor/eigen/Eigen/src/MetisSupport/MetisSupport.h +137 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Amd.h +445 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +1843 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Ordering.h +157 -0
- data/vendor/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +678 -0
- data/vendor/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +543 -0
- data/vendor/eigen/Eigen/src/QR/ColPivHouseholderQR.h +653 -0
- data/vendor/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +97 -0
- data/vendor/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +562 -0
- data/vendor/eigen/Eigen/src/QR/FullPivHouseholderQR.h +676 -0
- data/vendor/eigen/Eigen/src/QR/HouseholderQR.h +409 -0
- data/vendor/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h +68 -0
- data/vendor/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +313 -0
- data/vendor/eigen/Eigen/src/SVD/BDCSVD.h +1246 -0
- data/vendor/eigen/Eigen/src/SVD/JacobiSVD.h +804 -0
- data/vendor/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h +91 -0
- data/vendor/eigen/Eigen/src/SVD/SVDBase.h +315 -0
- data/vendor/eigen/Eigen/src/SVD/UpperBidiagonalization.h +414 -0
- data/vendor/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +689 -0
- data/vendor/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +199 -0
- data/vendor/eigen/Eigen/src/SparseCore/AmbiVector.h +377 -0
- data/vendor/eigen/Eigen/src/SparseCore/CompressedStorage.h +258 -0
- data/vendor/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +352 -0
- data/vendor/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h +67 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseAssign.h +216 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseBlock.h +603 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseColEtree.h +206 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +341 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +726 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +148 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +320 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDot.h +98 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseFuzzy.h +29 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMap.h +305 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMatrix.h +1403 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +405 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparsePermutation.h +178 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseProduct.h +169 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseRedux.h +49 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseRef.h +397 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +656 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSolverBase.h +124 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +198 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseTranspose.h +92 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseTriangularView.h +189 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseUtil.h +178 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseVector.h +478 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseView.h +253 -0
- data/vendor/eigen/Eigen/src/SparseCore/TriangularSolver.h +315 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU.h +773 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLUImpl.h +66 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +226 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +110 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +301 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Utils.h +80 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h +181 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +179 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +107 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +280 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +126 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +130 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +223 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h +258 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +137 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +136 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h +83 -0
- data/vendor/eigen/Eigen/src/SparseQR/SparseQR.h +745 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdDeque.h +126 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdList.h +106 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdVector.h +131 -0
- data/vendor/eigen/Eigen/src/StlSupport/details.h +84 -0
- data/vendor/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +1027 -0
- data/vendor/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +506 -0
- data/vendor/eigen/Eigen/src/misc/Image.h +82 -0
- data/vendor/eigen/Eigen/src/misc/Kernel.h +79 -0
- data/vendor/eigen/Eigen/src/misc/RealSvd2x2.h +55 -0
- data/vendor/eigen/Eigen/src/misc/blas.h +440 -0
- data/vendor/eigen/Eigen/src/misc/lapack.h +152 -0
- data/vendor/eigen/Eigen/src/misc/lapacke.h +16291 -0
- data/vendor/eigen/Eigen/src/misc/lapacke_mangling.h +17 -0
- data/vendor/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h +332 -0
- data/vendor/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h +552 -0
- data/vendor/eigen/Eigen/src/plugins/BlockMethods.h +1058 -0
- data/vendor/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h +115 -0
- data/vendor/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h +163 -0
- data/vendor/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h +152 -0
- data/vendor/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h +85 -0
- data/vendor/eigen/README.md +3 -0
- data/vendor/eigen/bench/README.txt +55 -0
- data/vendor/eigen/bench/btl/COPYING +340 -0
- data/vendor/eigen/bench/btl/README +154 -0
- data/vendor/eigen/bench/tensors/README +21 -0
- data/vendor/eigen/blas/README.txt +6 -0
- data/vendor/eigen/demos/mandelbrot/README +10 -0
- data/vendor/eigen/demos/mix_eigen_and_c/README +9 -0
- data/vendor/eigen/demos/opengl/README +13 -0
- data/vendor/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md +1760 -0
- data/vendor/eigen/unsupported/README.txt +50 -0
- data/vendor/tomotopy/LICENSE +21 -0
- data/vendor/tomotopy/README.kr.rst +375 -0
- data/vendor/tomotopy/README.rst +382 -0
- data/vendor/tomotopy/src/Labeling/FoRelevance.cpp +362 -0
- data/vendor/tomotopy/src/Labeling/FoRelevance.h +88 -0
- data/vendor/tomotopy/src/Labeling/Labeler.h +50 -0
- data/vendor/tomotopy/src/TopicModel/CT.h +37 -0
- data/vendor/tomotopy/src/TopicModel/CTModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/CTModel.hpp +293 -0
- data/vendor/tomotopy/src/TopicModel/DMR.h +51 -0
- data/vendor/tomotopy/src/TopicModel/DMRModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/DMRModel.hpp +374 -0
- data/vendor/tomotopy/src/TopicModel/DT.h +65 -0
- data/vendor/tomotopy/src/TopicModel/DTM.h +22 -0
- data/vendor/tomotopy/src/TopicModel/DTModel.cpp +15 -0
- data/vendor/tomotopy/src/TopicModel/DTModel.hpp +572 -0
- data/vendor/tomotopy/src/TopicModel/GDMR.h +37 -0
- data/vendor/tomotopy/src/TopicModel/GDMRModel.cpp +14 -0
- data/vendor/tomotopy/src/TopicModel/GDMRModel.hpp +485 -0
- data/vendor/tomotopy/src/TopicModel/HDP.h +74 -0
- data/vendor/tomotopy/src/TopicModel/HDPModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/HDPModel.hpp +592 -0
- data/vendor/tomotopy/src/TopicModel/HLDA.h +40 -0
- data/vendor/tomotopy/src/TopicModel/HLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/HLDAModel.hpp +681 -0
- data/vendor/tomotopy/src/TopicModel/HPA.h +27 -0
- data/vendor/tomotopy/src/TopicModel/HPAModel.cpp +21 -0
- data/vendor/tomotopy/src/TopicModel/HPAModel.hpp +588 -0
- data/vendor/tomotopy/src/TopicModel/LDA.h +144 -0
- data/vendor/tomotopy/src/TopicModel/LDACVB0Model.hpp +442 -0
- data/vendor/tomotopy/src/TopicModel/LDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/LDAModel.hpp +1058 -0
- data/vendor/tomotopy/src/TopicModel/LLDA.h +45 -0
- data/vendor/tomotopy/src/TopicModel/LLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/LLDAModel.hpp +203 -0
- data/vendor/tomotopy/src/TopicModel/MGLDA.h +63 -0
- data/vendor/tomotopy/src/TopicModel/MGLDAModel.cpp +17 -0
- data/vendor/tomotopy/src/TopicModel/MGLDAModel.hpp +558 -0
- data/vendor/tomotopy/src/TopicModel/PA.h +43 -0
- data/vendor/tomotopy/src/TopicModel/PAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/PAModel.hpp +467 -0
- data/vendor/tomotopy/src/TopicModel/PLDA.h +17 -0
- data/vendor/tomotopy/src/TopicModel/PLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/PLDAModel.hpp +214 -0
- data/vendor/tomotopy/src/TopicModel/SLDA.h +54 -0
- data/vendor/tomotopy/src/TopicModel/SLDAModel.cpp +17 -0
- data/vendor/tomotopy/src/TopicModel/SLDAModel.hpp +456 -0
- data/vendor/tomotopy/src/TopicModel/TopicModel.hpp +692 -0
- data/vendor/tomotopy/src/Utils/AliasMethod.hpp +169 -0
- data/vendor/tomotopy/src/Utils/Dictionary.h +80 -0
- data/vendor/tomotopy/src/Utils/EigenAddonOps.hpp +181 -0
- data/vendor/tomotopy/src/Utils/LBFGS.h +202 -0
- data/vendor/tomotopy/src/Utils/LBFGS/LineSearchBacktracking.h +120 -0
- data/vendor/tomotopy/src/Utils/LBFGS/LineSearchBracketing.h +122 -0
- data/vendor/tomotopy/src/Utils/LBFGS/Param.h +213 -0
- data/vendor/tomotopy/src/Utils/LUT.hpp +82 -0
- data/vendor/tomotopy/src/Utils/MultiNormalDistribution.hpp +69 -0
- data/vendor/tomotopy/src/Utils/PolyaGamma.hpp +200 -0
- data/vendor/tomotopy/src/Utils/PolyaGammaHybrid.hpp +672 -0
- data/vendor/tomotopy/src/Utils/ThreadPool.hpp +150 -0
- data/vendor/tomotopy/src/Utils/Trie.hpp +220 -0
- data/vendor/tomotopy/src/Utils/TruncMultiNormal.hpp +94 -0
- data/vendor/tomotopy/src/Utils/Utils.hpp +337 -0
- data/vendor/tomotopy/src/Utils/avx_gamma.h +46 -0
- data/vendor/tomotopy/src/Utils/avx_mathfun.h +736 -0
- data/vendor/tomotopy/src/Utils/exception.h +28 -0
- data/vendor/tomotopy/src/Utils/math.h +281 -0
- data/vendor/tomotopy/src/Utils/rtnorm.hpp +2690 -0
- data/vendor/tomotopy/src/Utils/sample.hpp +192 -0
- data/vendor/tomotopy/src/Utils/serializer.hpp +695 -0
- data/vendor/tomotopy/src/Utils/slp.hpp +131 -0
- data/vendor/tomotopy/src/Utils/sse_gamma.h +48 -0
- data/vendor/tomotopy/src/Utils/sse_mathfun.h +710 -0
- data/vendor/tomotopy/src/Utils/text.hpp +49 -0
- data/vendor/tomotopy/src/Utils/tvector.hpp +543 -0
- metadata +531 -0
@@ -0,0 +1,28 @@
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
2
|
+
// for linear algebra.
|
3
|
+
//
|
4
|
+
// Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr>
|
5
|
+
// Copyright (C) 2007-2009 Benoit Jacob <jacob.benoit.1@gmail.com>
|
6
|
+
//
|
7
|
+
// This Source Code Form is subject to the terms of the Mozilla
|
8
|
+
// Public License v. 2.0. If a copy of the MPL was not distributed
|
9
|
+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
10
|
+
|
11
|
+
#ifndef EIGEN_DIAGONALPRODUCT_H
|
12
|
+
#define EIGEN_DIAGONALPRODUCT_H
|
13
|
+
|
14
|
+
namespace Eigen {
|
15
|
+
|
16
|
+
/** \returns the diagonal matrix product of \c *this by the diagonal matrix \a diagonal.
|
17
|
+
*/
|
18
|
+
template<typename Derived>
|
19
|
+
template<typename DiagonalDerived>
|
20
|
+
inline const Product<Derived, DiagonalDerived, LazyProduct>
|
21
|
+
MatrixBase<Derived>::operator*(const DiagonalBase<DiagonalDerived> &a_diagonal) const
|
22
|
+
{
|
23
|
+
return Product<Derived, DiagonalDerived, LazyProduct>(derived(),a_diagonal.derived());
|
24
|
+
}
|
25
|
+
|
26
|
+
} // end namespace Eigen
|
27
|
+
|
28
|
+
#endif // EIGEN_DIAGONALPRODUCT_H
|
@@ -0,0 +1,318 @@
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
2
|
+
// for linear algebra.
|
3
|
+
//
|
4
|
+
// Copyright (C) 2006-2008, 2010 Benoit Jacob <jacob.benoit.1@gmail.com>
|
5
|
+
//
|
6
|
+
// This Source Code Form is subject to the terms of the Mozilla
|
7
|
+
// Public License v. 2.0. If a copy of the MPL was not distributed
|
8
|
+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
9
|
+
|
10
|
+
#ifndef EIGEN_DOT_H
|
11
|
+
#define EIGEN_DOT_H
|
12
|
+
|
13
|
+
namespace Eigen {
|
14
|
+
|
15
|
+
namespace internal {
|
16
|
+
|
17
|
+
// helper function for dot(). The problem is that if we put that in the body of dot(), then upon calling dot
|
18
|
+
// with mismatched types, the compiler emits errors about failing to instantiate cwiseProduct BEFORE
|
19
|
+
// looking at the static assertions. Thus this is a trick to get better compile errors.
|
20
|
+
template<typename T, typename U,
|
21
|
+
// the NeedToTranspose condition here is taken straight from Assign.h
|
22
|
+
bool NeedToTranspose = T::IsVectorAtCompileTime
|
23
|
+
&& U::IsVectorAtCompileTime
|
24
|
+
&& ((int(T::RowsAtCompileTime) == 1 && int(U::ColsAtCompileTime) == 1)
|
25
|
+
| // FIXME | instead of || to please GCC 4.4.0 stupid warning "suggest parentheses around &&".
|
26
|
+
// revert to || as soon as not needed anymore.
|
27
|
+
(int(T::ColsAtCompileTime) == 1 && int(U::RowsAtCompileTime) == 1))
|
28
|
+
>
|
29
|
+
struct dot_nocheck
|
30
|
+
{
|
31
|
+
typedef scalar_conj_product_op<typename traits<T>::Scalar,typename traits<U>::Scalar> conj_prod;
|
32
|
+
typedef typename conj_prod::result_type ResScalar;
|
33
|
+
EIGEN_DEVICE_FUNC
|
34
|
+
EIGEN_STRONG_INLINE
|
35
|
+
static ResScalar run(const MatrixBase<T>& a, const MatrixBase<U>& b)
|
36
|
+
{
|
37
|
+
return a.template binaryExpr<conj_prod>(b).sum();
|
38
|
+
}
|
39
|
+
};
|
40
|
+
|
41
|
+
template<typename T, typename U>
|
42
|
+
struct dot_nocheck<T, U, true>
|
43
|
+
{
|
44
|
+
typedef scalar_conj_product_op<typename traits<T>::Scalar,typename traits<U>::Scalar> conj_prod;
|
45
|
+
typedef typename conj_prod::result_type ResScalar;
|
46
|
+
EIGEN_DEVICE_FUNC
|
47
|
+
EIGEN_STRONG_INLINE
|
48
|
+
static ResScalar run(const MatrixBase<T>& a, const MatrixBase<U>& b)
|
49
|
+
{
|
50
|
+
return a.transpose().template binaryExpr<conj_prod>(b).sum();
|
51
|
+
}
|
52
|
+
};
|
53
|
+
|
54
|
+
} // end namespace internal
|
55
|
+
|
56
|
+
/** \fn MatrixBase::dot
|
57
|
+
* \returns the dot product of *this with other.
|
58
|
+
*
|
59
|
+
* \only_for_vectors
|
60
|
+
*
|
61
|
+
* \note If the scalar type is complex numbers, then this function returns the hermitian
|
62
|
+
* (sesquilinear) dot product, conjugate-linear in the first variable and linear in the
|
63
|
+
* second variable.
|
64
|
+
*
|
65
|
+
* \sa squaredNorm(), norm()
|
66
|
+
*/
|
67
|
+
template<typename Derived>
|
68
|
+
template<typename OtherDerived>
|
69
|
+
EIGEN_DEVICE_FUNC
|
70
|
+
EIGEN_STRONG_INLINE
|
71
|
+
typename ScalarBinaryOpTraits<typename internal::traits<Derived>::Scalar,typename internal::traits<OtherDerived>::Scalar>::ReturnType
|
72
|
+
MatrixBase<Derived>::dot(const MatrixBase<OtherDerived>& other) const
|
73
|
+
{
|
74
|
+
EIGEN_STATIC_ASSERT_VECTOR_ONLY(Derived)
|
75
|
+
EIGEN_STATIC_ASSERT_VECTOR_ONLY(OtherDerived)
|
76
|
+
EIGEN_STATIC_ASSERT_SAME_VECTOR_SIZE(Derived,OtherDerived)
|
77
|
+
#if !(defined(EIGEN_NO_STATIC_ASSERT) && defined(EIGEN_NO_DEBUG))
|
78
|
+
typedef internal::scalar_conj_product_op<Scalar,typename OtherDerived::Scalar> func;
|
79
|
+
EIGEN_CHECK_BINARY_COMPATIBILIY(func,Scalar,typename OtherDerived::Scalar);
|
80
|
+
#endif
|
81
|
+
|
82
|
+
eigen_assert(size() == other.size());
|
83
|
+
|
84
|
+
return internal::dot_nocheck<Derived,OtherDerived>::run(*this, other);
|
85
|
+
}
|
86
|
+
|
87
|
+
//---------- implementation of L2 norm and related functions ----------
|
88
|
+
|
89
|
+
/** \returns, for vectors, the squared \em l2 norm of \c *this, and for matrices the Frobenius norm.
|
90
|
+
* In both cases, it consists in the sum of the square of all the matrix entries.
|
91
|
+
* For vectors, this is also equals to the dot product of \c *this with itself.
|
92
|
+
*
|
93
|
+
* \sa dot(), norm(), lpNorm()
|
94
|
+
*/
|
95
|
+
template<typename Derived>
|
96
|
+
EIGEN_STRONG_INLINE typename NumTraits<typename internal::traits<Derived>::Scalar>::Real MatrixBase<Derived>::squaredNorm() const
|
97
|
+
{
|
98
|
+
return numext::real((*this).cwiseAbs2().sum());
|
99
|
+
}
|
100
|
+
|
101
|
+
/** \returns, for vectors, the \em l2 norm of \c *this, and for matrices the Frobenius norm.
|
102
|
+
* In both cases, it consists in the square root of the sum of the square of all the matrix entries.
|
103
|
+
* For vectors, this is also equals to the square root of the dot product of \c *this with itself.
|
104
|
+
*
|
105
|
+
* \sa lpNorm(), dot(), squaredNorm()
|
106
|
+
*/
|
107
|
+
template<typename Derived>
|
108
|
+
EIGEN_STRONG_INLINE typename NumTraits<typename internal::traits<Derived>::Scalar>::Real MatrixBase<Derived>::norm() const
|
109
|
+
{
|
110
|
+
return numext::sqrt(squaredNorm());
|
111
|
+
}
|
112
|
+
|
113
|
+
/** \returns an expression of the quotient of \c *this by its own norm.
|
114
|
+
*
|
115
|
+
* \warning If the input vector is too small (i.e., this->norm()==0),
|
116
|
+
* then this function returns a copy of the input.
|
117
|
+
*
|
118
|
+
* \only_for_vectors
|
119
|
+
*
|
120
|
+
* \sa norm(), normalize()
|
121
|
+
*/
|
122
|
+
template<typename Derived>
|
123
|
+
EIGEN_STRONG_INLINE const typename MatrixBase<Derived>::PlainObject
|
124
|
+
MatrixBase<Derived>::normalized() const
|
125
|
+
{
|
126
|
+
typedef typename internal::nested_eval<Derived,2>::type _Nested;
|
127
|
+
_Nested n(derived());
|
128
|
+
RealScalar z = n.squaredNorm();
|
129
|
+
// NOTE: after extensive benchmarking, this conditional does not impact performance, at least on recent x86 CPU
|
130
|
+
if(z>RealScalar(0))
|
131
|
+
return n / numext::sqrt(z);
|
132
|
+
else
|
133
|
+
return n;
|
134
|
+
}
|
135
|
+
|
136
|
+
/** Normalizes the vector, i.e. divides it by its own norm.
|
137
|
+
*
|
138
|
+
* \only_for_vectors
|
139
|
+
*
|
140
|
+
* \warning If the input vector is too small (i.e., this->norm()==0), then \c *this is left unchanged.
|
141
|
+
*
|
142
|
+
* \sa norm(), normalized()
|
143
|
+
*/
|
144
|
+
template<typename Derived>
|
145
|
+
EIGEN_STRONG_INLINE void MatrixBase<Derived>::normalize()
|
146
|
+
{
|
147
|
+
RealScalar z = squaredNorm();
|
148
|
+
// NOTE: after extensive benchmarking, this conditional does not impact performance, at least on recent x86 CPU
|
149
|
+
if(z>RealScalar(0))
|
150
|
+
derived() /= numext::sqrt(z);
|
151
|
+
}
|
152
|
+
|
153
|
+
/** \returns an expression of the quotient of \c *this by its own norm while avoiding underflow and overflow.
|
154
|
+
*
|
155
|
+
* \only_for_vectors
|
156
|
+
*
|
157
|
+
* This method is analogue to the normalized() method, but it reduces the risk of
|
158
|
+
* underflow and overflow when computing the norm.
|
159
|
+
*
|
160
|
+
* \warning If the input vector is too small (i.e., this->norm()==0),
|
161
|
+
* then this function returns a copy of the input.
|
162
|
+
*
|
163
|
+
* \sa stableNorm(), stableNormalize(), normalized()
|
164
|
+
*/
|
165
|
+
template<typename Derived>
|
166
|
+
EIGEN_STRONG_INLINE const typename MatrixBase<Derived>::PlainObject
|
167
|
+
MatrixBase<Derived>::stableNormalized() const
|
168
|
+
{
|
169
|
+
typedef typename internal::nested_eval<Derived,3>::type _Nested;
|
170
|
+
_Nested n(derived());
|
171
|
+
RealScalar w = n.cwiseAbs().maxCoeff();
|
172
|
+
RealScalar z = (n/w).squaredNorm();
|
173
|
+
if(z>RealScalar(0))
|
174
|
+
return n / (numext::sqrt(z)*w);
|
175
|
+
else
|
176
|
+
return n;
|
177
|
+
}
|
178
|
+
|
179
|
+
/** Normalizes the vector while avoid underflow and overflow
|
180
|
+
*
|
181
|
+
* \only_for_vectors
|
182
|
+
*
|
183
|
+
* This method is analogue to the normalize() method, but it reduces the risk of
|
184
|
+
* underflow and overflow when computing the norm.
|
185
|
+
*
|
186
|
+
* \warning If the input vector is too small (i.e., this->norm()==0), then \c *this is left unchanged.
|
187
|
+
*
|
188
|
+
* \sa stableNorm(), stableNormalized(), normalize()
|
189
|
+
*/
|
190
|
+
template<typename Derived>
|
191
|
+
EIGEN_STRONG_INLINE void MatrixBase<Derived>::stableNormalize()
|
192
|
+
{
|
193
|
+
RealScalar w = cwiseAbs().maxCoeff();
|
194
|
+
RealScalar z = (derived()/w).squaredNorm();
|
195
|
+
if(z>RealScalar(0))
|
196
|
+
derived() /= numext::sqrt(z)*w;
|
197
|
+
}
|
198
|
+
|
199
|
+
//---------- implementation of other norms ----------
|
200
|
+
|
201
|
+
namespace internal {
|
202
|
+
|
203
|
+
template<typename Derived, int p>
|
204
|
+
struct lpNorm_selector
|
205
|
+
{
|
206
|
+
typedef typename NumTraits<typename traits<Derived>::Scalar>::Real RealScalar;
|
207
|
+
EIGEN_DEVICE_FUNC
|
208
|
+
static inline RealScalar run(const MatrixBase<Derived>& m)
|
209
|
+
{
|
210
|
+
EIGEN_USING_STD_MATH(pow)
|
211
|
+
return pow(m.cwiseAbs().array().pow(p).sum(), RealScalar(1)/p);
|
212
|
+
}
|
213
|
+
};
|
214
|
+
|
215
|
+
template<typename Derived>
|
216
|
+
struct lpNorm_selector<Derived, 1>
|
217
|
+
{
|
218
|
+
EIGEN_DEVICE_FUNC
|
219
|
+
static inline typename NumTraits<typename traits<Derived>::Scalar>::Real run(const MatrixBase<Derived>& m)
|
220
|
+
{
|
221
|
+
return m.cwiseAbs().sum();
|
222
|
+
}
|
223
|
+
};
|
224
|
+
|
225
|
+
template<typename Derived>
|
226
|
+
struct lpNorm_selector<Derived, 2>
|
227
|
+
{
|
228
|
+
EIGEN_DEVICE_FUNC
|
229
|
+
static inline typename NumTraits<typename traits<Derived>::Scalar>::Real run(const MatrixBase<Derived>& m)
|
230
|
+
{
|
231
|
+
return m.norm();
|
232
|
+
}
|
233
|
+
};
|
234
|
+
|
235
|
+
template<typename Derived>
|
236
|
+
struct lpNorm_selector<Derived, Infinity>
|
237
|
+
{
|
238
|
+
typedef typename NumTraits<typename traits<Derived>::Scalar>::Real RealScalar;
|
239
|
+
EIGEN_DEVICE_FUNC
|
240
|
+
static inline RealScalar run(const MatrixBase<Derived>& m)
|
241
|
+
{
|
242
|
+
if(Derived::SizeAtCompileTime==0 || (Derived::SizeAtCompileTime==Dynamic && m.size()==0))
|
243
|
+
return RealScalar(0);
|
244
|
+
return m.cwiseAbs().maxCoeff();
|
245
|
+
}
|
246
|
+
};
|
247
|
+
|
248
|
+
} // end namespace internal
|
249
|
+
|
250
|
+
/** \returns the \b coefficient-wise \f$ \ell^p \f$ norm of \c *this, that is, returns the p-th root of the sum of the p-th powers of the absolute values
|
251
|
+
* of the coefficients of \c *this. If \a p is the special value \a Eigen::Infinity, this function returns the \f$ \ell^\infty \f$
|
252
|
+
* norm, that is the maximum of the absolute values of the coefficients of \c *this.
|
253
|
+
*
|
254
|
+
* In all cases, if \c *this is empty, then the value 0 is returned.
|
255
|
+
*
|
256
|
+
* \note For matrices, this function does not compute the <a href="https://en.wikipedia.org/wiki/Operator_norm">operator-norm</a>. That is, if \c *this is a matrix, then its coefficients are interpreted as a 1D vector. Nonetheless, you can easily compute the 1-norm and \f$\infty\f$-norm matrix operator norms using \link TutorialReductionsVisitorsBroadcastingReductionsNorm partial reductions \endlink.
|
257
|
+
*
|
258
|
+
* \sa norm()
|
259
|
+
*/
|
260
|
+
template<typename Derived>
|
261
|
+
template<int p>
|
262
|
+
#ifndef EIGEN_PARSED_BY_DOXYGEN
|
263
|
+
inline typename NumTraits<typename internal::traits<Derived>::Scalar>::Real
|
264
|
+
#else
|
265
|
+
MatrixBase<Derived>::RealScalar
|
266
|
+
#endif
|
267
|
+
MatrixBase<Derived>::lpNorm() const
|
268
|
+
{
|
269
|
+
return internal::lpNorm_selector<Derived, p>::run(*this);
|
270
|
+
}
|
271
|
+
|
272
|
+
//---------- implementation of isOrthogonal / isUnitary ----------
|
273
|
+
|
274
|
+
/** \returns true if *this is approximately orthogonal to \a other,
|
275
|
+
* within the precision given by \a prec.
|
276
|
+
*
|
277
|
+
* Example: \include MatrixBase_isOrthogonal.cpp
|
278
|
+
* Output: \verbinclude MatrixBase_isOrthogonal.out
|
279
|
+
*/
|
280
|
+
template<typename Derived>
|
281
|
+
template<typename OtherDerived>
|
282
|
+
bool MatrixBase<Derived>::isOrthogonal
|
283
|
+
(const MatrixBase<OtherDerived>& other, const RealScalar& prec) const
|
284
|
+
{
|
285
|
+
typename internal::nested_eval<Derived,2>::type nested(derived());
|
286
|
+
typename internal::nested_eval<OtherDerived,2>::type otherNested(other.derived());
|
287
|
+
return numext::abs2(nested.dot(otherNested)) <= prec * prec * nested.squaredNorm() * otherNested.squaredNorm();
|
288
|
+
}
|
289
|
+
|
290
|
+
/** \returns true if *this is approximately an unitary matrix,
|
291
|
+
* within the precision given by \a prec. In the case where the \a Scalar
|
292
|
+
* type is real numbers, a unitary matrix is an orthogonal matrix, whence the name.
|
293
|
+
*
|
294
|
+
* \note This can be used to check whether a family of vectors forms an orthonormal basis.
|
295
|
+
* Indeed, \c m.isUnitary() returns true if and only if the columns (equivalently, the rows) of m form an
|
296
|
+
* orthonormal basis.
|
297
|
+
*
|
298
|
+
* Example: \include MatrixBase_isUnitary.cpp
|
299
|
+
* Output: \verbinclude MatrixBase_isUnitary.out
|
300
|
+
*/
|
301
|
+
template<typename Derived>
|
302
|
+
bool MatrixBase<Derived>::isUnitary(const RealScalar& prec) const
|
303
|
+
{
|
304
|
+
typename internal::nested_eval<Derived,1>::type self(derived());
|
305
|
+
for(Index i = 0; i < cols(); ++i)
|
306
|
+
{
|
307
|
+
if(!internal::isApprox(self.col(i).squaredNorm(), static_cast<RealScalar>(1), prec))
|
308
|
+
return false;
|
309
|
+
for(Index j = 0; j < i; ++j)
|
310
|
+
if(!internal::isMuchSmallerThan(self.col(i).dot(self.col(j)), static_cast<Scalar>(1), prec))
|
311
|
+
return false;
|
312
|
+
}
|
313
|
+
return true;
|
314
|
+
}
|
315
|
+
|
316
|
+
} // end namespace Eigen
|
317
|
+
|
318
|
+
#endif // EIGEN_DOT_H
|
@@ -0,0 +1,159 @@
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
2
|
+
// for linear algebra.
|
3
|
+
//
|
4
|
+
// Copyright (C) 2009 Benoit Jacob <jacob.benoit.1@gmail.com>
|
5
|
+
// Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
|
6
|
+
//
|
7
|
+
// This Source Code Form is subject to the terms of the Mozilla
|
8
|
+
// Public License v. 2.0. If a copy of the MPL was not distributed
|
9
|
+
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
10
|
+
|
11
|
+
#ifndef EIGEN_EIGENBASE_H
|
12
|
+
#define EIGEN_EIGENBASE_H
|
13
|
+
|
14
|
+
namespace Eigen {
|
15
|
+
|
16
|
+
/** \class EigenBase
|
17
|
+
* \ingroup Core_Module
|
18
|
+
*
|
19
|
+
* Common base class for all classes T such that MatrixBase has an operator=(T) and a constructor MatrixBase(T).
|
20
|
+
*
|
21
|
+
* In other words, an EigenBase object is an object that can be copied into a MatrixBase.
|
22
|
+
*
|
23
|
+
* Besides MatrixBase-derived classes, this also includes special matrix classes such as diagonal matrices, etc.
|
24
|
+
*
|
25
|
+
* Notice that this class is trivial, it is only used to disambiguate overloaded functions.
|
26
|
+
*
|
27
|
+
* \sa \blank \ref TopicClassHierarchy
|
28
|
+
*/
|
29
|
+
template<typename Derived> struct EigenBase
|
30
|
+
{
|
31
|
+
// typedef typename internal::plain_matrix_type<Derived>::type PlainObject;
|
32
|
+
|
33
|
+
/** \brief The interface type of indices
|
34
|
+
* \details To change this, \c \#define the preprocessor symbol \c EIGEN_DEFAULT_DENSE_INDEX_TYPE.
|
35
|
+
* \deprecated Since Eigen 3.3, its usage is deprecated. Use Eigen::Index instead.
|
36
|
+
* \sa StorageIndex, \ref TopicPreprocessorDirectives.
|
37
|
+
*/
|
38
|
+
typedef Eigen::Index Index;
|
39
|
+
|
40
|
+
// FIXME is it needed?
|
41
|
+
typedef typename internal::traits<Derived>::StorageKind StorageKind;
|
42
|
+
|
43
|
+
/** \returns a reference to the derived object */
|
44
|
+
EIGEN_DEVICE_FUNC
|
45
|
+
Derived& derived() { return *static_cast<Derived*>(this); }
|
46
|
+
/** \returns a const reference to the derived object */
|
47
|
+
EIGEN_DEVICE_FUNC
|
48
|
+
const Derived& derived() const { return *static_cast<const Derived*>(this); }
|
49
|
+
|
50
|
+
EIGEN_DEVICE_FUNC
|
51
|
+
inline Derived& const_cast_derived() const
|
52
|
+
{ return *static_cast<Derived*>(const_cast<EigenBase*>(this)); }
|
53
|
+
EIGEN_DEVICE_FUNC
|
54
|
+
inline const Derived& const_derived() const
|
55
|
+
{ return *static_cast<const Derived*>(this); }
|
56
|
+
|
57
|
+
/** \returns the number of rows. \sa cols(), RowsAtCompileTime */
|
58
|
+
EIGEN_DEVICE_FUNC
|
59
|
+
inline Index rows() const { return derived().rows(); }
|
60
|
+
/** \returns the number of columns. \sa rows(), ColsAtCompileTime*/
|
61
|
+
EIGEN_DEVICE_FUNC
|
62
|
+
inline Index cols() const { return derived().cols(); }
|
63
|
+
/** \returns the number of coefficients, which is rows()*cols().
|
64
|
+
* \sa rows(), cols(), SizeAtCompileTime. */
|
65
|
+
EIGEN_DEVICE_FUNC
|
66
|
+
inline Index size() const { return rows() * cols(); }
|
67
|
+
|
68
|
+
/** \internal Don't use it, but do the equivalent: \code dst = *this; \endcode */
|
69
|
+
template<typename Dest>
|
70
|
+
EIGEN_DEVICE_FUNC
|
71
|
+
inline void evalTo(Dest& dst) const
|
72
|
+
{ derived().evalTo(dst); }
|
73
|
+
|
74
|
+
/** \internal Don't use it, but do the equivalent: \code dst += *this; \endcode */
|
75
|
+
template<typename Dest>
|
76
|
+
EIGEN_DEVICE_FUNC
|
77
|
+
inline void addTo(Dest& dst) const
|
78
|
+
{
|
79
|
+
// This is the default implementation,
|
80
|
+
// derived class can reimplement it in a more optimized way.
|
81
|
+
typename Dest::PlainObject res(rows(),cols());
|
82
|
+
evalTo(res);
|
83
|
+
dst += res;
|
84
|
+
}
|
85
|
+
|
86
|
+
/** \internal Don't use it, but do the equivalent: \code dst -= *this; \endcode */
|
87
|
+
template<typename Dest>
|
88
|
+
EIGEN_DEVICE_FUNC
|
89
|
+
inline void subTo(Dest& dst) const
|
90
|
+
{
|
91
|
+
// This is the default implementation,
|
92
|
+
// derived class can reimplement it in a more optimized way.
|
93
|
+
typename Dest::PlainObject res(rows(),cols());
|
94
|
+
evalTo(res);
|
95
|
+
dst -= res;
|
96
|
+
}
|
97
|
+
|
98
|
+
/** \internal Don't use it, but do the equivalent: \code dst.applyOnTheRight(*this); \endcode */
|
99
|
+
template<typename Dest>
|
100
|
+
EIGEN_DEVICE_FUNC inline void applyThisOnTheRight(Dest& dst) const
|
101
|
+
{
|
102
|
+
// This is the default implementation,
|
103
|
+
// derived class can reimplement it in a more optimized way.
|
104
|
+
dst = dst * this->derived();
|
105
|
+
}
|
106
|
+
|
107
|
+
/** \internal Don't use it, but do the equivalent: \code dst.applyOnTheLeft(*this); \endcode */
|
108
|
+
template<typename Dest>
|
109
|
+
EIGEN_DEVICE_FUNC inline void applyThisOnTheLeft(Dest& dst) const
|
110
|
+
{
|
111
|
+
// This is the default implementation,
|
112
|
+
// derived class can reimplement it in a more optimized way.
|
113
|
+
dst = this->derived() * dst;
|
114
|
+
}
|
115
|
+
|
116
|
+
};
|
117
|
+
|
118
|
+
/***************************************************************************
|
119
|
+
* Implementation of matrix base methods
|
120
|
+
***************************************************************************/
|
121
|
+
|
122
|
+
/** \brief Copies the generic expression \a other into *this.
|
123
|
+
*
|
124
|
+
* \details The expression must provide a (templated) evalTo(Derived& dst) const
|
125
|
+
* function which does the actual job. In practice, this allows any user to write
|
126
|
+
* its own special matrix without having to modify MatrixBase
|
127
|
+
*
|
128
|
+
* \returns a reference to *this.
|
129
|
+
*/
|
130
|
+
template<typename Derived>
|
131
|
+
template<typename OtherDerived>
|
132
|
+
EIGEN_DEVICE_FUNC
|
133
|
+
Derived& DenseBase<Derived>::operator=(const EigenBase<OtherDerived> &other)
|
134
|
+
{
|
135
|
+
call_assignment(derived(), other.derived());
|
136
|
+
return derived();
|
137
|
+
}
|
138
|
+
|
139
|
+
template<typename Derived>
|
140
|
+
template<typename OtherDerived>
|
141
|
+
EIGEN_DEVICE_FUNC
|
142
|
+
Derived& DenseBase<Derived>::operator+=(const EigenBase<OtherDerived> &other)
|
143
|
+
{
|
144
|
+
call_assignment(derived(), other.derived(), internal::add_assign_op<Scalar,typename OtherDerived::Scalar>());
|
145
|
+
return derived();
|
146
|
+
}
|
147
|
+
|
148
|
+
template<typename Derived>
|
149
|
+
template<typename OtherDerived>
|
150
|
+
EIGEN_DEVICE_FUNC
|
151
|
+
Derived& DenseBase<Derived>::operator-=(const EigenBase<OtherDerived> &other)
|
152
|
+
{
|
153
|
+
call_assignment(derived(), other.derived(), internal::sub_assign_op<Scalar,typename OtherDerived::Scalar>());
|
154
|
+
return derived();
|
155
|
+
}
|
156
|
+
|
157
|
+
} // end namespace Eigen
|
158
|
+
|
159
|
+
#endif // EIGEN_EIGENBASE_H
|