代码搜索:Gradient

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

代码结果 2,951
www.eeworm.com/read/103742/15724506

dfm unit1.dfm

object Form1: TForm1 Left = 314 Top = 244 AutoSize = True BorderStyle = bsToolWindow Caption = 'LAN Update Lite' ClientHeight = 129 ClientWidth = 236 Color = clBtnFace Font.
www.eeworm.com/read/103742/15724508

~dfm unit1.~dfm

object Form1: TForm1 Left = 314 Top = 244 AutoSize = True BorderStyle = bsToolWindow Caption = 'LAN Update Lite' ClientHeight = 129 ClientWidth = 236 Color = clBtnFace Font.
www.eeworm.com/read/103742/15724521

dfm config.dfm

object Configure: TConfigure Left = 229 Top = 152 AutoSize = True BorderStyle = bsToolWindow Caption = 'Options' ClientHeight = 312 ClientWidth = 425 Color = clBtnFace Font.
www.eeworm.com/read/103742/15724542

~dfm config.~dfm

object Configure: TConfigure Left = 229 Top = 152 AutoSize = True BorderStyle = bsToolWindow Caption = 'Options' ClientHeight = 312 ClientWidth = 425 Color = clBtnFace Font.
www.eeworm.com/read/103618/15727734

m exm07512_1.m

%exm07512_1.m shg;clf; [X,Y] = meshgrid([-2:.2:2]); Z = 4*X.*exp(-X.^2-Y.^2); G=gradient(Z); subplot(1,2,1),surf(X,Y,Z,G) subplot(1,2,2),h=surf(X,Y,Z,G); rotate(h,[-2,-2,0],30,[2,2,0]) colorma
www.eeworm.com/read/103349/15736399

~dfm u_fr_yearper.~dfm

object Fr_yearper: TFr_yearper Left = 0 Top = 0 Width = 455 Height = 298 TabOrder = 0 object DBChart1: TDBChart Left = 0 Top = 0 Width = 455 Height = 298 All
www.eeworm.com/read/103349/15736406

dfm u_fr_yearper.dfm

object Fr_yearper: TFr_yearper Left = 0 Top = 0 Width = 455 Height = 298 TabOrder = 0 object DBChart1: TDBChart Left = 0 Top = 0 Width = 455 Height = 298 All
www.eeworm.com/read/392181/8360382

m p0309.m

[I,map]=imread('3-22.jpg'); imshow(I,map); I=double(I); [Gx,Gy]=gradient(I); % 计算梯度 G=sqrt(Gx.*Gx+Gy.*Gy); % 注意是矩阵点乘 J1=G; figure,imshow(J1,map); % 第一种图像增强 J2=I;
www.eeworm.com/read/192224/8397269

txt b3.txt

B1=1.5039759; B2=0.55069141; B3=6.5927379; C1=0.0054804113; C2=0.014799428; C3=402.89514; c=3*10^8; x=0.4:0.01:2.0; n=(1+(B1.*x.^2)./(x.^2-C1)+(B2.*x.^2)./(x.^2-C2)+(B3.*x
www.eeworm.com/read/432821/8570050

m ex234.m

%******************************************************** %程序:EX234.M %功能:工作空间直接做图法使用实例 %******************************************************** [x,y,z]=peaks(30); %定义图形peaks contour(x,y,z