Vector<T>.Max Core Method
            
            Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Overload List
| Max | Returns a vector whose elements are the maximum of the components of a vector and a real number. | 
| Max | Returns a vector whose elements are the maximums of the components of two vectors. | 
MaxCore(T, Vector<T>)
            Returns a vector whose elements are the maximum of the components of a vector
            and a real number.
            
protected virtual Vector<T> MaxCore(
	T value,
	Vector<T>? result
)Parameters
Return Value
Vector<T>A vector whose elements are the largest of the corresponding element of this vector and value.
MaxCore(Vector<T>, Vector<T>)
            Returns a vector whose elements are the maximums of the components of two vectors.
            
protected virtual Vector<T> MaxCore(
	Vector<T> other,
	Vector<T>? result
)Parameters
Return Value
Vector<T>A vector whose elements are the largest of the corresponding elements of this vector and other.
Exceptions
| Dimension | The length of this vector is not equal to the length of other.  |