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 view (last 30 days)
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.

Accepted Answer

Stephen23
Stephen23 on 25 Oct 2021
a = [1,nan];
b = [8,9];
x = isnan(a);
a(x) = b(x)
a = 1×2
1 9

More Answers (0)

Community Treasure Hunt

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

Start Hunting!