再用ss和tf函数就可以了,比如:gtf([12],[123])transferfunction:s2-------------s^22s3g1ss(g)ax1x2x1-2-1.5x220bx12x20cx1x2y10.50.5dy10continuous-timemodel.g2tf(g1)transferfunction:s2-------------s^22s3whosnamesizebytesclassattributesg1x12494m61pg11x12385ssg21x12494tf
没法将constchar*类型的值未分配到char类型的实体
初始化操作字符数组用charchemical[100];表就行。
函数原形
char*itoa(intvalue,char*string,intradix)
将整形数value转换为其等价的字符串
头文件stdlib.h
parameters(参数只能说明)
value
numbertobeconverted(即将被可以转换的值)
string
stringresult(可以转换的结果)
radix
baseofvaluemustbeintherange2–36
(装换的基数,解析式2-36。的或radix10意思是10进制,radix8表示8进制。)
返回值:与string参数相同,以便于函数的嵌套多全局函数
例子:(充斥msdn,有撰改)
#includeltstdlib.hgt
#includeltstdio.hgt
voidmain(void)
{
charbuffer[20]
inti3445
itoa(i,buffer,10)
printf(