代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/272848/10940778
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/272848/10940852
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/418342/10952890
m mat2huff.m
function y = mat2huff(x)
%MAT2HUFF Huffman encodes a matrix.
% Y = MAT2HUFF(X) Huffman encodes matrix X using symbol
% probabilities in unit-width histogram bins between X's minimum
% and ma
www.eeworm.com/read/417309/10995537
txt 05-21.txt
% find the minimum of the function f(x)=x^3+a*x^2+b*x+c
function [x0,y] = funmin(a,b,c,x1,x2)
options = optimset('Display','off');
[x0,y] = fminbnd(@poly3,x1,x2,options);
function y=poly3(x)
www.eeworm.com/read/464910/7062651
cpp zp1251.cpp
//---------------------------------------------------------------------------
#pragma hdrstop
//---------------------------------------------------------------------------
#pragma argsused
#
www.eeworm.com/read/462824/7195091
c modiwars.c
/*Program for Modified Warshall's algorithm to find shoretst path matrix */
#include
#define infinity 9999
#define MAX 20
main()
{
int i,j,k,n;
int adj[MAX][MAX],path[MAX][MAX];
www.eeworm.com/read/455033/7378989
hpp brentls.hpp
//======================================================================
// Definition of the BrentLineSearch class
// Brent's line search algorithm
// author: Wenceslau Gouveia, Adapted from Numerica
www.eeworm.com/read/454938/7381331
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/452964/7428560
txt 例9.14.txt
例9.14 声明一个类模板,利用它分别实现两个整数、浮点数和字符的比较,求出大数和小数。
#include
using namespace std;
template //定义类模板
class Compare
{public:
Compare(numtype a,numtype b)
{x=a;y=b