代码搜索:average

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

代码结果 5,196
www.eeworm.com/read/365949/9838601

cpp arryptr2.cpp

//这个程序在本书所带软盘中,文件名为ARRYPTR2.CPP //这个程序利用间接操作符和指针变量对数组进行运算。 #include #define size 10 void main(void) { float *fptr, farray[] = {1.2, 2.3, 3.4, 4.5, 5.6, 6.7, 7.8, 8.9, 9.0, 9.9}
www.eeworm.com/read/365949/9838661

cpp goodio.cpp

//这个程序在本书所带软盘中,文件名为GOODIO.CPP //这个程序读入任意次考试成绩,计算并输出这些考试的总成绩和平均成绩。 //这个程序是对BADIO.CPP的修改。 #include #include //这个头文件提供了系统子例程setprecision() void main(void) { int nu
www.eeworm.com/read/365166/9876007

c anothertestapp.c

// Description: Driver program that makes use of the average library function // to compute the average value of a set of integer data values #include int main() { int tes
www.eeworm.com/read/365166/9876444

c anothertestapp.c

// Description: Driver program that makes use of the average library function // to compute the average value of a set of integer data values #include int main() { int test_
www.eeworm.com/read/168118/9937943

m dispavgstd.m

function dispavpstd(cvpavg, cvpstd) f=gcf; figure('menubar','none') [nshots tmp] = size(cvpavg); shots = 1:nshots; % plot(cvpstd(:,1)); % hold on; % plot(cvpavg(:,1)); errorbar(cvpavg(:,1), shots
www.eeworm.com/read/168118/9938043

m dispplust.m

function dispplust % Display of the average Plus Time values with their % corresponding standard deviation and fold for each receiver f=gcf; fbcoord=refdata('get','fbcoord'); plust=refdata('get','plus
www.eeworm.com/read/363616/9942341

java myrandom.java

package test; public class MyRandom { public static double exponent(double average) { double v,u; u=Math.random(); v=-average*Math.log(u); return v; } }
www.eeworm.com/read/363616/9942392

java myrandom.java

package test; public class MyRandom { public static double exponent(double average) { double v,u; u=Math.random(); v=-average*Math.log(u); return v; } }
www.eeworm.com/read/363616/9942435

java myrandom.java

package test1; public class MyRandom { public static double exponent(double average) { double v,u; u=Math.random(); v=-average*Math.log(u); return v; } }
www.eeworm.com/read/363616/9942501

java myrandom.java

package test2; public class MyRandom { public static double exponent(double average) { double v,u; u=Math.random(); v=-average*Math.log(u); return v; } }