how can I unlock a library file (not a library block) by command line.
조회 수: 7 (최근 30일)
이전 댓글 표시
how can I unlock a library file (not a library block) by command line? for example, open a myLib.slx file and need to edit. The first thing need to do is to unlock this model. So Simulink will show: Attempt to modify 'untitledLib', which is or is in a locked library. The action performed requires you to unlock this library.So I need to hit * unlock this library. but i want to do this by command line. it seems set_param(gcb, 'Lock', 'off'); set_param(gcb, 'LinkStatus', 'inactive') are not works.
댓글 수: 0
채택된 답변
Madhu Govindarajan
2015년 11월 10일
Have you tried it on the library itself instead of the blocks??? GCB is for blocks, I would recommend the following
>> set_param(gcs,'Lock','off')
추가 답변 (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!