How to filter a 'tall' array using multiple conditions?
3 次查看(过去 30 天)
显示 更早的评论
I'm trying to get some data out of 'tall' arrays, with multiple conditions. So for example if my 'tall' array has 5 columns, I want to filter the array with conditions on multiple columns. 'find' doesn't work...
3 个评论
Adam Filion
2018-4-23
Do you need to return the 'check' value for some reason? It will always have the value of 'true'. If not it should be more efficient to return only the tall table itself without appending the logical index to it.
result = gather(tt(logtt,1:6));
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Tall Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!