diff options
author | Vivian McPhail <haskell.vivian.mcphail@gmail.com> | 2010-09-24 06:30:24 +0000 |
---|---|---|
committer | Vivian McPhail <haskell.vivian.mcphail@gmail.com> | 2010-09-24 06:30:24 +0000 |
commit | 1308aae2531b46d33919250b9cfb1c1fd7360550 (patch) | |
tree | 9d2ccaa740d6cbae8b46c0e5a8bccac80bfa72a6 /lib/Numeric/Container.hs | |
parent | 5747804b85c0f8e0472bc92cc2f8197b2d6e7b59 (diff) |
add arctan to Container class
Diffstat (limited to 'lib/Numeric/Container.hs')
-rw-r--r-- | lib/Numeric/Container.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Numeric/Container.hs b/lib/Numeric/Container.hs index b3f46de..bad941c 100644 --- a/lib/Numeric/Container.hs +++ b/lib/Numeric/Container.hs | |||
@@ -128,3 +128,5 @@ instance Mul Vector Matrix Vector where | |||
128 | (<\>) :: (Field a) => Matrix a -> Vector a -> Vector a | 128 | (<\>) :: (Field a) => Matrix a -> Vector a -> Vector a |
129 | infixl 7 <\> | 129 | infixl 7 <\> |
130 | m <\> v = flatten (linearSolveSVD m (reshape 1 v)) | 130 | m <\> v = flatten (linearSolveSVD m (reshape 1 v)) |
131 | |||
132 | -------------------------------------------------------- | ||