Converting sequence to binary based on the value exceeding condition

1 回表示 (過去 30 日間)
William Taylor
William Taylor 2020 年 12 月 27 日
コメント済み: Image Analyst 2020 年 12 月 27 日
Say I have a sequence x = [2 4 3 7 5 4 3], and I want to convert the sequence to 1s and 0s based on if the value at each index position is greater than 5. So the output of the function would give y = [0 0 0 1 1 0 0]...what would this function look like?
I have attempted this from the below, could you also explain if this is the correct path?
Many thanks for your help
for i=length(x)
if x(i:end) > 5
y(i) = 1;
else
y(i) = 0;
end

回答 (1 件)

Image Analyst
Image Analyst 2020 年 12 月 27 日
One line of code is all it takes:
y = x > 5
  1 件のコメント
Image Analyst
Image Analyst 2020 年 12 月 27 日
or
y = x >= 5
depending on what you want. (Your question shows it both ways and is ambiguous.)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by