代码搜索:float
找到约 10,000 项符合「float」的源代码
代码结果 10,000
www.eeworm.com/read/391151/8419486
c adaptnoise_pcm.c
//Adaptnoise_pcm.c Adaptive FIR for noise cancellation using PCM3003
#define beta 1E-12 //rate of convergence
#define N 30 //# of weights (coefficients)
#d
www.eeworm.com/read/391151/8419559
asm icfftr2_dif.asm
;File was assembled with assembler version 4.0 (included with CCS V1.2) and
;NOT with assembler version 4.1 (included with CCS V2) due to "BUG" SDSsq21569.
;icfftr2_dif.asm file used as source in pr
www.eeworm.com/read/291412/8421472
java graylevelclass.java
/*
* Otsu Thresholding algorithm
*
* Copyright (c) 2003 by Christopher Mei (christopher.mei@sophia.inria.fr)
*
* This plugin is free software; you can redistribute it and/or modify
* it under th
www.eeworm.com/read/191620/8425673
h graph4.h
//图类结构体定义与相关操作graph4.h
typedef struct
{char *data;
int *visited;
float **edge;
int max,size;
}Graph;
//初始化图
void SetGraph(Graph *G,int n)
{int i,j;
G->data=new char[n];
G->visited=new
www.eeworm.com/read/191613/8425758
cpp pr0603.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 6.3 on page 143
// Passing an array to a function
#include
using namespace s
www.eeworm.com/read/191613/8425782
cpp pr0608.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 6.8 on page 143
// Finding the minimum value in an array
#include // defines
www.eeworm.com/read/191613/8425792
cpp pr0609.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 6.9 on page 143
// Processing a three-dimensional array
#include // defines
www.eeworm.com/read/191613/8426144
cpp ex0909.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 9.9 on page 220
// Using an input string stream
#include // defines the cout
www.eeworm.com/read/191613/8426290
cpp pr0613.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 6.13 on page 143
// Removing an element from an array
#include // defines th
www.eeworm.com/read/191613/8426716
cpp pr0610.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 6.10 on page 143
// Finding the minimum and maximum values in an array
#include