sclio.m
来自「vTools is a toolbox for Matlab 5.3 devel」· M 代码 · 共 17 行
M
17 行
function ssc=sclio(sus,fout,fin)
% ssc=sclio(sus,fout,fin) performs output and input scaling
% of system sus with vectors fout and fin
% by Giampiero Campa 25-aug-95
ssc=sus;
for i=1:length(fout);
ssc=sclout(ssc,i,fout(i));
end
for i=1:length(fin);
ssc=sclin(ssc,i,fin(i));
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?