I need help to clear error
조회 수: 9 (최근 30일)
이전 댓글 표시
'discrete average model 3' is not a valid model name because it is not a valid MATLAB function name.
This is the error that occur while running my model.
But the name is autogenerated. How can i fix this error?
댓글 수: 0
답변 (1개)
Dhruv
2025년 6월 2일
The error occurs because 'discrete average model 3' is not a valid MATLAB function name. It contains spaces, which are not allowed.
In MATLAB, file names must start with a letter and can only contain alphanumeric characters and underscores. To fix it, rename the model or file to a valid name like 'discrete_average_model_3'. Also, check any subsystem or block names for invalid characters and update them. This should resolve the error during simulation or code generation.
I hope this helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Large-Scale Modeling에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!