代码搜索:average
找到约 5,196 项符合「average」的源代码
代码结果 5,196
www.eeworm.com/read/289395/8554967
c average.c
double average(double *vec,int dim)
{
int i;
double aver;
aver=0.0;
for (i=0;i
www.eeworm.com/read/432020/8639229
c average.c
double average(double *vec,int dim)
{
int i;
double aver;
aver=0.0;
for (i=0;i
www.eeworm.com/read/287825/8666917
m average.m
%将5000->4096点,验证得出此函数正确,n是原来长度,k是调整后长度
function [numshort] = Average( n, k, numlong )
rate=n/k;
for m=1:k
count(m)=0;
sum(m)=0;
for l=1:n
if (floor((l-1)/rate))==(m-1)
count(m)=count(m)+1;
www.eeworm.com/read/287334/8693636
c average.c
double
average(double *vec,int dim)
{
int i;
double aver;
aver=0.0;
for (i=0;i
www.eeworm.com/read/387115/8706121
m average.m
function [average_x,average_y]=average(x1,y1,x2,y2,x3,y3)
average_x=(x1+x2+x3)/3;
average_y=(y1+y2+y3)/3;
www.eeworm.com/read/386539/8738634
h average.h
#if !defined(AFX_AVERAGE_H__6F29B2DE_92FF_417E_8537_DEAC513FA0AB__INCLUDED_)
#define AFX_AVERAGE_H__6F29B2DE_92FF_417E_8537_DEAC513FA0AB__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MS
www.eeworm.com/read/386539/8738684
cpp average.cpp
// AVERAGE.cpp : implementation file
//
#include "stdafx.h"
#include "学生管理系统.h"
#include "AVERAGE.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__
www.eeworm.com/read/430027/8772095
c average.c
/*************************************************************************/
/* */
/* Average results for training and test sets */
/* ------------------------------------------ */
/*
www.eeworm.com/read/428557/8859839
java average.java
//********************************************************************
// Average.java Author: Lewis/Loftus
//
// Demonstrates the use of a while loop, a sentinel value, and a
// running
www.eeworm.com/read/428424/8870606
java average.java
import javax.swing.JOptionPane;//求平均数
public class Average
{
public static void main(String args[])
{
int total,counter,inputValue,average;
String input;//初始化变量
total=0;
counter=1;//循环结构,循环十次