- 0 — name does not exist or cannot be found for other reasons. For example, if name exists in a restricted folder to which MATLAB® does not have access, exist returns 0.
- 1 — name is a variable in the workspace.
- 2 — name is a file with extension .m, .mlx, or .mlapp, or name is the name of a file with a non-registered file extension (.mat, .fig, .txt).
- 3 — name is a MEX-file on your MATLAB search path.
- 4 — name is a loaded Simulink® model or a Simulink model or library file on your MATLAB search path.
- 5 — name is a built-in MATLAB function. This does not include classes.
how to check if an specific name is existed inside a simulink
조회 수: 5 (최근 30일)
이전 댓글 표시
i want to check if an specific name(parameter,signallines,..) is existed inside a simulink model, if use can find_system work in this case? or any more quick command can be used to meet this requirement.
댓글 수: 0
채택된 답변
atharva
2023년 11월 10일
Hey Wenchao,
I understand that you are trying to check if a specific name is a parameter or is a variable declared inside a simulink model.
exist name returns the type of name as a number. This list describes the type associated with each value:
You can find more about the function exist on Mathworks Documentation - https://www.mathworks.com/help/matlab/ref/exist.html
I hope this helps!
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!