  | NMathFunctionsSin(DoubleVector) Method | 
            Creates a new vector with the same size as a given vector, whose values are the 
            result of applying the sine function to each element of the vector.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleVector Sin(
	DoubleVector v
)
Public Shared Function Sin ( 
	v As DoubleVector
) As DoubleVector
public:
static DoubleVector^ Sin(
	DoubleVector^ v
)
static member Sin : 
        v : DoubleVector -> DoubleVector Parameters
- v  DoubleVector
 - A vector.
 
Return Value
DoubleVectorA new vector.
Remarksu[i] = System.Math.Sin(v[i])
See Also