|
MappermappedModel Method
|
Calculate a mapped model based on an input-model, a list of mappers and a list of parameters.
Namespace:
Karamba.Utilities.Mappings
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static Model mappedModel(
Model in_model,
IReadOnlyList<Mapping> in_mappings,
IReadOnlyList<double> in_pars
)
Public Shared Function mappedModel (
in_model As Model,
in_mappings As IReadOnlyList(Of Mapping),
in_pars As IReadOnlyList(Of Double)
) As Model
public:
static Model^ mappedModel(
Model^ in_model,
IReadOnlyList<Mapping^>^ in_mappings,
IReadOnlyList<double>^ in_pars
)
static member mappedModel :
in_model : Model *
in_mappings : IReadOnlyList<Mapping> *
in_pars : IReadOnlyList<float> -> Model
Parameters
- in_model
- Type: Karamba.ModelsModel
model to base the mapping on. - in_mappings
- Type: System.Collections.GenericIReadOnlyListMapping
modifiers to be applied on the model. - in_pars
- Type: System.Collections.GenericIReadOnlyListDouble
input parameters to control the mapping.
Return Value
Type:
ModelMapped model.
See Also