Hoogle Search
Within LTS Haskell 24.58 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
makeLensesWithSuffix :: String -> Name -> Q [Dec]yi-language Yi.Utils No documentation available.
fixedPoint :: (forall s . () => AD s TowerDouble -> AD s TowerDouble) -> Double -> [Double]ad Numeric.AD.Halley.Double The fixedPoint function find a fixedpoint of a scalar function using Halley's method; its output is a stream of increasingly accurate results. (Modulo the usual caveats.) If the stream becomes constant ("it converges"), no further elements are returned.
>>> last $ take 10 $ fixedPoint cos 1 0.7390851332151607
-
ad Numeric.AD.Newton The fixedPoint function find a fixedpoint of a scalar function using Newton's method; its output is a stream of increasingly accurate results. (Modulo the usual caveats.) If the stream becomes constant ("it converges"), no further elements are returned.
>>> last $ take 10 $ fixedPoint cos 1 0.7390851332151607
-
ad Numeric.AD.Newton The fixedPointNoEq function behaves the same as fixedPoint except that it doesn't truncate the list once the results become constant. This means it can be used with types without an Eq instance.
fixedPoint :: (forall s . () => AD s ForwardDouble -> AD s ForwardDouble) -> Double -> [Double]ad Numeric.AD.Newton.Double The fixedPoint function find a fixedpoint of a scalar function using Newton's method; its output is a stream of increasingly accurate results. (Modulo the usual caveats.) If the stream becomes constant ("it converges"), no further elements are returned.
>>> last $ take 10 $ fixedPoint cos 1 0.7390851332151607
fixedPoint :: (Fractional a, Eq a) => (Tower a -> Tower a) -> a -> [a]ad Numeric.AD.Rank1.Halley The fixedPoint function find a fixedpoint of a scalar function using Halley's method; its output is a stream of increasingly accurate results. (Modulo the usual caveats.) If the stream becomes constant ("it converges"), no further elements are returned.
>>> last $ take 10 $ fixedPoint cos 1 0.7390851332151607
fixedPointNoEq :: Fractional a => (Tower a -> Tower a) -> a -> [a]ad Numeric.AD.Rank1.Halley The fixedPointNoEq function behaves the same as fixedPoint except that it doesn't truncate the list once the results become constant. This means it can be used with types without an Eq instance.
fixedPoint :: (TowerDouble -> TowerDouble) -> Double -> [Double]ad Numeric.AD.Rank1.Halley.Double The fixedPoint function find a fixedpoint of a scalar function using Halley's method; its output is a stream of increasingly accurate results. (Modulo the usual caveats.) If the stream becomes constant ("it converges"), no further elements are returned.
>>> last $ take 10 $ fixedPoint cos 1 0.7390851332151607
fixedPoint :: (Fractional a, Eq a) => (Forward a -> Forward a) -> a -> [a]ad Numeric.AD.Rank1.Newton The fixedPoint function find a fixedpoint of a scalar function using Newton's method; its output is a stream of increasingly accurate results. (Modulo the usual caveats.) If the stream becomes constant ("it converges"), no further elements are returned.
>>> last $ take 10 $ fixedPoint cos 1 0.7390851332151607
fixedPointNoEq :: Fractional a => (Forward a -> Forward a) -> a -> [a]ad Numeric.AD.Rank1.Newton The fixedPointNoEq function behaves the same as fixedPoint except that it doesn't truncate the list once the results become constant. This means it can be used with types without an Eq instance.