フィルターのクリア

codegeneration array out of bounds check

4 ビュー (過去 30 日間)
Bernhard Baier
Bernhard Baier 2019 年 2 月 25 日
回答済み: Krishna Zanwar 2019 年 2 月 28 日
Hi there,
I'm using the Simulink CodeGeneration to generate C-Code from a simple test Model:
SimulinkTestModell.PNG
The Counter is a 4-Bit counter and the Matlab function is defined as written below:
function y = fcn(u)
persistent fkt;
if isempty(fkt)
fkt = single([1 0.7 0.5 0.3 0.2 0.1]);
end
y = fkt(u);
During the Simulation of this model there is the correct error displayed that the array index 7 is out of Bounds. But if I use the CodeGeneration to generate C Code from this SubSystem the code just get's generated without an error.
The Question would now be ift there is a possibility during the CodeGeneration to check if array indexes could get out of bounds without having to simulate the Model first? The Array out of Bounds Parameter for the CodeGeneration is active but does not apply to this error.
This model is only a simple demonstration of an error occuring in a much more complex model. But since the other Model uses Hardware Inputs to generate many of it's control variables it is not easily to simulate.

採用された回答

Krishna Zanwar
Krishna Zanwar 2019 年 2 月 28 日
Hey Bernhard,
Simulink does not support checking out of bound array possibility during code generation.
You can run Simulnk Design Verification on the model to get these errors.
Or you can test the index inside your function block and get the output.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeVerification, Validation, and Test についてさらに検索

製品


リリース

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by