Creation of Simulink Libraries

조회 수: 4 (최근 30일)
Sameer
Sameer 2015년 4월 8일
댓글: Sameer 2015년 4월 9일
Hello all
I have created a Simulink library but the library I created is linked to its block. I want to have it such a way that all the blocks which I am using in a model from this lib must be unlinked. So that any further change either in Model block or Library should not have any effect on each other.
It should be in such a way that it's block should be unlinked from the library the moment it is used in a model.
Hope to hear from you guys soon.
Best Regards

채택된 답변

Sebastian Castro
Sebastian Castro 2015년 4월 8일
편집: Sebastian Castro 2015년 4월 8일
Yes, you can do this.
When you drag a block in from a library, it essentially copies and pastes it into your new model. So, the key is to programmatically disable the library link when this block is copied.
To do this, you can right-click your block and go to Properties. Then, go to the Callbacks tab. Then, add the following line to your CopyFcn callback:
>> set_param(gcb,'LinkStatus','inactive');
Does this work?
- Sebastian
  댓글 수: 3
Sebastian Castro
Sebastian Castro 2015년 4월 9일
You can certainly nest libraries. If you drag a block from one library to another library other, it will preserve the original library link.
I'd be careful about doing this, though, because it makes you very prone to unwanted changes... although the "Resolve Links" dialog has gotten much better in the last few releases with regards to resolving multi-level library links.
- Sebastian
Sameer
Sameer 2015년 4월 9일
Hi, thanks a lot. But let me try to be more specific in explaning my Question. Is such an arrangement possible?
If yes then Please throw some light.
Thanking you in anticipation.
Regards

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Libraries and Blocksets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by