代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/162519/5543145
java spinnernumbermodel.java
/* SpinnerNumberModel.java --
Copyright (C) 2002, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it
www.eeworm.com/read/160427/5571054
java datasetutilities.java
/* ===========================================================
* JFreeChart : a free chart library for the Java(tm) platform
* ===========================================================
*
* (
www.eeworm.com/read/155189/5628331
java datasetutilities.java
/* ===========================================================
* JFreeChart : a free chart library for the Java(tm) platform
* ===========================================================
*
* (
www.eeworm.com/read/475765/6777781
m clopt.m
% CLOPT.M Find the minimum of a function input as 'fn(x(1),x(2))'
% Input function and initial guess.
clear
fn=input('Function to minimize as a string f(x(1),x(2))=')
%
% Input the limits for mi
www.eeworm.com/read/233441/6788122
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/472009/6877828
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/194440/8194774
m contents.m
% The CREWES Project Synthetics Toolbox
%
% A collection of tools for building synthetic seismic traces and sections.
% Also contains numerous wavelet functions and an interactive wavelet editor.
www.eeworm.com/read/294461/8224434
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