Uses of Interface
org.episteme.core.mathematics.analysis.ScalarField
Packages that use ScalarField
Package
Description
-
Uses of ScalarField in org.episteme.core.mathematics.analysis
Methods in org.episteme.core.mathematics.analysis that return ScalarFieldModifier and TypeMethodDescriptionstatic <V> ScalarField<V> Creates a scalar field from a lambda expression.static <V> ScalarField<V> Creates a scalar field with known dimension. -
Uses of ScalarField in org.episteme.core.mathematics.analysis.vectorcalculus
Methods in org.episteme.core.mathematics.analysis.vectorcalculus that return ScalarFieldModifier and TypeMethodDescriptionstatic ScalarField<PointND> Divergence.asField(VectorField<PointND> field, Real h) Returns a scalar field representing the divergence of the vector field.static ScalarField<PointND> Laplacian.asField(ScalarField<PointND> field, Real h) Returns a scalar field representing the Laplacian of the input field.Methods in org.episteme.core.mathematics.analysis.vectorcalculus with parameters of type ScalarFieldModifier and TypeMethodDescriptionstatic VectorField<PointND> Gradient.asField(ScalarField<PointND> field, Real h) Returns a vector field representing the gradient of the scalar field.static ScalarField<PointND> Laplacian.asField(ScalarField<PointND> field, Real h) Returns a scalar field representing the Laplacian of the input field.Gradient.compute(ScalarField<PointND> field, PointND point, Real h) Computes the gradient of a scalar field at a point using finite differences.static RealLaplacian.compute(ScalarField<PointND> field, PointND point, Real h) Computes the Laplacian of a scalar field at a point.