Home > Extreme Optimization Mathematics Library for .NET > Reference > Extreme.Mathematics.Curves Namespace > FunctionBasis Class > Methods


Extreme Optimization Mathematics Library for .NET

FunctionBasis.DerivativesAt Method 

Evaluates the derivatives of the member functions of this FunctionBasis at a specified value.

[Visual Basic]
Public Function DerivativesAt( _
   ByVal x As Double _
) As GeneralVector
[C#]
public GeneralVector DerivativesAt(
   double x
);

Parameters

x
A real number.

Return Value

A Vector containing the derivatives of the member functions.

Remarks

This method creates a new Vector every time it is called. In some situations, it may be more efficient to call the FillDerivatives method instead.

Exceptions

Exception TypeCondition
InvalidOperationExceptionNo derivatives are available for this FunctionBasis.

See Also

FunctionBasis Class | Extreme.Mathematics.Curves Namespace