📄 temptrain.m
字号:
function temptrain(str,tempname,path,ele,sel)
si=size(str);
if sel==1
try
disp('use old template');
s=load([path,tempname]);
temp=s.temp;
catch
disp('create new template');
end
elseif sel==0
disp('create new template');
end
for k=1:length(str)
xy=[ele(k);paracal([path,str(k,:)])];
try
temp=[temp,xy];
catch
temp=xy;
end
end
save([path,tempname],'temp');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -