classify data from csv fil
Show older comments
hello everyone
I want to read data from csv file and classify these data. my csv look like this:
0
0.139999945
0.209999918
12.86283386
0
-0.649996554
-2.609774285
-114.4151
...
its [154*1][row*col], I want to classify these data as
- (if data = 0 then write 0 in the second column)
- (if 0<data<=45 then print 1)
- (if 45<data<=90 then print 2)
- (if 0>data>=-45 then print 3)
- (if -45>data>=-90 then print 4)
I don't know what should I write in the condition statement! the following is my attempt but it doesn't give the desired output.
M = csvread('imu.csv')
[rows cols] = size(M);
for k = 1:length(M)
if M == 0
A=0;
elseif 0<M<=45
A=1;
elseif 45<M<=90
A=2;
elseif 0>M>=-45
A=3;
else
A=4;
end
end
csvwrite('imu2.csv',A);
1 Comment
Image Analyst
on 11 May 2018
Edited: Image Analyst
on 11 May 2018
"write 0 in the second column" of what , A or M? If A, then what is in the first column of A?
Accepted Answer
More Answers (0)
Categories
Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!