Azzera filtri
Azzera filtri

append file from loop

2 visualizzazioni (ultimi 30 giorni)
Tomasz Kaczmarski
Tomasz Kaczmarski il 26 Mar 2020
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

Risposta accettata

Ameer Hamza
Ameer Hamza il 26 Mar 2020
The WriteMode property was introduced in R2020a. For R2019b you do something like this
dlmwrite('Tnew2.txt', Tnew, '-append');

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti


Release

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by