91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 30KB
    文件類型: .rar
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2021-06-05
  • 語(yǔ)言: Matlab
  • 標(biāo)簽: Matlab??

資源簡(jiǎn)介

神經(jīng)網(wǎng)絡(luò)理論與Matlab R2007實(shí)現(xiàn)

資源截圖

代碼片段和文件信息

%獲得網(wǎng)絡(luò)的輸入樣本P和目標(biāo)樣本T
P=[1?0.6?0.1?0?0?0?0???1?0.5?0?0?0?0?0;
1?0.6?0.1?0?0?0?0???0?0.5?1?0.4?0?0?0;
1?0.6?0.1?0?0?0?0???0?0?0?0.4?1?0.6?0;
1?0.6?0.1?0?0?0?0???0?0?0?0?0?0?0.8;
0?0.6?0.6?0?0?0?0???1?0.5?0?0?0?0?0;
0?0.6?0.6?0?0?0?0???0?0.5?1?0.4?0?0?0;
0?0.6?0.6?0?0?0?0???0?0?0?0.4?1?0.6?0;
0?0.6?0.6?0?0?0?0???0?0?0?0?0?0?0.8;
0?0?0.6?1?0?0?0????1?0.5?0?0?0?0?0;
0?0?0.6?1?0?0?0????0?0.5?1?0.4?0?0?0;
0?0?0.6?1?0?0?0????0?0?0?0.4?1?0.6?0;
0?0?0.6?1?0?0?0????0?0?0?0?0?0?0.8;
0?0?0?0?1?0.6?0????1?0.5?0?0?0?0?0;
0?0?0?0?1?0.6?0????0?0.5?1?0.4?0?0?0;
0?0?0?0?1?0.6?0????0?0?0?0.4?1?0.6?0;
0?0?0?0?1?0.6?0????0?0?0?0?0?0?0.8]‘;
T=[1?0.5?0?0?0?0?0?0;
0?0?0?0.2?0.6?1?0.6?0.2;
0?0?0?0.2?0.6?1?0.6?0.2;
0?0?0?0.2?0.6?1?0.6?0.2;
0.4?0.8?1?0.8?0.4?0.2?0?0;
0?0?0?0.2?0.6?1?0.6?0.2;
0?0?0?0?0?0.2?0.5?0.8;
0?0?0?0.2?0.6?1?0.6?0.2;
0?0?0?0.2?0.6?1?0.6?0.2;
0?0?0?0.2?0.6?1?0.6?0.2;
0?0?0?0?0?0.2?0.5?0.8;
0?0?0?0?0?0.2?0.5?0.8;
0?0?0?0.2?0.6?1?0.6?0.2;
0?0?0?0.2?0.6?1?0.6?0.2;
0?0?0?0?0?0.2?0.5?0.8;
0?0?0?0?0?0.2?0.5?0.8]‘;
%根據(jù)Kolmogorov定理,輸入層有14個(gè)節(jié)點(diǎn),所以中間層有29個(gè)節(jié)點(diǎn)
%中間層神經(jīng)元的傳遞函數(shù)為‘tansig‘
%輸出層有8個(gè)節(jié)點(diǎn),其神經(jīng)元傳遞函數(shù)為logsig
%訓(xùn)練函數(shù)采用traingdx
net=newff(minmax(P)[298]{‘tansig‘‘logsig‘}‘traingdx‘);
%訓(xùn)練步數(shù)為1000次
%訓(xùn)練目標(biāo)誤差為0.001
net.trainParam.epochs=1000;
net.trainParam.goal=0.001;
net=train(netPT);
Y=sim(netP);
%求訓(xùn)練值在每一個(gè)點(diǎn)上的誤差
for?i=1:16
????x(i)=norm(Y(:i));
end
plot(1:16x);

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----

?????文件???????1504??2005-04-20?10:17??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter10\10-3-2.m

?????文件???????1121??2007-07-30?10:47??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter10\10-4-2.m

?????文件????????883??2007-07-30?10:49??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter11\11.m

?????文件????????262??2005-04-20?09:47??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-1.m

?????文件?????????60??2005-04-20?09:51??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-10.m

?????文件????????248??2005-04-20?09:51??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-11.m

?????文件????????209??2005-04-20?09:52??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-12.m

?????文件????????415??2005-04-20?09:56??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-13.m

?????文件????????150??2005-04-20?09:56??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-15.m

?????文件????????122??2005-04-20?09:53??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-16.m

?????文件????????541??2005-04-20?09:54??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-17.m

?????文件????????243??2005-04-20?09:54??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-18.m

?????文件????????142??2005-04-20?09:48??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-2.m

?????文件????????128??2005-04-20?09:48??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-3.m

?????文件????????120??2005-04-20?09:49??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-4.m

?????文件????????221??2005-04-20?09:50??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-5.m

?????文件????????164??2005-04-20?09:50??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-6.m

?????文件????????176??2005-04-20?09:50??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-7.m

?????文件????????125??2007-07-30?09:21??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-8.m

?????文件?????????88??2005-04-20?09:53??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter2\2-9.m

?????文件????????371??2005-04-20?09:57??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter3\3-1-1.m

?????文件????????460??2005-04-20?09:59??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter3\3-1-2.m

?????文件????????478??2005-04-20?10:00??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter3\3-4-5-2.m

?????文件????????172??2005-04-20?10:00??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter3\3-4-6.m

?????文件????????672??2007-07-30?10:22??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter4\4-1.m

?????文件????????723??2007-07-30?10:11??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter4\4-2-3.m

?????文件????????754??2005-04-20?10:02??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter4\4-2-4.m

?????文件????????847??2005-04-20?10:03??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter4\4-3-5.m

?????文件???????1067??2005-04-20?10:03??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter4\4-5-2.m

?????文件????????471??2007-07-30?10:21??神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)\神經(jīng)網(wǎng)絡(luò)理論與Matlab?R2007實(shí)現(xiàn)(程序代碼)\chapter5\5-1.m

............此處省略34個(gè)文件信息

評(píng)論

共有 條評(píng)論