필터 지우기
필터 지우기

Problems with adding block from target link into a model

조회 수: 17 (최근 30일)
Patrik
Patrik 2011년 6월 16일
Hi
I’m trying to add a block from the library TargetLink with the command: "add_block('tllib/Constant','mysys/nameofconstant','Position',[]).
But Matlab answers with:"??? Error using ==> add_block There is no block named 'tllib/Constant'.".
But if there already exist a model in the same folder containing a TargetLink block, then Matlab has no problem executing the command.
Do anyone have a idea how to fix this problem or how to make a work around.
//Patrik

채택된 답변

Arnaud Miege
Arnaud Miege 2011년 6월 16일
You maybe need to load the library before using add_block:
load_system('tllib');
add_block('tllib/Constant','mysys/nameofconstant','Position',[]);
HTH,
Arnaud

추가 답변 (2개)

Fangjun Jiang
Fangjun Jiang 2011년 6월 16일
Yep, this happens. What you need to do is to make sure that 'tllib' is loaded first. You can use load_system('tllib');

Patrik
Patrik 2011년 6월 16일
Thanks a lot! It works now. I have been looking for a solution for two hours, next time I will post a question hear earlier.
//Patrik

카테고리

Help CenterFile Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by