Click or drag to resize

DistanceSADT(VectorT, VectorT) Method

Sum of Absolute Difference (SAD), i.e. the L1-norm (Manhattan) of the difference.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double SAD<T>(
	Vector<T> a,
	Vector<T> b
)
where T : struct, new(), IEquatable<T>, IFormattable

Parameters

a  VectorT

[Missing <param name="a"/> documentation for "M:Altaxo.Calc.Distance.SAD``1(Altaxo.Calc.LinearAlgebra.Vector{``0},Altaxo.Calc.LinearAlgebra.Vector{``0})"]

b  VectorT

[Missing <param name="b"/> documentation for "M:Altaxo.Calc.Distance.SAD``1(Altaxo.Calc.LinearAlgebra.Vector{``0},Altaxo.Calc.LinearAlgebra.Vector{``0})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Calc.Distance.SAD``1(Altaxo.Calc.LinearAlgebra.Vector{``0},Altaxo.Calc.LinearAlgebra.Vector{``0})"]

Return Value

Double

[Missing <returns> documentation for "M:Altaxo.Calc.Distance.SAD``1(Altaxo.Calc.LinearAlgebra.Vector{``0},Altaxo.Calc.LinearAlgebra.Vector{``0})"]

See Also