概述
离散传递函数表达式:
实现代码:
dsys=tf([3 2 1],[1 -6 4 -7],0.01)%离散传递函数表达式
scsys=d2c(dsys,'tustin');
[num,den]=tfdata(scsys,'v')
H=tf([num],[den])%连续传递函数表达式
输出结果:
正文内容到此结束!!!!!!!!!!
int main()
{
double x, y, a;
for (y = 1.5; y > -1.5; y -= 0.1)
{
for (x = -1.5; x < 1.5; x += 0.05)
{
a = x * x + y * y - 1;
char ch = a * a * a - x * x * y * y*y <= 0.0 ? '*' : ' ';
putchar(ch);
}
system("color 0c"); //修改颜色
printf("n");
}
printf("感谢好心人");
return 0;
}
最后
以上就是沉默睫毛为你收集整理的用Matlab将离散传递函数转换为连续传递函数的全部内容,希望文章能够帮你解决用Matlab将离散传递函数转换为连续传递函数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复