代码搜索:minimum

找到约 5,594 项符合「minimum」的源代码

代码结果 5,594
www.eeworm.com/read/337303/12378256

c auxiliary.c

/* Some utility functions (not part of the algorithm) */ # include # include # include # include "global.h" # include "rand.h" /* Function to return the maximum of two
www.eeworm.com/read/148785/12426532

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/131832/14123130

m mat2huff.m

function y = mat2huff(x) % MAT2HUFF Huffman encode 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/233850/14131190

m newangles.m

function frogs = newangles(frogs) % Computes the frog new angles when they move to another position global gaps supergaps N for i = 1: N if i == 2 %This special case avoids having wr
www.eeworm.com/read/130689/14178147

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/231414/14236756

h inplace.h

void calculate_minimum_redundancy(uint freq[], uint syms[], int n);
www.eeworm.com/read/230855/14271971

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/128764/14279497

cs fuzzynumber.cs

using System; namespace Fuzzy_Logic_Library { /// /// Fuzzy number class deals with fuzzy numbers /// public class FuzzyNumber : FuzzyBasic { public FuzzyNumber
www.eeworm.com/read/127767/14336005

txt e631. adjusting the size of a component in a gridbadlayout using internal padding.txt

With internal padding, you can increase or decrease the minimum size of a component. For example, if the minimum width of a component is 10 and ipadx is 2, the minimum width of the component within th
www.eeworm.com/read/127767/14336167

txt e803. getting and setting the values of a jprogressbar component.txt

// To create a progress bar, see e801 Creating a JProgressBar Component // Get the current value int value = progress.getValue(); // Get the minimum value int min = pro