Operate by logical arrays element by element (error: Unable to perform assignment because the left and right sides have a different number of elements.)
1 次查看(过去 30 天)
显示 更早的评论
Hi:
I have a problem using logical arrays. I'd like to use the array for matrix element operation, for example:
a=[1, nan];
b=[8, 9];
I want to replace all nan elements in matrix a and replace it with b. For this example, I want output is [1, 9].
I've tried the followings:
TF= isnan(a); %gives a logical array [0, 1]
a(TF)=b;
or
a(isnan(a))=b;
Both give the error message "Unable to perform assignment because the left and right sides have a different number of elements."
if isnan(a)
a=b;
end
No error message, but all elements in matrix a won't change.
I wonder if there are any ways to do it avoid using for loops (works, but slower)
for i=1:2
if isnan(a(i))
a(i)=b(i);
end
end
Thanks.
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!