代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/173927/9629847
txt readme.txt
The Finite Element Method Using MATLAB, 2nd Edition
System requirements:
Windows 95, 98, or NT 4.0
Minimum - 640x480 256 color display
Recommended - 800x600 16-bit or higher color display
12
www.eeworm.com/read/270091/11048879
cpp 多机调度问题.cpp
/*多机调度问题
【问题描述】
要求给出一种作业调度方案,使所给的n个作业在尽可能短的时间内由m台机器加工处理完成。
约定,每个作业均可在任何一台机器上加工处理,但未完工前不允许中断处理。作业不能拆分成更小的子作业。
【实现提示】
1、把作业按加工所需时间从大到小排序
2、如果作业数目比机器的数目少或相等,则直接把作业分配下去
3、如果作业数目比机器的数目多,则每台机器上先分 ...
www.eeworm.com/read/414322/11120973
cs dijkstrafast.cs
using System;
using System.Collections;
using System.Diagnostics;
using System.Collections.Generic;
using System.Text;
namespace DataStructTest
{
///
/// Implements a
www.eeworm.com/read/413489/11154172
m mindistance.m
function [minvalue minposition]=mindistance(x,y)
% x is the centers matrix like [c1x c1y; c2x c2y; ....]
% y is the point to be classified
% square distances
s=(x(:,1)-y(1)).^2+(x(:,2)-y(2)).^2;
www.eeworm.com/read/267762/11163886
m minn.m
function [mn,idx,col]=minn(A)
%MINN N-D Array Minimum.
% MINN(A) returns the minimum value found in the array A.
%
% [MN,Row,Col] = MINN(A) for 2-D A returns the minimum value MN as well as
% the
www.eeworm.com/read/267762/11163910
m minnsarvas.m
function Output=minNsarvas(V)
%
%minNsarvas N-D Array Minimum With Subscript Output
%
% X = MINN(A) returns the minimum value found as the first element followed
% by the subscripts of A. No
www.eeworm.com/read/266733/11214010
c 1477.c
#include
int main()
{
int n,i,j=0,count,sum,a[51];
while(scanf("%d",&n),n)
{
for(i=sum=0;i
www.eeworm.com/read/265465/11263253
h treepropsheetex.h
// TreePropSheetEx.h
//
/////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2004 by Yves Tkaczyk
// (http://www.tkaczyk.net - yves@tkaczyk.net)
//
www.eeworm.com/read/335795/12498627
cpp template.cpp
// Section 10.1
// $ CC template.cpp
/*
minimum of 10 and 20 is: 10
minimum of 10.3 and 20.6 is: 10.3
*/
#include
using std::cout;
using std::endl;
template
www.eeworm.com/read/249069/12524582
txt 例9.14.txt
例9.14 声明一个类模板,利用它分别实现两个整数、浮点数和字符的比较,求出大数和小数。
#include
using namespace std;
template //定义类模板
class Compare
{public:
Compare(numtype a,numtype b)
{x=a;y=b