代码搜索:minimum
找到约 5,594 项符合「minimum」的源代码
代码结果 5,594
www.eeworm.com/read/475389/6779255
c testapp0.c
// Description: Driver program that makes use of two library functions to
// calculate the maximum and minimum values within an array
#include
int main()
{
int test_data[] = {
www.eeworm.com/read/475389/6779445
c testapp0.c
// Description: Driver program that makes use of two library functions to
// calculate the maximum and minimum values within an array
#include
int main()
{
int test_data[] =
www.eeworm.com/read/368337/9701274
texi min.texi
@cindex optimization, see minimization
@cindex maximization, see minimization
@cindex minimization, one-dimensional
@cindex finding minima
@cindex non-linear functions, minimization
This chapte
www.eeworm.com/read/367830/9727904
m mmin.m
function [m,i]=mmin(a)
%MMIN Matrix Minimum Value.
% MMIN(A) returns the minimum value in the matrix A.
% [M,I] = MMIN(A) in addition returns the indices of
% the minimum value in I = [row col].
% D.
www.eeworm.com/read/414865/11098586
m mmin.m
function [m,i]=mmin(a)
%MMIN Matrix Minimum Value.
% MMIN(A) returns the minimum value in the matrix A.
% [M,I] = MMIN(A) in addition returns the indices of
% the minimum value in I = [row col].
% D.
www.eeworm.com/read/412853/11180845
m mmin.m
function [m,i]=mmin(a)
%MMIN Matrix Minimum Value.
% MMIN(A) returns the minimum value in the matrix A.
% [M,I] = MMIN(A) in addition returns the indices of
% the minimum value in I = [row col].
% D.
www.eeworm.com/read/148257/12479900
m minmat.m
function M=minmat(n);
% The command M=minmat(n) generates an
% nxn matrix whose (i,j) entry is the
% minimum of i and j.
M=ones(n,1)*[1:n];
M=min(M,M');
www.eeworm.com/read/300728/13895939
m mmin.m
function [m,i]=mmin(a)
%MMIN Matrix Minimum Value.
% MMIN(A) returns the minimum value in the matrix A.
% [M,I] = MMIN(A) in addition returns the indices of
% the minimum value in I = [row col].
% D.
www.eeworm.com/read/235723/14054956
pas ufunc.pas
unit uFunc;
interface
uses
FMath, Matrices;
function Func1(X : TVector) : Float;
function Func2(X : TVector) : Float;
function Func3(X : TVector) : Float;
function Func4(X : TVe
www.eeworm.com/read/235723/14054958
pas umain.pas
unit uMain;
{ **********************************************************************
* Program MINFUNC.PAS *
* Versi