Why am I getting "Potential conflicting usages of identifier "FALSE": a parameter and Language Keywords"

5 visualizzazioni (ultimi 30 giorni)
When trying to build a Simulink/Stateflow model in Matlab 2016b for use on a dSpace Microautobox I am getting the error "Potential conflicting usages of identifier 'FALSE': a parameter, and Language Keywords". I have used this same model and associated variables in version 2013a without any issues. Target file for the code generator is rti1401.tlc. Any insight would be appreciated.

Risposte (1)

Fangjun Jiang
Fangjun Jiang il 5 Ott 2021
Modificato: Fangjun Jiang il 5 Ott 2021
You know 'false' is used by MATLAB as logical value for 0. I think 'FALSE' might be used by Stateflow or some customized definition as the same as 'false'. So don't use 'FALSE' as a variable name in your code or model.
>> false
ans =
logical
0
>> FALSE
Undefined function or variable 'FALSE'.

Prodotti


Release

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by