Customize block callbacks error message

조회 수: 4 (최근 30일)
langrg
langrg 2020년 3월 11일
편집: langrg 2020년 3월 20일
Hello,
I want to specify the InitFcn of a Simulink block, for example 'MyInitFcn'. 'MyInitFcn' is an m file (function) that contains tests, and raises errors (using error Matlab function) with custom error messages, if those tests are bad.
When I run my Simulink (using run Matlab command), Simulink give me back an error window, but the error message does not contain my custom error message. It (more or less) gives me an message that the error comes from the InitFcn, but nothing about my custom error message .
I would like that, at least, part of Simulink error window message contains my custom error message. If it could only contain my custom error message, it would be better again.
Does anyone know how to solve my trouble?
Thanks!
GL.

답변 (1개)

Shresth Sharma
Shresth Sharma 2020년 3월 18일
Hi,
It is my understanding that you are trying to use ‘InitFcn’ callback from the model properties callback of the Simulink to run checks and give custom error messages. The ‘InitFcn’ callback should be used for declaring the variables in the workspace which are not defined and are needed at the time when you run the model. ‘InitFcn’ callback should not be used for checking the model or for commands that simulate the model. Try using ‘StopFcn’ callback for this task. The StopFcn callback will execute when a simulation stops by either running to completion or is stopped by the user.
Go through these documentation links for further details
  댓글 수: 1
langrg
langrg 2020년 3월 20일
편집: langrg 2020년 3월 20일
Hi ,
No, I'm not talking about 'InitFcn' of a model, but 'InitFcn' of a Simulink block (right click, Properties/Callbacks).
I want to check parameters of this block, before simulation starts (just before compilation, when you call 'run' or 'sim' Matlab function).
Thanks!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Model, Block, and Port Callbacks에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by