UniVariateFunctionFamily¶
- class UniVariateFunctionFamily(*args)¶
Base class for univariate function factories.
Methods
build
(order)Build the -th order univariate function.
Accessor to the object's name.
getId
()Accessor to the object's id.
Accessor to the underlying implementation.
getName
()Accessor to the object's name.
setName
(name)Accessor to the object's name.
- __init__(*args)¶
- build(order)¶
Build the -th order univariate function.
- Parameters:
- nint,
Function order.
- Returns:
- function
UniVariateFunction
Requested univariate function.
- function
- getClassName()¶
Accessor to the object’s name.
- Returns:
- class_namestr
The object class name (object.__class__.__name__).
- getId()¶
Accessor to the object’s id.
- Returns:
- idint
Internal unique identifier.
- getImplementation()¶
Accessor to the underlying implementation.
- Returns:
- implImplementation
A copy of the underlying implementation object.
- getName()¶
Accessor to the object’s name.
- Returns:
- namestr
The name of the object.
- setName(name)¶
Accessor to the object’s name.
- Parameters:
- namestr
The name of the object.