lessblnk.m
来自「内模控制器(IMC)工具箱。包括参数整定、PID控制器参数转换等」· M 代码 · 共 8 行
M
8 行
function [pds]=lessblnk(pds)
%This function get rid of the space in a string
% and replace by comma
while ~isempty(findstr(pds,' '))
pds=strrep(pds,' ',' ');
end
pds=strrep(pds,' ',', ');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?