Interface UnivariateDifferentiableMatrixFunction
- 
- All Superinterfaces:
 UnivariateMatrixFunction
public interface UnivariateDifferentiableMatrixFunction extends UnivariateMatrixFunction
Extension ofUnivariateMatrixFunctionrepresenting a univariate differentiable matrix function. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DerivativeStructure[][]value(DerivativeStructure x)Compute the value for the function.- 
Methods inherited from interface org.hipparchus.analysis.UnivariateMatrixFunction
value 
 - 
 
 - 
 
- 
- 
Method Detail
- 
value
DerivativeStructure[][] value(DerivativeStructure x) throws MathIllegalArgumentException
Compute the value for the function.- Parameters:
 x- the point for which the function value should be computed- Returns:
 - the value
 - Throws:
 MathIllegalArgumentException- ifxdoes not satisfy the function's constraints (argument out of bound, or unsupported derivative order for example)
 
 - 
 
 -