⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 approxhelper.m

📁 Matlab 下BP 神经网络源程序例.
💻 M
字号:
% approxhelper.m%% This script does the training, following LearnSchedule.for i = 1:Inf  if epoch >= sum(LearnSchedule(1:sched_pointer,1))    sched_pointer = sched_pointer + 1;    if sched_pointer > size(LearnSchedule,1), return, end    end  LearnRate = LearnSchedule(sched_pointer,2);  epoch = epoch+1;  bp_innerloop  if rem(epoch-1,10) == 0      PlotApprox(Patterns,Result1,Desired,Result2);      fprintf('Epoch %4d:  Error = %f\n',epoch,TSS);      drawnow     end  if TSS < TSS_Limit, break, end  end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -