>s=tf('s')Transferfunction:s>>sys=1/(3*s+1)Transferfunction:1-------3s+1>>bode(sys)>>c2d(sys,0.0002,'tustin')Transferfu">
歡迎來到天天文庫
瀏覽記錄
ID:59228560
大小:58.33 KB
頁數(shù):6頁
時間:2020-09-09
《傳遞函數(shù)的C語言實現(xiàn).docx》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。
1、>>s=tf('s')Transferfunction:s>>sys=1/(3*s+1)Transferfunction:1-------3s+1>>bode(sys)>>c2d(sys,0.0002,'tustin')Transferfunction:3.333e-005z+3.333e-005-------------------------z-0.9999Samplingtime(seconds):0.0002Y/X=3.333e-005+3.333e-005Z(-1)-------------------------1-0.9999Z(-1)Y(1-0.9999Z(-1))=X(
2、3.333e-005+3.333e-005Z(-1))Y=X*3.333e-005X+3.333e-005X(-1)+0.9999Y(-1)按照這個方程編寫不對,因為系數(shù)精度太差了>>[ab]=tfdata(ans,'v')a=1.0e-004*0.25800.2580b=1.0000-0.5481這才是差不多的系數(shù)>>step(sys)>>holdon>>step(ans)>>plot(y)>>holdon>>plot(test(1:50001))//CTransFunc.cpp:Definestheentrypointfortheconsoleapplication.//#inclu
3、de"stdafx.h"#include"stdio.h"#include"math.h"doubleCTransFunc(doubledInput){staticdoubleInput[2]={0.0,0.0};staticdoubleOutput[2]={0.0,0.0};Input[0]=dInput;Output[0]=Input[0]*(0.)+(0.)*Input[1]+0.5481*Output[1];Output[1]=Output[0];Input[1]=Input[0];returnOutput[0];}intmain(intargc,char*argv[]){int
4、i=0;FILE*pFile=NULL;pFile=fopen("test.txt","w+");for(i=0;i<;i++){fprintf(pFile,"%f",CTransFunc(1.0));}fclose(pFile);return0;}
此文檔下載收益歸作者所有