代码搜索:gradient
找到约 2,951 项符合「gradient」的源代码
代码结果 2,951
www.eeworm.com/read/409190/2237718
dsw alpha_gradient.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
P
www.eeworm.com/read/402141/2332756
m gradient_example.m
%gradient_example.m
%计算二维高斯函数的梯度场
v=-2:0.25:2;
[x,y]=meshgrid(v,v); %产生自变量x,y
z= exp(-(x.^2+y.^2+0.5*x.*y)); %二维高斯函数
[px py]=gradient(
www.eeworm.com/read/386597/2570161
m gradient_descent.m
function Min = gradient_descent(a, theta, eta, fun)
% Minimize a function using the basic gradient descent algorithm
%
% Inputs:
% a - Initial search point
% theta - Convergence criterion
www.eeworm.com/read/384950/2596096
m gradient_example.m
%gradient_example.m
%计算二维高斯函数的梯度场
v=-2:0.25:2;
[x,y]=meshgrid(v,v); %产生自变量x,y
z= exp(-(x.^2+y.^2+0.5*x.*y)); %二维高斯函数
[px py]=gradient(
www.eeworm.com/read/375190/2731971
cpp x_gradient.cpp
/*
Copyright 2005-2007 Adobe Systems Incorporated
Use, modification and distribution are subject to the Boost Software License,
Version 1.0. (See accompanying file LICENSE_1_0.txt or c