Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
showVersion :: Version -> Stringsimple-cabal SimpleCabal render a Version
-
srtree Algorithm.SRTree.ConfidenceIntervals No documentation available.
showExpr :: Fix SRTree -> Stringsrtree Data.SRTree.Print convert a tree into a string in math notation
>>> showExpr $ "x0" + sin ( tanh ("t0" + 2) ) "(x0 + Sin(Tanh((t0 + 2.0))))"showExprWithVars :: [String] -> Fix SRTree -> Stringsrtree Data.SRTree.Print convert a tree into a string in math notation given named vars.
>>> showExprWithVar ["mu", "eps"] $ "x0" + sin ( "x1" * tanh ("t0" + 2) ) "(mu + Sin(Tanh(eps * (t0 + 2.0))))"showLatex :: Fix SRTree -> Stringsrtree Data.SRTree.Print Displays a tree as a LaTeX compatible expression.
>>> showLatex $ "x0" + sin ( tanh ("t0" + 2) ) "\\left(x_{, 0} + \\operatorname{sin}(\\operatorname{tanh}(\\left(\\theta_{, 0} + 2.0\\right)))\\right)"showLatexWithVars :: [String] -> Fix SRTree -> Stringsrtree Data.SRTree.Print No documentation available.
-
srtree Data.SRTree.Print No documentation available.
showPython :: Fix SRTree -> Stringsrtree Data.SRTree.Print Displays a tree as a numpy compatible expression.
>>> showPython $ "x0" + sin ( tanh ("t0" + 2) ) "(x[:, 0] + np.sin(np.tanh((t[:, 0] + 2.0))))"showTikz :: Fix SRTree -> Stringsrtree Data.SRTree.Print Displays a tree in Tikz format
showOutput :: Output -> Fix SRTree -> Stringsrtree Text.ParseSR Returns the corresponding function from Data.SRTree.Print for a given Output.