How can I assign information to my array file?

1 回表示 (過去 30 日間)
Serhat Sayim
Serhat Sayim 2021 年 5 月 9 日
編集済み: Turlough Hughes 2021 年 5 月 9 日
I have a 1x720 size data file containing the numbers I have calculated. You can see it in attachments. I set my threshold of 0.4 for this data. I would like to mark those below 0.4 as "wheeze" and those greater than 0.4 as "non-wheeze". Can you help me to do this? Thank you.

採用された回答

Turlough Hughes
Turlough Hughes 2021 年 5 月 9 日
編集済み: Turlough Hughes 2021 年 5 月 9 日
You could make a table as follows:
w = strings(size(mci));
w(mci<0.4) = "wheeze";
w(mci>=0.4) = "non-wheeze";
T = table(mci.',w.','VariableNames',{'mci','wheeze'})

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by