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

1 回表示 (過去 30 日間)
NCA
NCA 2021 年 5 月 26 日
回答済み: KSSV 2021 年 5 月 26 日
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 Center および File ExchangeData Type Identification についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by