Applying function to cell array
1 次查看(过去 30 天)
显示 更早的评论
I want to apply a function to each row in a cell array. I have a 185 x 1 array (called values), each row with 60000 points. I want to apply the function:
min(findchangepts(x,'MaxNumChanges', 2))
I somewhat understand the cellfun function and can do something simple like finding the mean for each row:
avg = cellfun(@mean, values);
How do I apply this more complex function?
0 个评论
回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!