diff options
Diffstat (limited to 'examples/error.hs')
-rw-r--r-- | examples/error.hs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/error.hs b/examples/error.hs new file mode 100644 index 0000000..f13a48e --- /dev/null +++ b/examples/error.hs | |||
@@ -0,0 +1,20 @@ | |||
1 | import Numeric.GSL | ||
2 | import Numeric.LinearAlgebra | ||
3 | import Prelude hiding (catch) | ||
4 | import Control.Exception | ||
5 | |||
6 | test x = catch | ||
7 | (print x) | ||
8 | (\e -> putStrLn $ "captured ["++ show (e :: SomeException) ++"]") | ||
9 | |||
10 | main = do | ||
11 | setErrorHandlerOff | ||
12 | |||
13 | test $ log_e (-1) | ||
14 | test $ 5 + (fst.exp_e) 1000 | ||
15 | test $ bessel_zero_Jnu_e (-0.3) 2 | ||
16 | |||
17 | test $ (linearSolve 0 4 :: Matrix Double) | ||
18 | test $ (linearSolve 5 (sqrt (-1)) :: Matrix Double) | ||
19 | |||
20 | putStrLn "Bye" \ No newline at end of file | ||