I have a matrix which looks like A = [1 NaN 1 ; NaN 1 2; NaN 1 2]; How can I remove all NaN's from the A matrix?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Rubel Ahmed
el 7 de Nov. de 2018
Comentada: madhan ravi
el 7 de Nov. de 2018
A = [1 NaN 1 ; NaN 1 2; NaN 1 2];
0 comentarios
Respuesta aceptada
madhan ravi
el 7 de Nov. de 2018
Editada: madhan ravi
el 7 de Nov. de 2018
A = [1 NaN 1 ; NaN 1 2; NaN 1 2];
A(isnan(A))=[] ;
A = reshape(A,3,2)
command window:
>> COMMUNITY
A =
1 1
1 2
1 2
>>
4 comentarios
madhan ravi
el 7 de Nov. de 2018
B = [1 NaN, NaN,3,1;1 NaN, 1,NaN,1;1 NaN, 1,NaN,1;1 NaN, NaN,NaN,1;1 NaN, 2,NaN,1]
B(isnan(B))=[]
a=factor(numel(B));
m = max(a);
n=min(a);
reshape(B,m,n)
Más respuestas (2)
Ver también
Categorías
Más información sobre ANOVA en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!