append file from loop
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Networks en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!