代码搜索:CLOSE

找到约 10,000 项符合「CLOSE」的源代码

代码结果 10,000
www.eeworm.com/read/197958/7960445

m quadeg1.m

%微积分例1:一元函数求导(diff,gradient) clear;close; x=-2*pi:0.1:2*pi; y=sin(x); dy=diff(y)./diff(x); plot(x,y,x(1:length(x)-1),dy); hold on; yx =gradient(y,x); plot(x,yx,'ro');
www.eeworm.com/read/197958/7960467

m quadeg2.m

%微积分例2:二元函数求导(gradient) clear;close; xa=-1:0.1:1;ya=-1:0.1:1; [x,y]=meshgrid(xa,ya); F=y.*x.^2+y.^3.*x; [fx,fy]=gradient(F,xa,ya); subplot(1,2,1);mesh(fx); subplot(1,2,2);mesh(fy);
www.eeworm.com/read/197958/7960470

m fitcom4.m

%例子:样条插值与拟合 clear;close; x=linspace(0,2*pi,21); y=sin(x)+(rand(1,21)-0.5)*0.1; plot(x,y,'o');hold on;fnplt(csape(x,y)); fnplt(csaps(x,y,0.8),'r:');hold off;
www.eeworm.com/read/197958/7960550

m rooteg4.m

%方程求根例4:解方程组f=0,g=0图解法 clear;close; x1a=-1:0.01:1; x2a=-1:0.01:1; [x1,x2]=meshgrid(x1a,x2a); f=4*x1-x2+exp(x1)/10-1; g=-x1+4*x2+x1.^2/8; contour(x1,x2,f,[0,0]); hold on; contour(x1,x2,g,[0,0]
www.eeworm.com/read/197956/7961131

cpp about.cpp

//--------------------------------------------------------------------------- #include #pragma hdrstop #include "about.h" //------------------------------------------------------------
www.eeworm.com/read/298428/7961341

c creattmp.c

#include #include #include void main(void) { char path[64] = "C:\\TEMP\\"; int handle; if ((handle = creattemp(path, 0)) == -1) printf("Error cr
www.eeworm.com/read/197918/7962116

m gcz1.m

%gcz1 % inputing gcz objects nx=str2num(get(NX,'String')); ny=str2num(get(NY,'String')); nz=str2num(get(NZ,'String')); dx=str2num(get(DX,'String')); dy=str2num(get(DY,'String'));
www.eeworm.com/read/197869/7965461

c spitest.c

#define IN_TGPIO #include "config.h" #define CS 25 /* zi mo */ uint8 const ShowTable[11] = { 0xC0, 0xF9, 0xA4, 0xB0, 0x99, 0x92, 0x82, 0xF8, 0x80, 0x90, 0xFF}; // 0 1 2 3
www.eeworm.com/read/197843/7967202

frm frmreceive.frm

VERSION 5.00 Object = "{248DD890-BB45-11CF-9ABC-0080C7E7B78D}#1.0#0"; "MSWINSCK.OCX" Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX" Object = "{6B7E6392-850A-101B-AFC0-42101
www.eeworm.com/read/197786/7970859

asp uploadfile.asp