代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/418022/10968116
c float to hex.c
#include "head.h"
uchar pp;
uchar * floatToBCD(float X,uchar *p)
{
if(X>9999)
{
p[0]=10;
p[1]=15;
p[2]=17;
p[3]=10;
}
else if(X>=1000)
{
Hex2Bcd(X, p);
pp=0;
www.eeworm.com/read/418022/10968127
lst float to hex.lst
C51 COMPILER V7.50 FLOAT_TO_HEX 06/25/2008 14:22:37 PAGE 1
C51 COMPILER V7.50, COMPILATION OF MODULE FLOAT_TO_HEX
OBJECT MODULE PLAC
www.eeworm.com/read/470401/6910164
gif flow-float.gif
www.eeworm.com/read/469845/6927594
bmp varbmp_float.bmp
www.eeworm.com/read/433070/6948687
js template_float.js
function ObjectAD() {
/* Define Variables*/
this.ADID = 0;
this.ADType = 0;
this.ADName = "";
this.ImgUrl = "";
this.ImgWidth = 0;
this.ImgHeight = 0;
www.eeworm.com/read/467459/7003570
pdf float_ga.pdf
www.eeworm.com/read/466825/7021059
txt float_re.txt
--REAL PARTS
0
3.76775
-8
0.23225
0.5
0.23225
-8
3.76775
--IMAGINARY PARTS
0
-1.06065
-0.5
-1.06065
0
1.06065
0.5
1.06065
Matlab results
Columns 1 through 4
-0.5000
www.eeworm.com/read/466829/7021101
txt float_re.txt
--REAL PARTS
0
3.76775
-8
0.23225
0.5
0.23225
-8
3.76775
--IMAGINARY PARTS
0
-1.06065
-0.5
-1.06065
0
1.06065
0.5
1.06065
Matlab results
Columns 1 through 4
-0.5000
www.eeworm.com/read/296134/7103018
c fft_float.c
/*
fft_float.c - Floating-point complex radix-2 decimation-in-time FFT
Perform in place FFT the output overwrite the input array
*/
#include "fcomplex.h" /* floating-point complex.