-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Haskell SuperCollider Plotting -- -- Plotting functions for hsc3 @package hsc3-plot @version 0.13 module Sound.SC3.Plot.Histogram data Histogram x Histogram :: [x] -> [x] -> Histogram x -- | Calculate Histogram for number of bins n and sample data -- x. histogram :: Int -> [Double] -> Histogram Double module Sound.SC3.Plot eps :: Attribute -- | Plot Envelope data. -- --
-- plotEnvelope [envPerc 0.2 1,envSine 1 0.75] --plotEnvelope :: (C t, Ord t, Floating t, Enum t) => [Envelope t] -> IO () -- | Plot Histogram data. -- --
-- plotHistogram [histogram 3 [0,0,1,2,2,2]] --plotHistogram :: C t => [Histogram t] -> IO () type Table x = [x] -- | Plot Table data, ie. y values at equal x -- increments. -- --
-- plotTable [[0,2..12],[0..6],[0,4..12]] --plotTable :: C t => [Table t] -> IO () type Coord x = [(x, x)] plotCoord :: C t => [Coord t] -> IO ()