How can I sort data from an excel file and assign ID's to binary classes?

3 ビュー (過去 30 日間)
Michael Seed
Michael Seed 2021 年 9 月 16 日
コメント済み: KSSV 2021 年 9 月 16 日
num1 = xlsread('Smart_meter_data.xlsx', 'B2:AW93');
data = num1;
num2 = xlsread('Smart_meter_data.xlsx', 'AX2:AX93');
id = num2;
I have an excel file that is 92 rows of 48 columns of measured values, and the 49th column are the ID numbers for what is being measured in each row. How do I write an 'if statement' to see if each row contains measurements above a certain value, and if it does then the corresponding ID number in the last column is true? Logically I'm trying to do something like this, but this obviously isn't a working syntax.
if (data > 2)
id = yes
elseif (id~=yes)
id = no
end

回答 (1 件)

KSSV
KSSV 2021 年 9 月 16 日
編集済み: KSSV 2021 年 9 月 16 日
You need not to use a loop. You can go by inequalities, where you will get logical indices as output. The logical indices have 1 where condition is true and 0 where condition is false. You can convert the logical to double using the function double.
id = data > 2 ;
  7 件のコメント
Stephen23
Stephen23 2021 年 9 月 16 日
@KSSV: this line, which is not valid MATLAB syntax:
if id = data > 2;
@Michael Seed: forget about IF, use logical indexing and FPRINTF.
KSSV
KSSV 2021 年 9 月 16 日
Check the class of data. It might be a string. Use readtable to load excel file data.

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

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by