Click or drag to resize

NMathFunctionsCosh(FloatVector) Method

Creates a new vector with the same size as a given vector, whose values are the result of applying the hyperpolic cosine function to each element of the given vector.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatVector Cosh(
	FloatVector v
)

Parameters

v  FloatVector
A vector.

Return Value

FloatVector
A new vector with the same size as v, whose values are the result of applying the hyperpolic cosine function to each element of v.
Remarks
u[i] = System.Math.Cosh(v[i])
See Also