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!