Matlab:如何对不包括NaN的数据下降进行排序
假设我有一行:
NaN 29.99 30.00 NaN 24.32 NaN
............我按降序对数据进行排序并选择前 10% 最大的数字?
‘sort’函数会将NaN作为“最大”~~~我怎样才能排除它呢?
谢谢!!
Say I have a row:
NaN 29.99 30.00 NaN 24.32 NaN ...............
How can I sort the data in descending order and select the top 10% largest number?
The 'sort' function will put NaN as the "largest"~~~ how can I exclude it?
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以先对行进行排序,然后排除 NaN,
这将从排序的行中删除所有 NaN。
更好的是,为了节省计算,您应该在排序之前排除 NaN。
You can first sort the row, and then exclude the NaN's
This will remove all NaNs from the sorted row.
Better Yet, to save computations , you should exclude NaNs before you sort.
尝试使用排序后:
sorted_row(~isnan(sorted_row))
Try using after sort:
sorted_row(~isnan(sorted_row))
如果您只需要选择前 10% 的最大数字,您可以使用 QUANTILE 或 Statistical Toolbox 中的 PRCTILE 函数(无排序需要):
或者
这些函数不考虑 NaN。
If you just need to select the top 10% largest numbers you can use QUANTILE or PRCTILE functions from Statistical Toolbox (no sort needed):
or
Those functions don't take NaNs into account.