代码搜索:average

找到约 5,196 项符合「average」的源代码

代码结果 5,196
www.eeworm.com/read/370011/9625130

c 2-8.c

#include"stdio.h" main() { float T[4][7],sum,avg; int i,j; float f1,*f2; clrscr(); sum=avg=0; f1=1.0; f2=&f1; for(i=0;i
www.eeworm.com/read/370011/9625137

c 2-7.c

#include"stdio.h" main() { float T[4][7],sum,avg; int i,j; clrscr(); sum=avg=0; for(i=0;i
www.eeworm.com/read/368299/9702549

py multiple_return_values.py

#------------------------------------------------------------------------------- # Define a function which takes a list of numbers and returns its average and # how many numbers were in the list.
www.eeworm.com/read/170557/9798328

m binaryexample.m

% This script shows how to use the ga using a float representation. % You should see the demos for % more information as well. gademo1, gademo2, gademo3 global bounds % Setting the seed back to the
www.eeworm.com/read/270107/11047848

txt 哈希表设计.txt

这有一个哈希表设计,针对集体中人名设计一个哈希表,使得平均查找长度不超过R,并完成相应的建表和查表程序.待填入哈希表的人名共有30个,取平均查找的上限为2.哈希函数用除留余数法构造,用线性探测法再散列法或链地址法处理冲突. #include #include #include #define L 50 /*定义哈希表长*/
www.eeworm.com/read/414863/11098739

m cp0301_ppm_sin.m

% % FUNCTION 3.1 : "cp0301_PPM_sin" % % Generation of a PPM-UWB signal in the case of a % sinusoidal modulating signal and rectangular pulses % % Transmitted power is fixed at 'Pow' % The sign
www.eeworm.com/read/414863/11098784

m cp0202_transmitter_2pam_ds.m

% % FUNCTION 2.9 : "cp0202_transmitter_2PAM_DS" % % Simulation of a UWB transmitter implementing 2PAM with DS % % Transmitted power is fixed to 'Pow' % The signal is sampled with frequency 'fc'
www.eeworm.com/read/414803/11101286

c max147的c源码.c

//12位串行AD(MAX145)的C51源码(ADC+去极值均值滤波+串行通信) //2007年08月15日 星期三 13:52/*采用11.0592MHz ,9600波特率*/ #include #include #define delayNOP(); {_nop_();_nop_();_nop_();_nop_();_nop_();_n
www.eeworm.com/read/269229/11105061

cpp vlargument.cpp

// 变长参数表的应用VLArgument.cpp #include #include #include double average( int, ...); void main() {double w=36.5,x=21.5,y=1.9,z=10.1; cout
www.eeworm.com/read/268287/11145443

m hz_resize.m

function y=hz_resize(R,Rout,Nr,Nc) %% Take input matrix with Nr rows and Nc colums and % output Rout matrix with half rows and half columns for i=1:2:(Nr-1) for j=1:2:(Nc-1) x = [R(i