代码搜索:Gradient

找到约 2,951 项符合「Gradient」的源代码

代码结果 2,951
www.eeworm.com/read/157213/11730010

java drawingpanel.java

import java.awt.*; import java.awt.geom.*; import javax.swing.*; class DrawingPanel extends JPanel { private Ellipse2D.Double circle = new Ellipse2D.Double(10, 10, 350, 350); private G
www.eeworm.com/read/150760/12265894

m rbfpreimg2.m

function z = rbfpreimg2(varargin) % RBFPREIMG2 RBF pre-image problem by Gradient optimization. % % Synopsis: % z = rbfpreimg2(model) % z = rbfpreimg2(model,options) % % Description: % z = rbfprei
www.eeworm.com/read/251851/12315318

m stretch_func_lin.m

function [f,grad] = stretch_func_lin(xt,A,Ainv,b,n_vector,n) % the current evaluation of the optimization problem x0 = xt(1:n); t = xt(n+1); % computation of the objective function and grad
www.eeworm.com/read/226299/14482047

java drawingpanel.java

import java.awt.*; import java.awt.geom.*; import javax.swing.*; /** A window with text drawn at an angle. The font is * set by means of the setFontName method. * * Taken from Core Servlets
www.eeworm.com/read/217557/14958800

m stretch_func_lin.m

function [f,grad] = stretch_func_lin(xt,A,Ainv,b,n_vector,n) % the current evaluation of the optimization problem x0 = xt(1:n); t = xt(n+1); % computation of the objective function and grad
www.eeworm.com/read/114552/15048144

txt mch04-33.txt

三维箭头图 vz = 10; % 速度 a = -32; % 加速度 t = 0:.1:1; z = vz*t + 1/2*a*t.^2; vx = 2; x = vx*t; vy = 3; y = vy*t; u = gradient(x); v = gradient(y); w = gradient(z); scale = 0; quiver3(x,y,z,u,
www.eeworm.com/read/213492/15133711

m rbfpreimg2.m

function z = rbfpreimg2(varargin) % RBFPREIMG2 RBF pre-image problem by Gradient optimization. % % Synopsis: % z = rbfpreimg2(model) % z = rbfpreimg2(model,options) % % Description: % z = rbfprei
www.eeworm.com/read/210259/15202722

m mutual_mimo_deri_diag.m

function [fgrad_mean, fhess_mean, fmutual_mean] = ... mutual_mimo_deri_diag(M, N, H0, Rt_sqrt, gamma, lambda, NSAMPLE, I) %------------------------------------------------------------ % Fun
www.eeworm.com/read/475585/6773757

cpp makerow.cpp

/********************************************************************** * File: makerow.cpp (Formerly makerows.c) * Description: Code to arrange blobs into rows of text. * Author: Ray Smit
www.eeworm.com/read/395332/8184297

c filter.c

// Filtering for Image with variaty filtering kernel // // CV_PREWITT_3x3_V A gradient filter (vertical Prewitt operator). // -1 0 1 // -1 0 1 // -1 0 1 // CV_PREWITT_3x