tomoto 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,282 @@
|
|
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) 2008 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_HYPERPLANE_H
|
12
|
+
#define EIGEN_HYPERPLANE_H
|
13
|
+
|
14
|
+
namespace Eigen {
|
15
|
+
|
16
|
+
/** \geometry_module \ingroup Geometry_Module
|
17
|
+
*
|
18
|
+
* \class Hyperplane
|
19
|
+
*
|
20
|
+
* \brief A hyperplane
|
21
|
+
*
|
22
|
+
* A hyperplane is an affine subspace of dimension n-1 in a space of dimension n.
|
23
|
+
* For example, a hyperplane in a plane is a line; a hyperplane in 3-space is a plane.
|
24
|
+
*
|
25
|
+
* \tparam _Scalar the scalar type, i.e., the type of the coefficients
|
26
|
+
* \tparam _AmbientDim the dimension of the ambient space, can be a compile time value or Dynamic.
|
27
|
+
* Notice that the dimension of the hyperplane is _AmbientDim-1.
|
28
|
+
*
|
29
|
+
* This class represents an hyperplane as the zero set of the implicit equation
|
30
|
+
* \f$ n \cdot x + d = 0 \f$ where \f$ n \f$ is a unit normal vector of the plane (linear part)
|
31
|
+
* and \f$ d \f$ is the distance (offset) to the origin.
|
32
|
+
*/
|
33
|
+
template <typename _Scalar, int _AmbientDim, int _Options>
|
34
|
+
class Hyperplane
|
35
|
+
{
|
36
|
+
public:
|
37
|
+
EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(_Scalar,_AmbientDim==Dynamic ? Dynamic : _AmbientDim+1)
|
38
|
+
enum {
|
39
|
+
AmbientDimAtCompileTime = _AmbientDim,
|
40
|
+
Options = _Options
|
41
|
+
};
|
42
|
+
typedef _Scalar Scalar;
|
43
|
+
typedef typename NumTraits<Scalar>::Real RealScalar;
|
44
|
+
typedef Eigen::Index Index; ///< \deprecated since Eigen 3.3
|
45
|
+
typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
|
46
|
+
typedef Matrix<Scalar,Index(AmbientDimAtCompileTime)==Dynamic
|
47
|
+
? Dynamic
|
48
|
+
: Index(AmbientDimAtCompileTime)+1,1,Options> Coefficients;
|
49
|
+
typedef Block<Coefficients,AmbientDimAtCompileTime,1> NormalReturnType;
|
50
|
+
typedef const Block<const Coefficients,AmbientDimAtCompileTime,1> ConstNormalReturnType;
|
51
|
+
|
52
|
+
/** Default constructor without initialization */
|
53
|
+
EIGEN_DEVICE_FUNC inline Hyperplane() {}
|
54
|
+
|
55
|
+
template<int OtherOptions>
|
56
|
+
EIGEN_DEVICE_FUNC Hyperplane(const Hyperplane<Scalar,AmbientDimAtCompileTime,OtherOptions>& other)
|
57
|
+
: m_coeffs(other.coeffs())
|
58
|
+
{}
|
59
|
+
|
60
|
+
/** Constructs a dynamic-size hyperplane with \a _dim the dimension
|
61
|
+
* of the ambient space */
|
62
|
+
EIGEN_DEVICE_FUNC inline explicit Hyperplane(Index _dim) : m_coeffs(_dim+1) {}
|
63
|
+
|
64
|
+
/** Construct a plane from its normal \a n and a point \a e onto the plane.
|
65
|
+
* \warning the vector normal is assumed to be normalized.
|
66
|
+
*/
|
67
|
+
EIGEN_DEVICE_FUNC inline Hyperplane(const VectorType& n, const VectorType& e)
|
68
|
+
: m_coeffs(n.size()+1)
|
69
|
+
{
|
70
|
+
normal() = n;
|
71
|
+
offset() = -n.dot(e);
|
72
|
+
}
|
73
|
+
|
74
|
+
/** Constructs a plane from its normal \a n and distance to the origin \a d
|
75
|
+
* such that the algebraic equation of the plane is \f$ n \cdot x + d = 0 \f$.
|
76
|
+
* \warning the vector normal is assumed to be normalized.
|
77
|
+
*/
|
78
|
+
EIGEN_DEVICE_FUNC inline Hyperplane(const VectorType& n, const Scalar& d)
|
79
|
+
: m_coeffs(n.size()+1)
|
80
|
+
{
|
81
|
+
normal() = n;
|
82
|
+
offset() = d;
|
83
|
+
}
|
84
|
+
|
85
|
+
/** Constructs a hyperplane passing through the two points. If the dimension of the ambient space
|
86
|
+
* is greater than 2, then there isn't uniqueness, so an arbitrary choice is made.
|
87
|
+
*/
|
88
|
+
EIGEN_DEVICE_FUNC static inline Hyperplane Through(const VectorType& p0, const VectorType& p1)
|
89
|
+
{
|
90
|
+
Hyperplane result(p0.size());
|
91
|
+
result.normal() = (p1 - p0).unitOrthogonal();
|
92
|
+
result.offset() = -p0.dot(result.normal());
|
93
|
+
return result;
|
94
|
+
}
|
95
|
+
|
96
|
+
/** Constructs a hyperplane passing through the three points. The dimension of the ambient space
|
97
|
+
* is required to be exactly 3.
|
98
|
+
*/
|
99
|
+
EIGEN_DEVICE_FUNC static inline Hyperplane Through(const VectorType& p0, const VectorType& p1, const VectorType& p2)
|
100
|
+
{
|
101
|
+
EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(VectorType, 3)
|
102
|
+
Hyperplane result(p0.size());
|
103
|
+
VectorType v0(p2 - p0), v1(p1 - p0);
|
104
|
+
result.normal() = v0.cross(v1);
|
105
|
+
RealScalar norm = result.normal().norm();
|
106
|
+
if(norm <= v0.norm() * v1.norm() * NumTraits<RealScalar>::epsilon())
|
107
|
+
{
|
108
|
+
Matrix<Scalar,2,3> m; m << v0.transpose(), v1.transpose();
|
109
|
+
JacobiSVD<Matrix<Scalar,2,3> > svd(m, ComputeFullV);
|
110
|
+
result.normal() = svd.matrixV().col(2);
|
111
|
+
}
|
112
|
+
else
|
113
|
+
result.normal() /= norm;
|
114
|
+
result.offset() = -p0.dot(result.normal());
|
115
|
+
return result;
|
116
|
+
}
|
117
|
+
|
118
|
+
/** Constructs a hyperplane passing through the parametrized line \a parametrized.
|
119
|
+
* If the dimension of the ambient space is greater than 2, then there isn't uniqueness,
|
120
|
+
* so an arbitrary choice is made.
|
121
|
+
*/
|
122
|
+
// FIXME to be consitent with the rest this could be implemented as a static Through function ??
|
123
|
+
EIGEN_DEVICE_FUNC explicit Hyperplane(const ParametrizedLine<Scalar, AmbientDimAtCompileTime>& parametrized)
|
124
|
+
{
|
125
|
+
normal() = parametrized.direction().unitOrthogonal();
|
126
|
+
offset() = -parametrized.origin().dot(normal());
|
127
|
+
}
|
128
|
+
|
129
|
+
EIGEN_DEVICE_FUNC ~Hyperplane() {}
|
130
|
+
|
131
|
+
/** \returns the dimension in which the plane holds */
|
132
|
+
EIGEN_DEVICE_FUNC inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_coeffs.size()-1 : Index(AmbientDimAtCompileTime); }
|
133
|
+
|
134
|
+
/** normalizes \c *this */
|
135
|
+
EIGEN_DEVICE_FUNC void normalize(void)
|
136
|
+
{
|
137
|
+
m_coeffs /= normal().norm();
|
138
|
+
}
|
139
|
+
|
140
|
+
/** \returns the signed distance between the plane \c *this and a point \a p.
|
141
|
+
* \sa absDistance()
|
142
|
+
*/
|
143
|
+
EIGEN_DEVICE_FUNC inline Scalar signedDistance(const VectorType& p) const { return normal().dot(p) + offset(); }
|
144
|
+
|
145
|
+
/** \returns the absolute distance between the plane \c *this and a point \a p.
|
146
|
+
* \sa signedDistance()
|
147
|
+
*/
|
148
|
+
EIGEN_DEVICE_FUNC inline Scalar absDistance(const VectorType& p) const { return numext::abs(signedDistance(p)); }
|
149
|
+
|
150
|
+
/** \returns the projection of a point \a p onto the plane \c *this.
|
151
|
+
*/
|
152
|
+
EIGEN_DEVICE_FUNC inline VectorType projection(const VectorType& p) const { return p - signedDistance(p) * normal(); }
|
153
|
+
|
154
|
+
/** \returns a constant reference to the unit normal vector of the plane, which corresponds
|
155
|
+
* to the linear part of the implicit equation.
|
156
|
+
*/
|
157
|
+
EIGEN_DEVICE_FUNC inline ConstNormalReturnType normal() const { return ConstNormalReturnType(m_coeffs,0,0,dim(),1); }
|
158
|
+
|
159
|
+
/** \returns a non-constant reference to the unit normal vector of the plane, which corresponds
|
160
|
+
* to the linear part of the implicit equation.
|
161
|
+
*/
|
162
|
+
EIGEN_DEVICE_FUNC inline NormalReturnType normal() { return NormalReturnType(m_coeffs,0,0,dim(),1); }
|
163
|
+
|
164
|
+
/** \returns the distance to the origin, which is also the "constant term" of the implicit equation
|
165
|
+
* \warning the vector normal is assumed to be normalized.
|
166
|
+
*/
|
167
|
+
EIGEN_DEVICE_FUNC inline const Scalar& offset() const { return m_coeffs.coeff(dim()); }
|
168
|
+
|
169
|
+
/** \returns a non-constant reference to the distance to the origin, which is also the constant part
|
170
|
+
* of the implicit equation */
|
171
|
+
EIGEN_DEVICE_FUNC inline Scalar& offset() { return m_coeffs(dim()); }
|
172
|
+
|
173
|
+
/** \returns a constant reference to the coefficients c_i of the plane equation:
|
174
|
+
* \f$ c_0*x_0 + ... + c_{d-1}*x_{d-1} + c_d = 0 \f$
|
175
|
+
*/
|
176
|
+
EIGEN_DEVICE_FUNC inline const Coefficients& coeffs() const { return m_coeffs; }
|
177
|
+
|
178
|
+
/** \returns a non-constant reference to the coefficients c_i of the plane equation:
|
179
|
+
* \f$ c_0*x_0 + ... + c_{d-1}*x_{d-1} + c_d = 0 \f$
|
180
|
+
*/
|
181
|
+
EIGEN_DEVICE_FUNC inline Coefficients& coeffs() { return m_coeffs; }
|
182
|
+
|
183
|
+
/** \returns the intersection of *this with \a other.
|
184
|
+
*
|
185
|
+
* \warning The ambient space must be a plane, i.e. have dimension 2, so that \c *this and \a other are lines.
|
186
|
+
*
|
187
|
+
* \note If \a other is approximately parallel to *this, this method will return any point on *this.
|
188
|
+
*/
|
189
|
+
EIGEN_DEVICE_FUNC VectorType intersection(const Hyperplane& other) const
|
190
|
+
{
|
191
|
+
EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(VectorType, 2)
|
192
|
+
Scalar det = coeffs().coeff(0) * other.coeffs().coeff(1) - coeffs().coeff(1) * other.coeffs().coeff(0);
|
193
|
+
// since the line equations ax+by=c are normalized with a^2+b^2=1, the following tests
|
194
|
+
// whether the two lines are approximately parallel.
|
195
|
+
if(internal::isMuchSmallerThan(det, Scalar(1)))
|
196
|
+
{ // special case where the two lines are approximately parallel. Pick any point on the first line.
|
197
|
+
if(numext::abs(coeffs().coeff(1))>numext::abs(coeffs().coeff(0)))
|
198
|
+
return VectorType(coeffs().coeff(1), -coeffs().coeff(2)/coeffs().coeff(1)-coeffs().coeff(0));
|
199
|
+
else
|
200
|
+
return VectorType(-coeffs().coeff(2)/coeffs().coeff(0)-coeffs().coeff(1), coeffs().coeff(0));
|
201
|
+
}
|
202
|
+
else
|
203
|
+
{ // general case
|
204
|
+
Scalar invdet = Scalar(1) / det;
|
205
|
+
return VectorType(invdet*(coeffs().coeff(1)*other.coeffs().coeff(2)-other.coeffs().coeff(1)*coeffs().coeff(2)),
|
206
|
+
invdet*(other.coeffs().coeff(0)*coeffs().coeff(2)-coeffs().coeff(0)*other.coeffs().coeff(2)));
|
207
|
+
}
|
208
|
+
}
|
209
|
+
|
210
|
+
/** Applies the transformation matrix \a mat to \c *this and returns a reference to \c *this.
|
211
|
+
*
|
212
|
+
* \param mat the Dim x Dim transformation matrix
|
213
|
+
* \param traits specifies whether the matrix \a mat represents an #Isometry
|
214
|
+
* or a more generic #Affine transformation. The default is #Affine.
|
215
|
+
*/
|
216
|
+
template<typename XprType>
|
217
|
+
EIGEN_DEVICE_FUNC inline Hyperplane& transform(const MatrixBase<XprType>& mat, TransformTraits traits = Affine)
|
218
|
+
{
|
219
|
+
if (traits==Affine)
|
220
|
+
{
|
221
|
+
normal() = mat.inverse().transpose() * normal();
|
222
|
+
m_coeffs /= normal().norm();
|
223
|
+
}
|
224
|
+
else if (traits==Isometry)
|
225
|
+
normal() = mat * normal();
|
226
|
+
else
|
227
|
+
{
|
228
|
+
eigen_assert(0 && "invalid traits value in Hyperplane::transform()");
|
229
|
+
}
|
230
|
+
return *this;
|
231
|
+
}
|
232
|
+
|
233
|
+
/** Applies the transformation \a t to \c *this and returns a reference to \c *this.
|
234
|
+
*
|
235
|
+
* \param t the transformation of dimension Dim
|
236
|
+
* \param traits specifies whether the transformation \a t represents an #Isometry
|
237
|
+
* or a more generic #Affine transformation. The default is #Affine.
|
238
|
+
* Other kind of transformations are not supported.
|
239
|
+
*/
|
240
|
+
template<int TrOptions>
|
241
|
+
EIGEN_DEVICE_FUNC inline Hyperplane& transform(const Transform<Scalar,AmbientDimAtCompileTime,Affine,TrOptions>& t,
|
242
|
+
TransformTraits traits = Affine)
|
243
|
+
{
|
244
|
+
transform(t.linear(), traits);
|
245
|
+
offset() -= normal().dot(t.translation());
|
246
|
+
return *this;
|
247
|
+
}
|
248
|
+
|
249
|
+
/** \returns \c *this with scalar type casted to \a NewScalarType
|
250
|
+
*
|
251
|
+
* Note that if \a NewScalarType is equal to the current scalar type of \c *this
|
252
|
+
* then this function smartly returns a const reference to \c *this.
|
253
|
+
*/
|
254
|
+
template<typename NewScalarType>
|
255
|
+
EIGEN_DEVICE_FUNC inline typename internal::cast_return_type<Hyperplane,
|
256
|
+
Hyperplane<NewScalarType,AmbientDimAtCompileTime,Options> >::type cast() const
|
257
|
+
{
|
258
|
+
return typename internal::cast_return_type<Hyperplane,
|
259
|
+
Hyperplane<NewScalarType,AmbientDimAtCompileTime,Options> >::type(*this);
|
260
|
+
}
|
261
|
+
|
262
|
+
/** Copy constructor with scalar type conversion */
|
263
|
+
template<typename OtherScalarType,int OtherOptions>
|
264
|
+
EIGEN_DEVICE_FUNC inline explicit Hyperplane(const Hyperplane<OtherScalarType,AmbientDimAtCompileTime,OtherOptions>& other)
|
265
|
+
{ m_coeffs = other.coeffs().template cast<Scalar>(); }
|
266
|
+
|
267
|
+
/** \returns \c true if \c *this is approximately equal to \a other, within the precision
|
268
|
+
* determined by \a prec.
|
269
|
+
*
|
270
|
+
* \sa MatrixBase::isApprox() */
|
271
|
+
template<int OtherOptions>
|
272
|
+
EIGEN_DEVICE_FUNC bool isApprox(const Hyperplane<Scalar,AmbientDimAtCompileTime,OtherOptions>& other, const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision()) const
|
273
|
+
{ return m_coeffs.isApprox(other.m_coeffs, prec); }
|
274
|
+
|
275
|
+
protected:
|
276
|
+
|
277
|
+
Coefficients m_coeffs;
|
278
|
+
};
|
279
|
+
|
280
|
+
} // end namespace Eigen
|
281
|
+
|
282
|
+
#endif // EIGEN_HYPERPLANE_H
|
@@ -0,0 +1,234 @@
|
|
1
|
+
// This file is part of Eigen, a lightweight C++ template library
|
2
|
+
// for linear algebra.
|
3
|
+
//
|
4
|
+
// Copyright (C) 2008-2009 Gael Guennebaud <gael.guennebaud@inria.fr>
|
5
|
+
// Copyright (C) 2006-2008 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_ORTHOMETHODS_H
|
12
|
+
#define EIGEN_ORTHOMETHODS_H
|
13
|
+
|
14
|
+
namespace Eigen {
|
15
|
+
|
16
|
+
/** \geometry_module \ingroup Geometry_Module
|
17
|
+
*
|
18
|
+
* \returns the cross product of \c *this and \a other
|
19
|
+
*
|
20
|
+
* Here is a very good explanation of cross-product: http://xkcd.com/199/
|
21
|
+
*
|
22
|
+
* With complex numbers, the cross product is implemented as
|
23
|
+
* \f$ (\mathbf{a}+i\mathbf{b}) \times (\mathbf{c}+i\mathbf{d}) = (\mathbf{a} \times \mathbf{c} - \mathbf{b} \times \mathbf{d}) - i(\mathbf{a} \times \mathbf{d} - \mathbf{b} \times \mathbf{c})\f$
|
24
|
+
*
|
25
|
+
* \sa MatrixBase::cross3()
|
26
|
+
*/
|
27
|
+
template<typename Derived>
|
28
|
+
template<typename OtherDerived>
|
29
|
+
#ifndef EIGEN_PARSED_BY_DOXYGEN
|
30
|
+
EIGEN_DEVICE_FUNC inline typename MatrixBase<Derived>::template cross_product_return_type<OtherDerived>::type
|
31
|
+
#else
|
32
|
+
inline typename MatrixBase<Derived>::PlainObject
|
33
|
+
#endif
|
34
|
+
MatrixBase<Derived>::cross(const MatrixBase<OtherDerived>& other) const
|
35
|
+
{
|
36
|
+
EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(Derived,3)
|
37
|
+
EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(OtherDerived,3)
|
38
|
+
|
39
|
+
// Note that there is no need for an expression here since the compiler
|
40
|
+
// optimize such a small temporary very well (even within a complex expression)
|
41
|
+
typename internal::nested_eval<Derived,2>::type lhs(derived());
|
42
|
+
typename internal::nested_eval<OtherDerived,2>::type rhs(other.derived());
|
43
|
+
return typename cross_product_return_type<OtherDerived>::type(
|
44
|
+
numext::conj(lhs.coeff(1) * rhs.coeff(2) - lhs.coeff(2) * rhs.coeff(1)),
|
45
|
+
numext::conj(lhs.coeff(2) * rhs.coeff(0) - lhs.coeff(0) * rhs.coeff(2)),
|
46
|
+
numext::conj(lhs.coeff(0) * rhs.coeff(1) - lhs.coeff(1) * rhs.coeff(0))
|
47
|
+
);
|
48
|
+
}
|
49
|
+
|
50
|
+
namespace internal {
|
51
|
+
|
52
|
+
template< int Arch,typename VectorLhs,typename VectorRhs,
|
53
|
+
typename Scalar = typename VectorLhs::Scalar,
|
54
|
+
bool Vectorizable = bool((VectorLhs::Flags&VectorRhs::Flags)&PacketAccessBit)>
|
55
|
+
struct cross3_impl {
|
56
|
+
EIGEN_DEVICE_FUNC static inline typename internal::plain_matrix_type<VectorLhs>::type
|
57
|
+
run(const VectorLhs& lhs, const VectorRhs& rhs)
|
58
|
+
{
|
59
|
+
return typename internal::plain_matrix_type<VectorLhs>::type(
|
60
|
+
numext::conj(lhs.coeff(1) * rhs.coeff(2) - lhs.coeff(2) * rhs.coeff(1)),
|
61
|
+
numext::conj(lhs.coeff(2) * rhs.coeff(0) - lhs.coeff(0) * rhs.coeff(2)),
|
62
|
+
numext::conj(lhs.coeff(0) * rhs.coeff(1) - lhs.coeff(1) * rhs.coeff(0)),
|
63
|
+
0
|
64
|
+
);
|
65
|
+
}
|
66
|
+
};
|
67
|
+
|
68
|
+
}
|
69
|
+
|
70
|
+
/** \geometry_module \ingroup Geometry_Module
|
71
|
+
*
|
72
|
+
* \returns the cross product of \c *this and \a other using only the x, y, and z coefficients
|
73
|
+
*
|
74
|
+
* The size of \c *this and \a other must be four. This function is especially useful
|
75
|
+
* when using 4D vectors instead of 3D ones to get advantage of SSE/AltiVec vectorization.
|
76
|
+
*
|
77
|
+
* \sa MatrixBase::cross()
|
78
|
+
*/
|
79
|
+
template<typename Derived>
|
80
|
+
template<typename OtherDerived>
|
81
|
+
EIGEN_DEVICE_FUNC inline typename MatrixBase<Derived>::PlainObject
|
82
|
+
MatrixBase<Derived>::cross3(const MatrixBase<OtherDerived>& other) const
|
83
|
+
{
|
84
|
+
EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(Derived,4)
|
85
|
+
EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(OtherDerived,4)
|
86
|
+
|
87
|
+
typedef typename internal::nested_eval<Derived,2>::type DerivedNested;
|
88
|
+
typedef typename internal::nested_eval<OtherDerived,2>::type OtherDerivedNested;
|
89
|
+
DerivedNested lhs(derived());
|
90
|
+
OtherDerivedNested rhs(other.derived());
|
91
|
+
|
92
|
+
return internal::cross3_impl<Architecture::Target,
|
93
|
+
typename internal::remove_all<DerivedNested>::type,
|
94
|
+
typename internal::remove_all<OtherDerivedNested>::type>::run(lhs,rhs);
|
95
|
+
}
|
96
|
+
|
97
|
+
/** \geometry_module \ingroup Geometry_Module
|
98
|
+
*
|
99
|
+
* \returns a matrix expression of the cross product of each column or row
|
100
|
+
* of the referenced expression with the \a other vector.
|
101
|
+
*
|
102
|
+
* The referenced matrix must have one dimension equal to 3.
|
103
|
+
* The result matrix has the same dimensions than the referenced one.
|
104
|
+
*
|
105
|
+
* \sa MatrixBase::cross() */
|
106
|
+
template<typename ExpressionType, int Direction>
|
107
|
+
template<typename OtherDerived>
|
108
|
+
EIGEN_DEVICE_FUNC
|
109
|
+
const typename VectorwiseOp<ExpressionType,Direction>::CrossReturnType
|
110
|
+
VectorwiseOp<ExpressionType,Direction>::cross(const MatrixBase<OtherDerived>& other) const
|
111
|
+
{
|
112
|
+
EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(OtherDerived,3)
|
113
|
+
EIGEN_STATIC_ASSERT((internal::is_same<Scalar, typename OtherDerived::Scalar>::value),
|
114
|
+
YOU_MIXED_DIFFERENT_NUMERIC_TYPES__YOU_NEED_TO_USE_THE_CAST_METHOD_OF_MATRIXBASE_TO_CAST_NUMERIC_TYPES_EXPLICITLY)
|
115
|
+
|
116
|
+
typename internal::nested_eval<ExpressionType,2>::type mat(_expression());
|
117
|
+
typename internal::nested_eval<OtherDerived,2>::type vec(other.derived());
|
118
|
+
|
119
|
+
CrossReturnType res(_expression().rows(),_expression().cols());
|
120
|
+
if(Direction==Vertical)
|
121
|
+
{
|
122
|
+
eigen_assert(CrossReturnType::RowsAtCompileTime==3 && "the matrix must have exactly 3 rows");
|
123
|
+
res.row(0) = (mat.row(1) * vec.coeff(2) - mat.row(2) * vec.coeff(1)).conjugate();
|
124
|
+
res.row(1) = (mat.row(2) * vec.coeff(0) - mat.row(0) * vec.coeff(2)).conjugate();
|
125
|
+
res.row(2) = (mat.row(0) * vec.coeff(1) - mat.row(1) * vec.coeff(0)).conjugate();
|
126
|
+
}
|
127
|
+
else
|
128
|
+
{
|
129
|
+
eigen_assert(CrossReturnType::ColsAtCompileTime==3 && "the matrix must have exactly 3 columns");
|
130
|
+
res.col(0) = (mat.col(1) * vec.coeff(2) - mat.col(2) * vec.coeff(1)).conjugate();
|
131
|
+
res.col(1) = (mat.col(2) * vec.coeff(0) - mat.col(0) * vec.coeff(2)).conjugate();
|
132
|
+
res.col(2) = (mat.col(0) * vec.coeff(1) - mat.col(1) * vec.coeff(0)).conjugate();
|
133
|
+
}
|
134
|
+
return res;
|
135
|
+
}
|
136
|
+
|
137
|
+
namespace internal {
|
138
|
+
|
139
|
+
template<typename Derived, int Size = Derived::SizeAtCompileTime>
|
140
|
+
struct unitOrthogonal_selector
|
141
|
+
{
|
142
|
+
typedef typename plain_matrix_type<Derived>::type VectorType;
|
143
|
+
typedef typename traits<Derived>::Scalar Scalar;
|
144
|
+
typedef typename NumTraits<Scalar>::Real RealScalar;
|
145
|
+
typedef Matrix<Scalar,2,1> Vector2;
|
146
|
+
EIGEN_DEVICE_FUNC
|
147
|
+
static inline VectorType run(const Derived& src)
|
148
|
+
{
|
149
|
+
VectorType perp = VectorType::Zero(src.size());
|
150
|
+
Index maxi = 0;
|
151
|
+
Index sndi = 0;
|
152
|
+
src.cwiseAbs().maxCoeff(&maxi);
|
153
|
+
if (maxi==0)
|
154
|
+
sndi = 1;
|
155
|
+
RealScalar invnm = RealScalar(1)/(Vector2() << src.coeff(sndi),src.coeff(maxi)).finished().norm();
|
156
|
+
perp.coeffRef(maxi) = -numext::conj(src.coeff(sndi)) * invnm;
|
157
|
+
perp.coeffRef(sndi) = numext::conj(src.coeff(maxi)) * invnm;
|
158
|
+
|
159
|
+
return perp;
|
160
|
+
}
|
161
|
+
};
|
162
|
+
|
163
|
+
template<typename Derived>
|
164
|
+
struct unitOrthogonal_selector<Derived,3>
|
165
|
+
{
|
166
|
+
typedef typename plain_matrix_type<Derived>::type VectorType;
|
167
|
+
typedef typename traits<Derived>::Scalar Scalar;
|
168
|
+
typedef typename NumTraits<Scalar>::Real RealScalar;
|
169
|
+
EIGEN_DEVICE_FUNC
|
170
|
+
static inline VectorType run(const Derived& src)
|
171
|
+
{
|
172
|
+
VectorType perp;
|
173
|
+
/* Let us compute the crossed product of *this with a vector
|
174
|
+
* that is not too close to being colinear to *this.
|
175
|
+
*/
|
176
|
+
|
177
|
+
/* unless the x and y coords are both close to zero, we can
|
178
|
+
* simply take ( -y, x, 0 ) and normalize it.
|
179
|
+
*/
|
180
|
+
if((!isMuchSmallerThan(src.x(), src.z()))
|
181
|
+
|| (!isMuchSmallerThan(src.y(), src.z())))
|
182
|
+
{
|
183
|
+
RealScalar invnm = RealScalar(1)/src.template head<2>().norm();
|
184
|
+
perp.coeffRef(0) = -numext::conj(src.y())*invnm;
|
185
|
+
perp.coeffRef(1) = numext::conj(src.x())*invnm;
|
186
|
+
perp.coeffRef(2) = 0;
|
187
|
+
}
|
188
|
+
/* if both x and y are close to zero, then the vector is close
|
189
|
+
* to the z-axis, so it's far from colinear to the x-axis for instance.
|
190
|
+
* So we take the crossed product with (1,0,0) and normalize it.
|
191
|
+
*/
|
192
|
+
else
|
193
|
+
{
|
194
|
+
RealScalar invnm = RealScalar(1)/src.template tail<2>().norm();
|
195
|
+
perp.coeffRef(0) = 0;
|
196
|
+
perp.coeffRef(1) = -numext::conj(src.z())*invnm;
|
197
|
+
perp.coeffRef(2) = numext::conj(src.y())*invnm;
|
198
|
+
}
|
199
|
+
|
200
|
+
return perp;
|
201
|
+
}
|
202
|
+
};
|
203
|
+
|
204
|
+
template<typename Derived>
|
205
|
+
struct unitOrthogonal_selector<Derived,2>
|
206
|
+
{
|
207
|
+
typedef typename plain_matrix_type<Derived>::type VectorType;
|
208
|
+
EIGEN_DEVICE_FUNC
|
209
|
+
static inline VectorType run(const Derived& src)
|
210
|
+
{ return VectorType(-numext::conj(src.y()), numext::conj(src.x())).normalized(); }
|
211
|
+
};
|
212
|
+
|
213
|
+
} // end namespace internal
|
214
|
+
|
215
|
+
/** \geometry_module \ingroup Geometry_Module
|
216
|
+
*
|
217
|
+
* \returns a unit vector which is orthogonal to \c *this
|
218
|
+
*
|
219
|
+
* The size of \c *this must be at least 2. If the size is exactly 2,
|
220
|
+
* then the returned vector is a counter clock wise rotation of \c *this, i.e., (-y,x).normalized().
|
221
|
+
*
|
222
|
+
* \sa cross()
|
223
|
+
*/
|
224
|
+
template<typename Derived>
|
225
|
+
EIGEN_DEVICE_FUNC typename MatrixBase<Derived>::PlainObject
|
226
|
+
MatrixBase<Derived>::unitOrthogonal() const
|
227
|
+
{
|
228
|
+
EIGEN_STATIC_ASSERT_VECTOR_ONLY(Derived)
|
229
|
+
return internal::unitOrthogonal_selector<Derived>::run(derived());
|
230
|
+
}
|
231
|
+
|
232
|
+
} // end namespace Eigen
|
233
|
+
|
234
|
+
#endif // EIGEN_ORTHOMETHODS_H
|