代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/400386/11577850
cpp c9-14.cpp
#include
using namespace std;
template
class Compare
{public:
Compare(numtype a,numtype b)
{x=a;y=b;}
numtype max()
{return (x>y)?x:y;}
numtype min
www.eeworm.com/read/157007/11745470
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/259580/11780434
output leastcostbbboard.output
Enter number of boards and number of nets
Enter net matrix
Minimum density is 4
Optimal arrangement is 2 8 7 3 1 5 6 4
www.eeworm.com/read/259580/11780549
output recursivebtboard.output
Enter number of boards and number of nets
Enter net matrix
Minimum density is 4
Optimal arrangement is 2 3 4 5 1 6 7 8
www.eeworm.com/read/156459/11801410
cpp d11r6.cpp
#include "iostream.h"
#include "math.h"
double func2(double x[], int n)
{
return 0.5 - bessj0(pow((x[1] - 1.0) , 2) +
pow((x[2] - 2.0), 2) + pow((x[3] - 3.0) , 2));
}
double func(d
www.eeworm.com/read/156364/11808915
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/155903/11839325
txt 例9.14.txt
例9.14 声明一个类模板,利用它分别实现两个整数、浮点数和字符的比较,求出大数和小数。
#include
using namespace std;
template //定义类模板
class Compare
{public:
Compare(numtype a,numtype b)
{x=a;y=b
www.eeworm.com/read/155539/11865148
cpp zp1251.cpp
//---------------------------------------------------------------------------
#pragma hdrstop
//---------------------------------------------------------------------------
#pragma argsused
#
www.eeworm.com/read/344031/11911674
txt cpu_schedule_out.txt
Single-server CPU with ten terminals queueing system using simlib
Mean interarrival time of tasks: 25.000 minutes
Mean service time for tasks: 0.800 minutes
The segment t
www.eeworm.com/read/343020/11983252
m getminshearspeed.m
function CsMin = GetMinShearSpeed(Layer)
%Returns the minimum shear speed for the layer
%Returns [] if the layer is a fluid (Cs = 0)
CsMin = min(Layer.Cs);
if CsMin == 0
CsMin = [];
end