搜索结果
找到约 2,016 项符合
T-kernel 的查询结果
其他 itu-t t3.0 在公用电话交换网上的文件传真传输规程
itu-t t3.0 在公用电话交换网上的文件传真传输规程
压缩解压 一份不错的实现ITU-T G729标准的MATLAB源代码!
一份不错的实现ITU-T G729标准的MATLAB源代码!
Modem编程 S3C2410 Kernel Schematics
S3C2410 Kernel Schematics
文章/文档 一篇介绍ITU-T G726语音编码的详细文档!兼容g711,g721(32bps),g723(24bps或40bps)标准!
一篇介绍ITU-T G726语音编码的详细文档!兼容g711,g721(32bps),g723(24bps或40bps)标准!
语音压缩 itu-t g.729的源代码
itu-t g.729的源代码,网络上流行的都是1:1的压缩比,此源码是 1:16压缩缩比的源源代码
微处理器开发 These are the kernel patches against the 2.6.11_rc5 kernel from linux-mips.org for the AMD Alchemy
These are the kernel patches against the 2.6.11_rc5 kernel from
linux-mips.org for the AMD Alchemy(TM) DBAu1200(TM) and AMD Alchemy(TM)
Pb1200(TM) development boards.
其他书籍 Linux Kernel Development Second Edition By Robert Love
Linux Kernel Development Second Edition
By Robert Love
软件工程 Understanding the Linux Kernel 3rd Edition Ebook
Understanding the Linux Kernel 3rd Edition Ebook
其他 Status StrAssign(SString T,char *chars) { // 生成一个其值等于chars的串T int i if(strlen(chars)>MAXST
Status StrAssign(SString T,char *chars)
{ // 生成一个其值等于chars的串T
int i
if(strlen(chars)>MAXSTRLEN)
return ERROR
else
{
T[0]=strlen(chars)
for(i=1 i<=T[0] i++)
T[i]=*(chars+i-1)
return OK
}
}
其他 Status CreateSMatrix(RLSMatrix &M) { // 创建稀疏矩阵M int i Triple T Status k printf("请输入矩阵的行
Status CreateSMatrix(RLSMatrix &M)
{ // 创建稀疏矩阵M
int i
Triple T
Status k
printf("请输入矩阵的行数,列数,非零元素数:")
scanf("%d,%d,%d",&M.mu,&M.nu,&M.tu)
M.data[0].i=0 // 为以下比较做准备
for(i=1 i<=M.tu i++)
{
do
{