Big table with zero

4 visualizaciones (últimos 30 días)
babyelephant
babyelephant el 14 de Mzo. de 2019
Respondida: babyelephant el 22 de Mzo. de 2019
T = [];
p=5;
for i =5:10
p=i+1;
T = data(p,11:74)
T(:,all(ismissing(T,0)))=[]
end
I have a big table where I need to read the entries row wise and remove all the col which has zero value. I am reading all the row using a loop . Kindly let me know the best.
var1 var2 var3 var4 var5
row1 0 1 0 0 1
var1 var2 var3 var4 var5
row2 1 1 0 0 1
results should be
var1 var2 var5
row2 1 1 1

Respuesta aceptada

Kevin Phung
Kevin Phung el 14 de Mzo. de 2019
for an array, say:
a =
1 0 0
1 0 1
1 1 1
0 0 1
you can just do:
any(a==0,1)
to find all columns that contain a 0.
  7 comentarios
Walter Roberson
Walter Roberson el 18 de Mzo. de 2019
T{:,col}
The table indexing syntax permits a cell array of column names.
babyelephant
babyelephant el 20 de Mzo. de 2019
data=pat(2:end,11:74); %change according to file
nrows=10;%change according to file
T = [];
val=data(1,1);
for i = 1:nrows
if i ==i
p=i;
T = data(p,:);
elseif val==data(i,1)
T = data(p+1,:);
end
T(:,all(ismissing(T,'')))=[]
col=T.Properties.VariableNames
T(any(T{:,:}==0,2),:) =[]
end
col=T.Properties.VariableNames;
coln=64;
valz=col{1}
for i = 1:64
if i ==i
s=i;
TZ = col{s};
T{:,ismember(T.Properties.VariableNames,TZ)}
end
end
I am new to MATLAB so may be my code looks not good. sorry for this.
Answer should be in a row wise loop for every row I should get only those col which contains one.

Iniciar sesión para comentar.

Más respuestas (2)

babyelephant
babyelephant el 20 de Mzo. de 2019
I can also use
[num,txt,raw] = xlsread('pat-test.xlsx');
raw{2,1}
num(2,1)
txt(1,:)
but then I can not find it out how I get the row without zero value col.
  1 comentario
Walter Roberson
Walter Roberson el 20 de Mzo. de 2019
num_not_empty = num(any(num,2),:);

Iniciar sesión para comentar.


babyelephant
babyelephant el 22 de Mzo. de 2019
Hello, Finally its done . Thank you all.
A=num(i,:); %get all the entries
A(isnan(A)) = 0; %convert NaN to zero
pos=find(A); %to find the possition of 1
[m,n] =size(pos);

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by