This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE RankNTypes #-} | |
module ApproximateJacobian | |
( | |
approximateJacobian | |
) | |
where | |
data SimpleDerivative = Constant Double | |
| ConstantDerivative Double |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Log: | |
1) Start with Raspbian image fresh on SD card | |
2015-02-16-raspbian-wheezy | |
2) | |
Expand filesystem | |
Configure for en-US, Eastern Time Zone, en-US keyboard, camera enabled | |
Ctrl-alt-backspace terminates x server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE GADTs #-} | |
{-# LANGUAGE KindSignatures #-} | |
{-# LANGUAGE LambdaCase #-} | |
{-# LANGUAGE StandaloneDeriving #-} | |
{-# LANGUAGE QuantifiedConstraints #-} | |
{-# LANGUAGE Arrows #-} | |
module Bonsai.Provenance | |
where | |
import Control.Category |