本帖最后由 bing_quan 于 2017-8-14 16:25 编辑
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
第1个传递函数应该是H(s)=219.91^6/(s^6+848.85*s^5+360768.64*s^4+9.14*(219.91)^3*s^3+7.46*(219.91)^4*s^2+3.86*(219.91)^5*s+219.91^6),在MATLAB中的参数如下
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Transfer Fcn
The numerator coefficient can be a vector or matrix expression. The denominator coefficient must be a vector. The output width equals the number of rows in the numerator coefficient. You should specify the coefficients in descending order of powers of s.
Parameters
Numerator coefficients:
[219.91^6]
Denominator coefficients:
[1 848.85 360768.64 9.14*(219.91)^3 7.46*(219.91)^4 3.86*(219.91)^5 (219.91)^6]
Absolute tolerance:
auto
State Name: (e.g., 'position')
''
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
第2个传递函数应该是H(s)=s/(s+0.314),在MATLAB中的参数如下
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Transfer Fcn:
The numerator coefficient can be a vector or matrix expression. The denominator coefficient must be a vector. The output width equals the number of rows in the numerator coefficient. You should specify the coefficients in descending order of powers of s.
Parameters
Numerator coefficients:
[1 0]
Denominator coefficients:
[1 0.314]
Absolute tolerance:
auto
State Name: (e.g., 'position')
''
即准备用C语言实现
|