概述
Name_Block=gcb;%gcb获取当前选择的模块的路径
[time,data,signames,groupnames]=signalbuilder(Name_Block);
outPortList=signames;
outSigName=strrep(outPortList,Name_Block,'');%delete the direction name for signal name
outPortHandle=get_param(Name_Block,'PortHandles');
for i=1:length(outSigName)
set(outPortHandle.Outport(i),'Name',outSigName{i},'DataLoggong','on');
end
上述代码为Matlab脚本,功能:为点击选中的Signalbuilder模块的所有输出信号线自动命名并设置Log,以便使用Simulation Data Inspector观测。
2.生成多个Test Harness的函数调用
%需要将函数放到当前路径下才能调用,且点击所选模块需没问题。例如未导入mat文件使得模块中存在无法识别的变量,则无法执行成功
function CreateHarnessBlock(TestCaseName,TestCaseNum)
BlockPath=gcb;%获取点击选择的模块路径
for i=1:TestCaseNum
if i<10
try
temp=[TestCaseName,'_00',num2str(i)];%使用连接符[]进行字符串拼接
sltest.harness.create(BlockPath,'Name',temp,'Source','Signal Builder');%生成harness模块,名称为temp字符串,信号源选择Signal Builder
catch
disp('生成harness模块失败,请检查所选模块是否存在问题');
end
else
try
temp=[TestCaseName,'_0',num2str(i)];%字符串拼接
sltest.harness.create(BlockPath,'Name',temp,'Source','Signal Builder');%生成harness模块,名称为temp字符串,信号源选择Signal Builder
catch
disp('生成harness模块失败,请检查所选模块是否存在问题');
end
end
end
最后
以上就是俏皮芹菜为你收集整理的Simulink连线脚本的全部内容,希望文章能够帮你解决Simulink连线脚本所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复