- https://www.mathworks.com/help/matlab/ref/restoredefaultpath.html
- https://www.mathworks.com/help/matlab/ref/rehash.html
- https://www.mathworks.com/help/simulink/slref/sl_refresh_customizations.html
Error while opening model configuration parameters in matlab
1 回表示 (過去 30 日間)
古いコメントを表示
hi,
I am getting the error while opening model configuration parameters in matlab. How to overcome this. This error message is attached with this.
0 件のコメント
回答 (1 件)
Spruha
2025 年 2 月 21 日
Hi MUTHUKUMARASAMY,
I see you are getting an error while trying to open “Model configuration Parameters”. The error suggests that there might be a function in your MATLAB path that is shadowing a built-in MATLAB function.
You may follow the below steps to resolve the error:
1. Try using the which command to check if any user-defined function is shadowing MATLAB built-in functions.
>>which -all <function_name>
You may refer to this documentation to learn more about which command: https://www.mathworks.com/help/matlab/ref/which.html
2. Reset the MATLAB path to its default state by executing following commands:
>> restoredefaultpath
>> rehash toolboxcache
>> sl_refresh_customizations
You can refer to the following documentation for more information about the mentioned commands:
Hope this helps!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Problem-Based Optimization Setup についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!