[X] The "/OldFiles" file could not be found or is not available. Please select another file.

Share

More
Template Matrix/Vector Library for C++ Icon

Template Matrix/Vector Library for C++

beta

by mike_jarvis


TMV is a comprehensive linear algebra library which uses operator overloading, views & delayed evaluation to simplify matrix and vector expressions in C++. It is well documented and can optionally call optimized BLAS/LAPACK for faster execution times.


http://www.hep.upenn.edu/~mjarvis/tmv





Separate each tag with a space.

Release Date:

2009-01-20

Topic:

Operating System:

License:

Translations:

Intended Audience:

Programming Language:

Registered:

2007-04-16

Ratings and Reviews

Be the first to post a text review of Template Matrix/Vector Library for C++. Rate and review a project by clicking thumbs up or thumbs down in the right column.

Project Feed

  • File released: /tmv-cpp/0.62/TMV_Documentation.pdf

    posted 352 days ago

  • File released: /tmv-cpp/0.62/README

    posted 352 days ago

  • File released: /tmv-cpp/0.62/LICENSE

    posted 352 days ago

  • File released: /tmv-cpp/0.62/CHANGELOG

    posted 352 days ago

  • File released: /tmv-cpp/0.62/INSTALL

    posted 352 days ago

  • File released: /tmv-cpp/0.62/tmv0.62.tar.gz

    posted 352 days ago

  • tmv-cpp 0.62 file released: README

    Changes from version 0.61 to 0.62: (See the History section in the full documentation for changes from previous versions to 0.61.) Here is a brief list of the more important changes: - Corrected an error with m.DivIsSet(); - Corrected the documentation regarding the m.SVD() access, especially that S is now a DiagMatrix, rather than a Vector. - Changed behavior of methods like m.SVD(). Now, if SV has not been set already, then it will set it, rather than give an error. - Added ListInit method for initializing a vector or matrix. - Improved SmallMatrix class. Now it is not derived from GenMatrix (or even BaseMatrix), thus removing the virtual table. This greatly speeds up a lot of calculations. I also specialized some routines for 2x2 and 3x3 matrices, like Det and Inverse. The caveat is that some things that used to be possible with SmallMatrix are not now. Most importantly, arithmetic results can not be automatically instantiated any more. They need to be assigned to a location, either SmallMatrix or Matrix. I also inlined all the division routines, rather than have it call the regular Matrix division routines. - Removed some ViewOf commands that are clearer with a different notation. d = DiagMatrixViewOf(m) --> d = DiagMatrixViewOf(m.diag()) U = UpperTriMatrixViewOf(m) --> U = m.UpperTri() U = UpperTriMatrixViewOf(m,UnitDiag) --> U = m.UpperTri(UnitDiag) U = UpperTriMatrixViewOf(U2,UnitDiag) --> U = U2.ViewAsUnitDiag() - Fixed problems with LAPACK functions dstegr and sstegr. Now TMV can detect when stegr fails and run the alternate stedc instead. - Added scons installation option. - Added ability to use Fortran versions of BLAS and LAPACK. - Include CMakeLists.txt files for cmake installations. - Include .vcproj and .vcsln files for Visual C++ installations.

    posted 352 days ago

  • tmv-cpp 0.62 file released: TMV_Documentation.pdf

    Changes from version 0.61 to 0.62: (See the History section in the full documentation for changes from previous versions to 0.61.) Here is a brief list of the more important changes: - Corrected an error with m.DivIsSet(); - Corrected the documentation regarding the m.SVD() access, especially that S is now a DiagMatrix, rather than a Vector. - Changed behavior of methods like m.SVD(). Now, if SV has not been set already, then it will set it, rather than give an error. - Added ListInit method for initializing a vector or matrix. - Improved SmallMatrix class. Now it is not derived from GenMatrix (or even BaseMatrix), thus removing the virtual table. This greatly speeds up a lot of calculations. I also specialized some routines for 2x2 and 3x3 matrices, like Det and Inverse. The caveat is that some things that used to be possible with SmallMatrix are not now. Most importantly, arithmetic results can not be automatically instantiated any more. They need to be assigned to a location, either SmallMatrix or Matrix. I also inlined all the division routines, rather than have it call the regular Matrix division routines. - Removed some ViewOf commands that are clearer with a different notation. d = DiagMatrixViewOf(m) --> d = DiagMatrixViewOf(m.diag()) U = UpperTriMatrixViewOf(m) --> U = m.UpperTri() U = UpperTriMatrixViewOf(m,UnitDiag) --> U = m.UpperTri(UnitDiag) U = UpperTriMatrixViewOf(U2,UnitDiag) --> U = U2.ViewAsUnitDiag() - Fixed problems with LAPACK functions dstegr and sstegr. Now TMV can detect when stegr fails and run the alternate stedc instead. - Added scons installation option. - Added ability to use Fortran versions of BLAS and LAPACK. - Include CMakeLists.txt files for cmake installations. - Include .vcproj and .vcsln files for Visual C++ installations.

    posted 352 days ago

  • tmv-cpp 0.62 file released: LICENSE

    Changes from version 0.61 to 0.62: (See the History section in the full documentation for changes from previous versions to 0.61.) Here is a brief list of the more important changes: - Corrected an error with m.DivIsSet(); - Corrected the documentation regarding the m.SVD() access, especially that S is now a DiagMatrix, rather than a Vector. - Changed behavior of methods like m.SVD(). Now, if SV has not been set already, then it will set it, rather than give an error. - Added ListInit method for initializing a vector or matrix. - Improved SmallMatrix class. Now it is not derived from GenMatrix (or even BaseMatrix), thus removing the virtual table. This greatly speeds up a lot of calculations. I also specialized some routines for 2x2 and 3x3 matrices, like Det and Inverse. The caveat is that some things that used to be possible with SmallMatrix are not now. Most importantly, arithmetic results can not be automatically instantiated any more. They need to be assigned to a location, either SmallMatrix or Matrix. I also inlined all the division routines, rather than have it call the regular Matrix division routines. - Removed some ViewOf commands that are clearer with a different notation. d = DiagMatrixViewOf(m) --> d = DiagMatrixViewOf(m.diag()) U = UpperTriMatrixViewOf(m) --> U = m.UpperTri() U = UpperTriMatrixViewOf(m,UnitDiag) --> U = m.UpperTri(UnitDiag) U = UpperTriMatrixViewOf(U2,UnitDiag) --> U = U2.ViewAsUnitDiag() - Fixed problems with LAPACK functions dstegr and sstegr. Now TMV can detect when stegr fails and run the alternate stedc instead. - Added scons installation option. - Added ability to use Fortran versions of BLAS and LAPACK. - Include CMakeLists.txt files for cmake installations. - Include .vcproj and .vcsln files for Visual C++ installations.

    posted 352 days ago

  • tmv-cpp 0.62 file released: INSTALL

    Changes from version 0.61 to 0.62: (See the History section in the full documentation for changes from previous versions to 0.61.) Here is a brief list of the more important changes: - Corrected an error with m.DivIsSet(); - Corrected the documentation regarding the m.SVD() access, especially that S is now a DiagMatrix, rather than a Vector. - Changed behavior of methods like m.SVD(). Now, if SV has not been set already, then it will set it, rather than give an error. - Added ListInit method for initializing a vector or matrix. - Improved SmallMatrix class. Now it is not derived from GenMatrix (or even BaseMatrix), thus removing the virtual table. This greatly speeds up a lot of calculations. I also specialized some routines for 2x2 and 3x3 matrices, like Det and Inverse. The caveat is that some things that used to be possible with SmallMatrix are not now. Most importantly, arithmetic results can not be automatically instantiated any more. They need to be assigned to a location, either SmallMatrix or Matrix. I also inlined all the division routines, rather than have it call the regular Matrix division routines. - Removed some ViewOf commands that are clearer with a different notation. d = DiagMatrixViewOf(m) --> d = DiagMatrixViewOf(m.diag()) U = UpperTriMatrixViewOf(m) --> U = m.UpperTri() U = UpperTriMatrixViewOf(m,UnitDiag) --> U = m.UpperTri(UnitDiag) U = UpperTriMatrixViewOf(U2,UnitDiag) --> U = U2.ViewAsUnitDiag() - Fixed problems with LAPACK functions dstegr and sstegr. Now TMV can detect when stegr fails and run the alternate stedc instead. - Added scons installation option. - Added ability to use Fortran versions of BLAS and LAPACK. - Include CMakeLists.txt files for cmake installations. - Include .vcproj and .vcsln files for Visual C++ installations.

    posted 352 days ago

Rate and Review

Be the first person to add a text review.

Would you recommend this project?






<

Related Projects

Template Matrix/Vector Library for C++ Actions

Thanks for your rating!

Would you also like to write a review?





Skip Review

Thanks for your review!

Get credit for your review by logging in via OpenID. Click your account provider:

No Thanks