noise_amp_mimo.m
来自「内模控制器(IMC)工具箱。包括参数整定、PID控制器参数转换等」· M 代码 · 共 9 行
M
9 行
function [e]=noise_amp_MIMO(qs,order,Na,y)
% [e]=noise_amp_e(qs,order,Na,y)
% This function compute the filter time constant to satisfy noise amplification.
n=length(order);
e=ones(1,n)*1e-2;
option=optimset('LargeScale','off','Display','off');
e=fsolve('mimo_noise',e,option,qs,order,Na,y);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?