代码搜索:Learning
找到约 5,352 项符合「Learning」的源代码
代码结果 5,352
www.eeworm.com/read/448027/7541591
m som_settings.m
function settings = som_settings(type)
% default setting structure
% som_settings build a default structure
%
% settings = som_settings(type);
%
% input:
% type type of settings (
www.eeworm.com/read/446124/7585130
txt 新建 文本文档.txt
张椿启的日志
发站内信 | 加为好友 张椿启的日志 与张椿启相关的日志
上一篇 / 下一篇 共2160篇日志
分享
将Word文档转换为Powerpoint演示文稿http://www.tech-ex.com/learning/swdi...
ppt制作问题及技巧云集~(好东东啊,记得分享!!!!!!!!!) 2008-12-06 05:48 | (分类:默认分类
www.eeworm.com/read/441245/7673247
m prex_cleval.m
%PREX_CLEVAL PRTools example on learning curves
%
% Presents the learning curves for Highleyman's classes
%
help prex_cleval
delfigs
echo on
% Set desired learning sizes
learnsize
www.eeworm.com/read/439271/7713613
m chap5_6main.m
%Adaptive switching Learning Control for Single Robot Manipulator
clc;
clear all;
close all;
global old_delta
t=[0:0.01:1]';
k(1:101)=0;
k=k';
delta(1:101)=0;
delta=delta';
M=20;
for i=0:1:M % St
www.eeworm.com/read/397761/8023177
m example22a.m
%perc2a
%%===============
%%===============
%
figure('name','训练过程图示','numbertitle','off');
P=[-0.5 -0.5 0.3 0;-0.5 0.5 -0.5 1];
T=[1 1 0 0];
%initialization
[R,Q]=size(P); [S,Q]=size(T)
www.eeworm.com/read/397761/8023295
m example22.m
%perc2
%%===============
%%===============
%
figure('name','训练过程图示','numbertitle','off');
P=[-0.5 -0.5 0.3 0;-0.5 0.5 -0.5 1];
T=[1 1 0 0];
%initialization
[R,Q]=size(P); [S,Q]=size(T);
www.eeworm.com/read/397761/8023448
m example24a.m
%perc4
%%===============
%%===============
figure('name','训练过程图示','numbertitle','off');
P=[-0.5 -0.5 0.3 0 -0.8;-0.5 0.5 -0.5 1 0];
T=[1 1 0 0 0];
%initialization
[R,Q]=size(P); [S,Q]=size(T
www.eeworm.com/read/397761/8023729
m selforganize.m
function [w,wbias,y,d,b,sse]=selforganize(x,c,t)
% RBF网络的实现
%x为np×ni的输入矩阵。np为输入样本个数,ni为RBF网络输入层单元数
%c为ni×m的初始中心矩阵。m为中心的个数
%t为np×no的期望输出矩阵。No为RBF网络输出层节单元数
[np,ni]=size(x);
d=learning_c(x,c); %学
www.eeworm.com/read/397761/8023860
m example24.m
%perc4
%%===============
%%===============
figure('name','训练过程图示','numbertitle','off');
P=[-0.5 -0.5 0.3 0 -0.8;-0.5 0.5 -0.5 1 0];
T=[1 1 0 0 0];
%initialization
[R,Q]=size(P); [S,Q]=size(T
www.eeworm.com/read/397761/8023923
m example21a.m
%Perc1a
%%===============
%%===============
%%%and of pecerptron
figure('name','训练过程图示','numbertitle','off');
P=[0 0 1 1;0 1 0 1]; T=[0 0 0 1];
%initialization
[R,Q]=size(P); [S,Q]=size(T