append file from loop

1 次查看(过去 30 天)
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

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Networks 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by