Its a MATLAB question Need help with it ASAP Dont use the pr
It\'s a MATLAB question
Need help with it ASAP
(Don\'t use the program)
Solution
data=xlsread(\'data.xlsx\');
n=size(data,1);
j=1;
for i = 1:n
if data(i)>0 & data(i)<=200
refinedData(j)=data(i); %refined data to save only positive values<200
j=j+1;
end
end
