How to remove rows in which at least one NaN values can found?

9 次查看(过去 30 天)
How to remove rows in which at least one NaN values can found? Is it possible to do this in one script line?

采纳的回答

Image Analyst
Image Analyst 2018-6-11
If m is your matrix:
m(any(isnan(m), 2), :) = []

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 NaNs 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by