I am not sure why my if statement code is not working

2 次查看(过去 30 天)
I have this code which omits the first two conditions and executes the last one , can you please have a look as I have tried it a few times without success. Thank You
y=SULPHUR(:,2);
x=table2array(y);
x(isnan(x)) = [];
for i=1:length(x)
if x > 0.5000
disp('HSFO');
elseif x >= 0.1000 & x<=0.5000
disp('VLSFO');
else
disp('ULSFO')
end
end

采纳的回答

KSSV
KSSV 2021-5-26
x is an array and you are comapring it with a scalar.
x=SULPHUR(:,2);
x(isnan(x)) = [];
for i=1:length(x)
if x(i) > 0.5000
disp('HSFO');
elseif x(i) >= 0.1000 & x(i)<=0.5000
disp('VLSFO');
else
disp('ULSFO')
end
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Type Identification 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by