Click or drag to resize
WeightedRegressionLocalT Method (Matrix`1T, Matrix`1T, Vector`1T, Double, FuncDouble, T)

Note: This API is now obsolete.

Locally-Weighted Linear Regression using normal equations.

Namespace: MathNet.Numerics.LinearRegression
Assembly: MathNet.Numerics (in MathNet.Numerics.dll) Version: 3.7
Syntax
C#
[ObsoleteAttribute("Warning: This function is here to stay but its signature will likely change. Opting out from semantic versioning.")]
public static Matrix<T> Local<T>(
	Matrix<T> x,
	Matrix<T> y,
	Vector<T> t,
	double radius,
	Func<double, T> kernel
)
where T : struct, new(), IEquatable<T>, IFormattable

Parameters

x
Type: MatrixT
y
Type: MatrixT
t
Type: VectorT
radius
Type: SystemDouble
kernel
Type: SystemFuncDouble, T

Type Parameters

T

Return Value

Type: MatrixT
See Also