将所有NaN替换为零而不遍历整个矩阵? [英] Replacing all NaNs with zeros without looping through the whole matrix?

查看:66
本文介绍了将所有NaN替换为零而不遍历整个矩阵?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个想法,可以通过遍历每个NaN并使用isnan来替换矩阵中的所有NaN.但是,我怀疑这会使我的代码运行得比应该的慢.有人可以提供更好的建议吗?

I had an idea to replace all the NaNs in my matrix by looping through each one and using isnan. However, I suspect this will make my code run more slowly than it should. Can someone provide a better suggestion?

推荐答案

假设您的矩阵是:

A = 
     NaN   1       6
     3     5     NaN
     4     NaN     2

您可以找到NaN元素,并使用 isnan 将它们替换为零.像这样:

You can find the NaN elements and replace them with zero using isnan like this :

A(isnan(A)) = 0;

那么您的输出将是:

A =
     0     1     6
     3     5     0
     4     0     2

这篇关于将所有NaN替换为零而不遍历整个矩阵?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆