new version of "newtr" function
7 次查看(过去 30 天)
显示 更早的评论
Hi everybody I got a code (SRGTSToolbox) that has been written with old version of MATLAB. This is a part of that code:
% CALCULATE ACTUAL ERROR
w1 = p(:,used)';
a1 = radbas(dist(w1,p)*b);
[w2,b2] = solvelin2(a1,t);
a2 = w2*a1 + b2*ones(1,q);
sse = sumsqr(t-a2);
% Start
tr = newtr(mn,'perf');
tr.perf(1) = sumsqr(t);
tr.perf(2) = sse;
As can be seen there is a function called "newtr". What's the updated version of this function in MATLAB 2015? This is a part of radial basis neural network code. Thanks
10 个评论
浩 陈
2022-6-8
Hello, when I set up the program like you, I will find that Cliptr function is not defined, how to solve this problem
Walter Roberson
2022-6-8
You can find the source code for cliptr as part of https://svn-mede.ewi.tudelft.nl/trac/MM-ICT/PRTOOLS/browser/pr_newrb.m
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!