Effacer les filtres
Effacer les filtres

inline function returning multiple output variables

5 vues (au cours des 30 derniers jours)
Pete sherer
Pete sherer le 25 Août 2023
Commenté : Pete sherer le 25 Août 2023
tdata = table(["US";"US";"US";"UK";"UK";"TW";"TW";"TW";"TW"], [1;1;5;1.20000000000000;3;4;5;1;2],'VariableNames',{'name','Loss'});
tecdf = @(x) ecdf( x, 'Function', 'survivor');
tout = varfun( tecdf, tdata, 'GroupingVariables','name','Input','Loss')
tout = 11×3 table
name GroupCount Fun_Loss ____ __________ ________ "TW" 4 1 "TW" 4 0.75 "TW" 4 0.5 "TW" 4 0.25 "TW" 4 0 "UK" 2 1 "UK" 2 0.5 "UK" 2 0 "US" 3 1 "US" 3 0.33333 "US" 3 0
tout only contains the first output from ecdf function. Is there a way to have it returns both output variables?
Thanks,

Réponse acceptée

Matt J
Matt J le 25 Août 2023
Modifié(e) : Matt J le 25 Août 2023
A wrapper is needed.
tdata = table(["US";"US";"US";"UK";"UK";"TW";"TW";"TW";"TW"], [1;1;5;1.20000000000000;3;4;5;1;2],'VariableNames',{'name','Loss'});
tecdf = @(x) ecdfWrapper( x, 'Function', 'survivor');
tout = varfun( tecdf, tdata, 'GroupingVariables','name','Input','Loss')
tout = 11×3 table
name GroupCount Fun_Loss ____ __________ __________________ "TW" 4 1 1 "TW" 4 0.75 1 "TW" 4 0.5 2 "TW" 4 0.25 4 "TW" 4 0 5 "UK" 2 1 1.2 "UK" 2 0.5 1.2 "UK" 2 0 3 "US" 3 1 1 "US" 3 0.33333 1 "US" 3 0 5
function out=ecdfWrapper(x,varargin)
[o1,o2]=ecdf( x, varargin{:});
out=[o1,o2];
end
  3 commentaires
Image Analyst
Image Analyst le 25 Août 2023
Rather than have to have an anonymous function use a wrapper function, why not just make the anonymous function into a regular function? Then there's no need for the anonymous function anymore.
Pete sherer
Pete sherer le 25 Août 2023
Thanks vey much

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Surrogate Optimization dans Help Center et File Exchange

Produits


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by