代码搜索:CLOSE
找到约 10,000 项符合「CLOSE」的源代码
代码结果 10,000
www.eeworm.com/read/196814/8058500
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/196814/8058529
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/196814/8058531
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/196814/8058607
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/397245/8061678
cs languagelocator.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.OleDb;
using System.Collections;
namespace test
{
public class LanguageLocator
{
OleDbCon
www.eeworm.com/read/397245/8061687
cs studentlocator.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.OleDb;
using System.Collections;
namespace test
{
public class studentLocator
{
OleDbConn
www.eeworm.com/read/397245/8061703
cs teacherlocator.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Data.OleDb;
using System.Collections;
namespace test
{
public class teacherLocator
{
OleDbConn
www.eeworm.com/read/397240/8061779
cpp connect.cpp
#include
#include
using namespace std;
//'&'代表空字
void connect()
{
int head,rear,i=0,a,b;
char middle,tail;
//变量定义
ifstream infile1("nfa1.txt",ios::in);
if(!infile1)