Skip to content

Commit c1e7a5b

Browse files
committed
add LinearRegression1
1 parent e409748 commit c1e7a5b

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

data-haskell-examples.cabal

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ executable data-haskell-examples
5555
-with-rtsopts=-N
5656
hs-source-dirs: examples
5757
main-is: examples.hs
58+
other-modules: LinearRegression1
5859
build-depends:
5960
base >= 4.7 && < 5,
6061
protolude,

examples/LinearRegression1.hs

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{-# LANGUAGE NoImplicitPrelude #-}
2+
module LinearRegression1 where
3+
4+
import Protolude
5+
import Data.Vector as V
6+
import Numeric.LinearAlgebra as H

0 commit comments

Comments
 (0)