目录
Simulink.defaultModelTemplate的功能是设置或获取默认模型模板。
语法
Simulink.defaultModelTemplate(templatename)
templatepath = Simulink.defaultModelTemplate
说明
Simulink.defaultModelTemplate(templatename) 将由 templatename 指定的模板文件设置为默认的模型模板,用于创建新模型。这个设置在 Simulink® 会话之间是持久的。
templatepath = Simulink.defaultModelTemplate 获取当前默认模型模板的完整路径。
示例
设置默认模型模板
Simulink.defaultModelTemplate('simple_simulation.sltx')
获取默认模型模板
mydefaulttemplate = Simulink.defaultModelTemplate
清除并恢复默认模型模板
使用set_param来设置根块图参数。这将清除默认模板,使得新模型将继承根块图的这个属性,并会发出警告。
set_param(0,'StopTime','99');
恢复默认模板。
Simulink.defaultModelTemplate('$restore');
参数说明
templatename
— Template file name
模板文件名,指定为字符向量。如果模板不在 MATLAB® 路径上,请指定模板文件的完全限定路径和 *.sltx 扩展名。
templatepath
— Template path
模板路径,指定为字符向量,显示当前默认模型模板的完整路径。