Configure model parameter for code generation
setModelParameter(
configures the specified model parameter or model parameter
argument for code generation. Use this function to map the specified model
parameter or model parameter argument to the storage
class and storage class property settings that the code generator uses to produce C code for
the parameter or parameter argument.myCodeMappingObj
,modelParameter
,Name,Value
)
In the model code mappings for model
myConfigModel
, set the storage class for model parameter
K1
to ExportedGlobal
.
cm = coder.mapping.api.get('myConfigModel'); setModelParameter(cm,'K1','StorageClass','ExportedGlobal');
Model default
In the model code mappings for model
myConfigModel
, set the storage class for model parameters throughout
the model to Model default
.
cm = coder.mapping.api.get('myConfigModel'); paramHandles = find(cm,'ModelParameters') setModelParameters(cm,paramHandles,'StorageClass','Model default');
In the model code mappings for model
myConfigModel
, set the storage class for model parameters
Table1
and Table2
to
ExportedGlobal
. Set the identifier for the variables representing the
parameters in the generated code to mp_Table1
and
mp_Table2
.
cm = coder.mapping.api.get('myConfigModel'); setModelParameter(cm,'Table1','StorageClass','ExportedGlobal',... 'Identifier','mp_Table1'); setModelParameter(cm,'Table2','StorageClass','ExportedGlobal',... 'Identifier','mp_Table2');
In the model code mappings for model
myConfigModel
, set the storage class for model parameter arguments
LOWER
and UPPER
to
ExportedGlobal
. Set the identifiers for the variables representing
the parameter arguments in the generated code to arg_LOWER
and
arg_UPPER
.
cm = coder.mapping.api.get('myConfigModel'); setModelParameter(cm,'LOWER','StorageClass','ExportedGlobal',... 'Identifier','arg_LOWER'); setModelParameter(cm,'UPPER','StorageClass','ExportedGlobal',... 'Identifier','arg_UPPER');
myCodeMappingObj
— Code mapping objectCodeMapping
objectCode mapping object (model code mappings) returned by a call to function
coder.mapping.api.get
.
Example: myCM
modelParameter
— Name of model parameter or model parameter argumentName of the model workspace parameter or model parameter argument to configure.
Example: 'Table1'
Data Types: char
| string
Specify comma-separated pairs of Name,Value
arguments.
Name
is the argument name and Value
is the
corresponding value. Name
must appear inside quotes. You can specify
several name and value pair arguments as Name1,Value1,…,NameN,ValueN
. The
order of the name and value pair arguments does not matter.
'StorageClass'
— Name of storage classAuto
| Bitfield
| CompilerFlag
| Const
| ConstVolatile
| Define
| Dictionary default
| ExportedGlobal
| ExportToFile
| FileScope
| GetSet
| ImportedDefine
| ImportedExtern
| ImportedExternPointer
| ImportFromFile
| Localizable
| Model default
| Struct
| Volatile
| storage class nameStorage class to set for the specified model parameter or model parameter argument. The name of a predefined storage class or storage class that is defined in the Embedded Coder Dictionary associated with the model. See Configure Parameters for C Code Generation.
'Identifier'
— Name of variableName for the variable that represents the model parameter or model parameter argument in the generated code.
Data Types: char
| string
'DefinitionFile'
— C source fileFile name for a C source file that contains definitions for global data read by
data elements and external code. Applies to storage classes
ExportToFile
and Volatile
.
Data Types: char
| string
'GetFunction'
— Name of get functionName of a get
function that a data element calls in the
generated code. Applies to storage class GetSet
.
Data Types: char
| string
'HeaderFile'
— C header fileFile name for a C header file that contains declarations for global data read by
data elements and external code. Applies to storage classes
ExportToFile
, GetSet
,
ImportFromFile
, and Volatile
.
Data Types: char
| string
'Owner'
— Owner of global dataName of the model that owns global data used by other models in the same model
hierarchy. The code generated for the model that owns the data includes the global
data definition. Applies to storage classes ExportToFile
and
Volatile
.
Data Types: char
| string
'PreserveDimensions'
— Boolean flag indicating whether to preserve dimensions of multidimensional arraysTrue
| False
When model configuration parameter Array layout is set to
Row-major
, a flag that indicates whether to preserve
dimensions of a data element that is represented in generated code as a
multidimensional array. Applies to storage classes ExportToFile
,
ImportFromFile
, Localizable
, and
Volatile
.
Data Types: logical
'SetFunction'
— Name of set functionName of a set
function that a data element calls in the
generated code. Applies to storage class GetSet
.
Data Types: char
| string
'StructName'
— Name of structureName that the code generator uses to identify the structure for a data element in
the generated code. Applies to storage classes Bitfield
and
Struct
.
Data Types: char
| string
'storageClassPropertyName'
— Value of storage class propertyStorage class property defined in the Embedded Coder Dictionary. Values that you can specify vary depending on the storage class definition.
coder.mapping.api.CodeMapping
| coder.mapping.api.get
| find
| getDataDefault
| getModelParameter
| setDataDefault
1. Если смысл перевода понятен, то лучше оставьте как есть и не придирайтесь к словам, синонимам и тому подобному. О вкусах не спорим.
2. Не дополняйте перевод комментариями “от себя”. В исправлении не должно появляться дополнительных смыслов и комментариев, отсутствующих в оригинале. Такие правки не получится интегрировать в алгоритме автоматического перевода.
3. Сохраняйте структуру оригинального текста - например, не разбивайте одно предложение на два.
4. Не имеет смысла однотипное исправление перевода какого-то термина во всех предложениях. Исправляйте только в одном месте. Когда Вашу правку одобрят, это исправление будет алгоритмически распространено и на другие части документации.
5. По иным вопросам, например если надо исправить заблокированное для перевода слово, обратитесь к редакторам через форму технической поддержки.