代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/346994/11706929
java better.java
class BetterListOfNumbers extends ListOfNumbers {
public double average() {
if (icount > 0)
return itotal / icount;
else
return 0;
}
}
www.eeworm.com/read/157371/11716578
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/157371/11717279
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/157219/11729262
cpp 7_7.cpp
#include
main()
{
int i,num;
float score[30],sum=0.0,ave;
printf("Please input number of students:");
scanf("%d",&num);
for(i=0;i
www.eeworm.com/read/157082/11740796
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/259865/11761156
c math.c
#include
void main ()
{
int seconds_in_an_hour;
float average;
seconds_in_an_hour = 60 * 60;
average = (5 + 10 + 15 + 20) / 4;
printf("The number of secon
www.eeworm.com/read/345930/11781343
cpp xt9-9.cpp
#include
using namespace std;
class Product
{public:
Product(int n,int q,float p):num(n),quantity(q),price(p){};
void total();
static float average();
static void displa
www.eeworm.com/read/156528/11794908
asv nomax.asv
function [ys,W] = NoMax(x)
%最大信噪比盲源分离算法
%输入:混合信号x
%输出:分离信号ys,分离矩阵W
%preprocess
%tic;
x=baihua(x);
%%%%%%%moving average coefficient%%%%%%%%%%%%
p=80;
a=ones(1,p)/p;
x=x';
S=filter(a,1,x);
www.eeworm.com/read/156528/11794996
m test.m
function [y,PI]=test()
%preprocess
load wtwo;
A=randn(2);
x=A*s;
x=baihua(x);
%%%%%%%moving average coefficient%%%%%%%%%%%%
x=x';
for p=2:500
tic;
a=ones(1,p)/p;
S=filter(a,1,x);
%comp
www.eeworm.com/read/155903/11838760
cpp xt9-9.cpp
#include
using namespace std;
class Product
{public:
Product(int n,int q,float p):num(n),quantity(q),price(p){};
void total();
static float average();
static void displa