Uses of Interface
org.episteme.core.mathematics.analysis.series.ComposableSeries
Packages that use ComposableSeries
-
Uses of ComposableSeries in org.episteme.core.mathematics.analysis.series
Methods in org.episteme.core.mathematics.analysis.series that return ComposableSeriesModifier and TypeMethodDescriptionComposableSeries.add(ComposableSeries<T> other) Adds two series: (f + g)(x) = f(x) + g(x).ComposableSeries.compose(ComposableSeries<T> inner) Composes this series with another: f(g(x)).ComposableSeries.multiply(ComposableSeries<T> other) Multiplies two series: (f * g)(x) = f(x) * g(x).Scales the series by a constant: (c * f)(x) = c * f(x).Methods in org.episteme.core.mathematics.analysis.series with parameters of type ComposableSeriesModifier and TypeMethodDescriptionComposableSeries.add(ComposableSeries<T> other) Adds two series: (f + g)(x) = f(x) + g(x).ComposableSeries.compose(ComposableSeries<T> inner) Composes this series with another: f(g(x)).ComposableSeries.multiply(ComposableSeries<T> other) Multiplies two series: (f * g)(x) = f(x) * g(x).