Packing perfcurve results into a structure

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

采纳的回答

Chunru
Chunru 2021-8-5
编辑:Chunru 2021-8-5
% 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]);

更多回答(0 个)

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by