代码搜索:float

找到约 10,000 项符合「float」的源代码

代码结果 10,000
www.eeworm.com/read/145247/12743525

c invert.c

/***************************************************************** * * INVERT Version 45G * ***************************************************************** * * Invert a covariance matrix usin
www.eeworm.com/read/332655/12745331

cpp p67-3(3).cpp

#include"stdio.h" main() { float x,y; printf("请输入x的值:"); scanf("%f",&x); if(x
www.eeworm.com/read/145198/12745507

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/145134/12750815

zb readme.zb

This program needs data file.It can draw curvers. data file format: int float int float......
www.eeworm.com/read/145134/12750896

c readval.c

#include "stdio.h" #define MAX 5000 void main() { FILE *fp1,*fp2,*fp3; float ver[50]; int nodenum,t[14],i,j; int num_node[4]; int node_number; float val[MAX]; char ch,s1[80],s2[80],s3[80],va
www.eeworm.com/read/246151/12753525

cpp fft.cpp

/********************************************************************** FFT.cpp Dominic Mazzoni September 2000 This file contains a few FFT routines, including a real-FFT routine that is
www.eeworm.com/read/145070/12754347

h util.h

/* ** Copyright (C) 2002-2004 Erik de Castro Lopo ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public Licen
www.eeworm.com/read/145063/12754516

cpp 龙贝格.cpp

#include #include #include #include float x[100]; float f[100]; float a,b; int n; void trapezia(float y,float *S) { int i,t; t=(b-a)/y;
www.eeworm.com/read/246068/12757844

txt hsvrgb.txt

找到一段HSV、RGB相互转换的代码,看来应该是简化算法。 // r,g,b values are from 0 to 1 // h = [0,360], s = [0,1], v = [0,1] // if s == 0, then h = -1 (undefined) void RGBtoHSV( float r, float g, float b, float *h, fl
www.eeworm.com/read/144906/12763695

cpp lagrange.cpp

// Lagrange.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include float dx[256]; float dy[256]; void lagrange(float x,int n) { float y=0