代码搜索:tia
找到约 145 项符合「tia」的源代码
代码结果 145
www.eeworm.com/read/242939/12971648
dat hammtab.dat
/*======================================================================*/
/* Enhanced Variable Rate Codec - Bit-Exact C Specification */
/* Copyright (C) 1997-1998 Telecommunication
www.eeworm.com/read/242939/12971652
dat bl_table.dat
/*======================================================================*/
/* Enhanced Variable Rate Codec - Bit-Exact C Specification */
/* Copyright (C) 1997-1998 Telecommunication
www.eeworm.com/read/242939/12971664
dat costab.dat
/*======================================================================*/
/* Enhanced Variable Rate Codec - Bit-Exact C Specification */
/* Copyright (C) 1997-1998 Telecommunication
www.eeworm.com/read/242939/12971666
dat wtab.dat
/*======================================================================*/
/* Enhanced Variable Rate Codec - Bit-Exact C Specification */
/* Copyright (C) 1997-1998 Telecommunication
www.eeworm.com/read/272181/10967320
dat wfactab.dat
/*======================================================================*/
/* Enhanced Variable Rate Codec - Bit-Exact C Specification */
/* Copyright (C) 1997-1998 Telecommunication
www.eeworm.com/read/450438/7484047
dat wfactab.dat
/*======================================================================*/
/* Enhanced Variable Rate Codec - Bit-Exact C Specification */
/* Copyright (C) 1997-1998 Telecommunication
www.eeworm.com/read/242939/12971674
dat wfactab.dat
/*======================================================================*/
/* Enhanced Variable Rate Codec - Bit-Exact C Specification */
/* Copyright (C) 1997-1998 Telecommunication
www.eeworm.com/read/421781/10699233
c complex.c
#include "complex.h"
comp cmplx(float a,float b)
{
comp z;
z.re = a;
z.im = b;
return(z);
}
comp cmul(comp a,comp b)
{
float tra,trb,tia,tib;
comp z;
tra=a.re;
tia=a.im;
trb=b.re;
tib