how can I use the function ‘histfit’ with a cell array?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello everyone, I’m trying to use the function ‘histfit’ or 'ksdensity' with a cell array (attached), there are different cells inside, the matter is that is a bit tricky to run a statistical analysis to the whole dataset because the data is stored in this way, what would be the best way to perform this?. Thanks a lot for your help.
4 Kommentare
dpb
am 27 Mai 2021
The cell array is comprised of column vectors--either create them as row vectors when generating or transpose the result...
locs=cellfun(@transpose,locs,'UniformOutput',false);
MATLAB isn't a spreadsheet so other than the variable editor window or writing to one or using other display tools, at the command window the default display for cell arrays is what it is.
If you would state explicitly what it is that you want to calculate on what data, then somebody could undoubtedly guide you, but as long as all we can do is guess what the real end objective is, we're just grasping at straws.
Individually, it wouldn't appear there's enough data in any one cell to do too much in the way of any statisical analyses, but not having any klew what the data represent or what the objectives are, simply can't say much about what else to do.
Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!