如何通过API(命令行或MATLAB代码)在MATLAB system composer中更改元件大小?
jvlzgdj91#
使用系统编写器本地API:
archModel= systemcomposer.loadModel('archName'); archComp2Resize= lookup(archModel, Path='archName/archComp') archComp2Resize.Position = [300 600 100 170]
检查代码:第1行〉将模型加载到内存第2行〉从目标组件创建一个对象第3行〉编辑位置,数组具有以下结构[bottomleft topleft bottomright topright]。如需了解更多System Composer编程API请访问此页面:https://www.mathworks.com/help/systemcomposer/referencelist.html请注意,这个问题是Matlab答案的重复。https://ch.mathworks.com/matlabcentral/answers/1923270-change-component-size-in-system-composer?s_tid=srchtitle
1条答案
按热度按时间jvlzgdj91#
使用系统编写器本地API:
检查代码:第1行〉将模型加载到内存第2行〉从目标组件创建一个对象第3行〉编辑位置,数组具有以下结构[bottomleft topleft bottomright topright]。
如需了解更多System Composer编程API请访问此页面:https://www.mathworks.com/help/systemcomposer/referencelist.html
请注意,这个问题是Matlab答案的重复。https://ch.mathworks.com/matlabcentral/answers/1923270-change-component-size-in-system-composer?s_tid=srchtitle