Azzera filtri
Azzera filtri

Packing perfcurve results into a structure

1 visualizzazione (ultimi 30 giorni)
Hi all,
Is there faster and more space saving way (different than the one below) to pack the perfcurve results into a structure?
[X_,Y_,T_,AUC,OPTROCPT] = perfcurve(cr,mdl.Fitted.Probability,1,'NBoot',0,'XVals','All','Cost',[0 tau;(1-tau) 0]);
Struct.X = X_;
Struct.Y = Y_;
Struct.T = T_;
Struct.AUC = AUC;
Struct.OPTROCPT = OPTROCPT;

Risposta accettata

Chunru
Chunru il 5 Ago 2021
Modificato: Chunru il 5 Ago 2021
% avoid using Struct (similar to keyword struct)
p=struct('X', X_, 'Y', Y_, 'T', T_, 'AUC', AUC, 'OPTROCPT', OPTROCPT);
% Alternatively
[p.X, p.Y, p.T, p.AUC, p.OPTROCPT] = perfcurve(cr,mdl.Fitted.Probability,1,'NBoot',0,'XVals','All','Cost',[0 tau;(1-tau) 0]);

Più risposte (0)

Prodotti


Release

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by