代码搜索:finding
找到约 1,199 项符合「finding」的源代码
代码结果 1,199
www.eeworm.com/read/380715/9134006
m unc_n2_branin.m
function [f]=unc_n2_branin(x)
%reference:
%note that you can get the formulation of unc_n2_branin from some
%aritcles,such as
%(1)X Liu 'Finding Global Minima with a Computable Filled Function',
www.eeworm.com/read/359966/10113420
c 一维搜索.c
#include"stdio.h"
//#include"conio.h"
#include"math.h"
#define e 0.001
#define tt 0.01
float function(float x)
{
float y=8*pow(x,3)-2*pow(x,2)-7*x+3;//求解的一维函数
return(y);
}
void finding(flo
www.eeworm.com/read/423264/10575277
m polynomial.m
%%OPERATATIONS ON POLYNOMIALS%%
p=[1 3 2]; %%representing polynomial x^2+3x+2%%
r=roots(p) %%finding roots of polynomial%%
poly(r) %% finding coefficients from roots of polynomial%%
polyval(p,3)%
www.eeworm.com/read/423264/10575331
asv polynomial.asv
%%OPERATATIONS ON POLYNOMIALS%%
p=[1 3 2]; %%representing polynomial x^2+3x+2%%
r=roots(p) %%finding roots of polynomial%%
poly(r) %% finding coefficients from roots of polynomial%%
polyval(p,3)%
www.eeworm.com/read/451644/7459940
txt tred2.txt
Procedure TRED2(var A:matrx2; N:integer;
var D:array of real;var E:array of real);
var
I,J,K,L:integer; H,F,G,SCALE1,ZZ,HH:real;
begin
If N > 1 Then
begin
www.eeworm.com/read/451135/7470870
cpp gold.cpp
#include
#include
#include
#define e 0.001 /*收敛精度*/
#define tt 0.01 /*一维搜索步长*/
float function(float x) /*定义已知函数*/
{
float y=pow(x,4)-4*pow(x,3)-6*pow(x,2)-
www.eeworm.com/read/199432/7858068
txt tred2.txt
Procedure TRED2(var A:matrx2; N:integer;
var D:array of real;var E:array of real);
var
I,J,K,L:integer; H,F,G,SCALE1,ZZ,HH:real;
begin
If N > 1 Then
begin
www.eeworm.com/read/198177/7948385
m unc_n2_branin.m
function [f]=unc_n2_branin(x)
%reference:
%note that you can get the formulation of unc_n2_branin from some
%aritcles,such as
%(1)X Liu 'Finding Global Minima with a Computable Filled Function',
www.eeworm.com/read/326741/13119449
m edu_imgcrop.m
function bw2 = edu_imgcrop(bw)
% Find the boundary of the image
[y2temp x2temp] = size(bw);
x1=1;
y1=1;
x2=x2temp;
y2=y2temp;
% Finding left side blank spaces
cntB=1;
while (sum(bw(:,cntB
www.eeworm.com/read/490202/6460613
m edu_imgcrop.m
function bw2 = edu_imgcrop(bw)
% Find the boundary of the image
[y2temp x2temp] = size(bw);
x1=1;
y1=1;
x2=x2temp;
y2=y2temp;
% Finding left side blank spaces
cntB=1;
while (sum(bw(:,cntB