
How to initialize static variable in C caller blocks during simulation
19 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
float func_1(void)
{
static float a = 0;
a = a +1;
return a;
}
Simulation setting Fixed step size = 0.1s. Run simulation for 1 second:
- First simulation: a = 10
- Second simulation: a = 20
- Third simulation: a = 30
It seems that re-run simulation after ending one simulation, the "a" wil stay same as the value of the last simulation.
I understnad for global variables we can write a initilization function to initialize it. How about the static variable within the function?
0 Commenti
Risposte (1)
Angelo Yeo
il 5 Dic 2022
The "C Caller" block creates temporal C and header files, compiles these and creates .dll files under the slprj folder. These .dll files hold values of static variables between simulations.
Can you go to the Model Explorer and open "Callbacks" for the model? And, please type in
slcc('clearCustomCodeModules')
in "InitFcn".

This will solve the issue with initializing static variables in C Caller blocks.
Please check attached file for a specific example.
1 Commento
Vedere anche
Categorie
Scopri di più su Simulink Functions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!