Why does following code don't give any output?

1 次查看(过去 30 天)
for i =0.1:0.1:12
if(i==3)
fprintf('Hello\n')
end
end

采纳的回答

Rik
Rik 2022-4-13
Because the number 3 doesn't exist in your array:
data=0.1:0.1:12;
[~,ind]=min(abs(data-3));
data(ind)
ans = 3.0000
Now, that looks like 3, but let's investigate if it is exactly 3:
data(ind)-3
ans = 4.4409e-16
Close, but not exact. Since you used ==, Matlab will only give you the fprintf if the match is exact.
The solution is to use a tolerance.
for i =0.1:0.1:12
if abs(i-3)<(10*eps)
fprintf('Hello\n')
end
end
Hello

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by