aboutsummaryrefslogtreecommitdiff
path: root/math/tmv/pkg-descr
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2018-01-26 23:14:51 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2018-01-26 23:14:51 +0000
commit1ec427a17dff3a9eeac6c69655438eced2b67bcd (patch)
tree81e8545fdfddd94847779282481eb2d2e1ed7f3f /math/tmv/pkg-descr
parent02dd41460ec5a6cd8fc63f4746e423ac7bad8255 (diff)
downloadports-1ec427a17dff3a9eeac6c69655438eced2b67bcd.tar.gz
ports-1ec427a17dff3a9eeac6c69655438eced2b67bcd.zip
New port: math/tmv: Fast, intuitive linear algebra library for C++
This library can be useful to anybody who needs to write code that involves matrix and vector computations. Please see the documentation here: https://github.com/rmjarvis/tmv/blob/master/doc/TMV_Documentation.pdf Approved by: tcberner (mentor) Differential Revision: D13689
Notes
Notes: svn path=/head/; revision=460061
Diffstat (limited to 'math/tmv/pkg-descr')
-rw-r--r--math/tmv/pkg-descr8
1 files changed, 8 insertions, 0 deletions
diff --git a/math/tmv/pkg-descr b/math/tmv/pkg-descr
new file mode 100644
index 000000000000..8d1d4f40b144
--- /dev/null
+++ b/math/tmv/pkg-descr
@@ -0,0 +1,8 @@
+The Template Matrix/Vector (TMV) Library is a C++ class library designed to
+make writing code with vectors and matrices both transparent and fast.
+Transparency means that when you look at your code months later, it is obvious
+what the code does, making it easier to debug. Fast means the execution time of
+the code should be as fast as possible - this is mostly algorithm dependent, so
+we want the underlying library code to use the fastest algorithms possible.
+
+WWW: https://github.com/rmjarvis/tmv