Click or drag to resize

VectorMax Method

Returns a vector each of whose elements is the maximal from the corresponding ones of argument vectors. Note that dimensions of the arguments must match.

Namespace: Altaxo.Calc.Ode.Obsolete
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Vector Max(
	Vector v1,
	Vector v2
)

Parameters

v1  Vector
First vector
v2  Vector
Second vector

Return Value

Vector
vector v3 such that for each i = 0...dim(v1) v3[i] = max( v1[i], v2[i] )
See Also