append file from loop
Show older comments
hello
how i can append file from each loop output
folloing
gives me
Invalid parameter name: WriteMode.
mine code is below:
for lr = mu
for m = maxFail
for hl = hiddenLayerSize
net = fitnet(hl,trainFcn)
[net,tr] = train(net,x,t);
y = net(x)
[c] = confusion(t,y)
performance = perform(net,t,y)
e = gsubtract(t,y)
Tnew = array2table([lr,m,hl,performance,100*c])
% Tnew = [lr,m,hl,e,100*c,100*(1-c),performance];
writetable(Tnew,'Tnew2','WriteMode','Append','WriteVariableNames', false)
end
end
end
Accepted Answer
More Answers (0)
Categories
Find more on Networks in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!