Effacer les filtres
Effacer les filtres

Packing perfcurve results into a structure

1 vue (au cours des 30 derniers jours)
Joanna Przeworska
Joanna Przeworska le 5 Août 2021
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;

Réponse acceptée

Chunru
Chunru le 5 Août 2021
Modifié(e) : Chunru le 5 Août 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]);
  1 commentaire
Joanna Przeworska
Joanna Przeworska le 5 Août 2021
Thank you very much, your solution works perfectly!

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by