能干信封

文章
4
资源
0
加入时间
3年1月8天

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 ..