Why static arrays in the C code generated from simulink!!

1 Ansicht (letzte 30 Tage)
Asang singh
Asang singh am 8 Jan. 2020
In Matlab Simulink 2018b, I have assigned an array to a constant value, shown below:
H = [ inp0 inp1 -inp2 inp3; 0 1 0 0];
So while generating its C code, the 2nd column of H variable i.e. [0 1 0 0], is generating as static, shown below:
static int8_T tmp_0[4] = { 0, 1, 0, 0 };
But I don't need the static type variable, is there any way to supress this.

Antworten (0)

Kategorien

Mehr zu Simulink finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by