Filter löschen
Filter löschen

Create non-default constructor

3 Ansichten (letzte 30 Tage)
db1024
db1024 am 23 Mär. 2020
Hi,
I am generation a C++ class from a Simulink model using Embedded coder. Therefore, I set the corresponding parameter code interface packaging to C++ class [1].
The generated C++ class always contains a default constructor like
// Constructor
MyModelClass::MyModelClass()
{
static const P_MyParam_t MyParam_P_temp = {
// Variable: Param
// Referenced by:
// '<S1>/Constant1'
// '<S1>/Constant2'
{
1.0F,
0.2F
}
}; // Modifiable parameters
// Initialize tunable parameters
MyParam_P = MyParam_P_temp;
}
where MyParam_P is a member variable of the generated C++ class.
Is there a way to generate a non-default constructur similar to the following code snippet?
// Constructor
MyModelClass::MyModelClass(const P_MyParam_t* MyParam_P_temp)
{
// Initialize tunable parameters
MyParam_P = *MyParam_P_temp;
}
Thank you for your help!

Antworten (0)

Kategorien

Mehr zu Simulink Coder finden Sie in Help Center und File Exchange

Produkte


Version

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by