代码搜索:小样本

找到约 10,000 项符合「小样本」的源代码

代码结果 10,000
www.eeworm.com/read/130564/14185249

txt sin(x^2+y)样本100点.txt

2 .3 1 1000 0.01 1.2 0 2 .6 0 0 0 0 0 0 .2 .198669 0 .4 .389418 0 .6 .564642 0 .8 .717356 0 1 .84147 0 1.2 .932039 0 1.4 .985449 0 1.6
www.eeworm.com/read/130564/14185256

txt sin(x^2+y)样本400点.txt

2 .3 1 1000 0.0001 1.2 0 2 .6 0 0 0 0 0 0 .1 .099833 0 .2 .198669 0 .3 .29552 0 .4 .389418 0 .5 .479425 0 .6 .564642 0 .7 .644217 0 .8
www.eeworm.com/read/133994/14014819

txt sin(x^2+y)样本100点.txt

2 .3 1 1000 0.01 1.2 0 2 .6 0 0 0 0 0 0 .2 .198669 0 .4 .389418 0 .6 .564642 0 .8 .717356 0 1 .84147 0 1.2 .932039 0 1.4 .985449 0 1.6
www.eeworm.com/read/133994/14014822

txt sin(x^2+y)样本400点.txt

2 .3 1 1000 0.0001 1.2 0 2 .6 0 0 0 0 0 0 .1 .099833 0 .2 .198669 0 .3 .29552 0 .4 .389418 0 .5 .479425 0 .6 .564642 0 .7 .644217 0 .8
www.eeworm.com/read/189050/8494911

txt waterscr.txt

样本:我的朋友(周松丽) 爱好:上网、听音乐 年龄:18岁 QQ:171502391 2003年5月摄於湖南衡山 水晶情缘-网页特效专家制作 http://lovehy.126.com
www.eeworm.com/read/289101/8576216

m neuralnetwork_rbf_regression.m

% RBF 神经网络用于函数拟合  % 使用平台 - Matlab6.5 % 作者:陆振波,海军工程大学 % 欢迎同行来信交流与合作,更多文章与程序下载请访问我的个人主页 % 电子邮件:luzhenbo@yahoo.com.cn % 个人主页:http://luzhenbo.88uu.com.cn %clc clear close all %-------------
www.eeworm.com/read/429531/8803620

cpp bp1.cpp

// BP1.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include #include using namespace std; #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define HN 8
www.eeworm.com/read/285828/8809014

m nnnew3.m

%对1000个x(t)*x(t+tal)样本函数的100个时间点取平均(每个时间点为1000个点的均值), sum=zeros(1,100); for j=1:100 for i=1:1000 a=nnnew; sum(j)=a(j)/1000+sum(j); end end
www.eeworm.com/read/427712/8924819

m m10_9.m

close all clf reset figure (gcf); clc % NEWSOM——创建自组织网络 % TRAI
www.eeworm.com/read/179152/9368190

m exp2_16.m

%curve interpolation ys=[0 0.9 0.6 1 0 0.1 -0.3 -0.7 -0.9 -0.2]; %已有的样本点ys xs=0:length(ys)-1; %已有的样本点xs x=0:0.1:length(ys)-1;%新的样本点x y1=interp1(xs,ys,x,'nearest'); %插值产生新的样本点y1 y2=interp1(xs,ys,