MATLAB&simulink技巧1: simulink模块的Position属性各参数的含义
作者:互联网
找到句柄
handle = getSimulinkBlockHandle('CANTA_BMS_DEBUG_3/CANTA_BMS_DEBUG_3/Subsystem/Constant')
get(handle)
获得模块的属性,找到Position项,其格式为:
Position项
positon = [a b c d]
- a 模块左侧位置
- b 模块上侧位置
- c 模块右侧位置
- d 模块下侧位置
- 注意:c>a,d>b
可通过程序设置参数,更新位置
pos = [155 0 195 345]
set_param('CANTA_BMS_DEBUG_3/CANTA_BMS_DEBUG_3/Subsystem/Constant','Position',pos)
标签:simulink,CANTA,位置,BMS,MATLAB,模块,DEBUG,Position 来源: https://blog.csdn.net/zhang_xiaoqiang/article/details/120501774