]> gitweb.michael.orlitzky.com - numerical-analysis.git/commitdiff
Add the list_plot' function to Piecewise.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 19 Feb 2014 00:50:32 +0000 (19:50 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 19 Feb 2014 00:50:32 +0000 (19:50 -0500)
src/Piecewise.hs

index cf71d05a6615081f1fed399df8ee4a5c2716f00c..e550e4bf54659f434e88ea5ea369e5c61e3ada90 100644 (file)
@@ -4,11 +4,15 @@ module Piecewise (
   Piecewise(..),
   evaluate,
   evaluate',
-  from_intervals )
+  from_intervals,
+  list_plot' )
 where
 
 import qualified Algebra.Additive as Additive ( C )
+import qualified Algebra.Field as Field ( C )
 import Control.Arrow ( first )
+import Data.Maybe ( catMaybes )
+import Misc ( partition )
 import NumericPrelude
 import qualified Prelude as P
 
@@ -77,3 +81,27 @@ from_intervals =
   where
     f :: (a,a) -> Predicate a
     f (x1,x2) x = x1 <= x && x <= x2
+
+
+-- | Plot a piecewise function over an interval @(x0,x1)@ using
+--   'evaluate''. Return the result a list of @(x,y)@ tuples.
+--
+--   Examples:
+--
+--   >>> let p1 = ((-1,0), \x -> -x) :: ((Double,Double), Double->Double)
+--   >>> let p2 = ((0,1), \x -> x) :: ((Double,Double), Double->Double)
+--   >>> let ivs = [p1, p2]
+--   >>> let pw = from_intervals ivs
+--   >>> list_plot' pw (-2) 2 4
+--   [(-2.0,0.0),(-1.0,1.0),(0.0,-0.0),(1.0,1.0),(2.0,0.0)]
+--
+list_plot' :: (Additive.C a, Field.C a)
+           => Piecewise a
+           -> a
+           -> a
+           -> Int
+           -> [(a,a)]
+list_plot' pw x0 x1 subintervals =
+  [ (x, evaluate' pw x) | x <- nodes ]
+  where
+    nodes = x0 : (map snd $ partition subintervals x0 x1)