Borrar filtros
Borrar filtros

How to concatenate cell array with blank

10 visualizaciones (últimos 30 días)
Karthik KJ
Karthik KJ el 26 de Mayo de 2012
Hi, can anyone help me in concatenating below cell array
{'ob' '^b' [] '$b'}
so that output will be
{'ob' '^b' '$b'}
this is an dynamic output so i could not identify the exact position of blank. Is there any simple method available otherwise i have to use a loop to identify the blank.

Respuesta aceptada

Oleg Komarov
Oleg Komarov el 26 de Mayo de 2012
cs = {'ob' '^b' [] '$b'};
idx = cellfun('isempty',cs);
cs = cs(~idx);

Más respuestas (2)

Karthik KJ
Karthik KJ el 26 de Mayo de 2012
Hi Oleg, if i have index=[1;0;0] and string={'mean' 'min' 'max'}. As per index my output should be 'mean', how to get this. string(~index) gives ''min'' and ''max''. what is the sign to be used for getting ''mean''
  1 comentario
Oleg Komarov
Oleg Komarov el 26 de Mayo de 2012
~ is the negation operator.
try in your command window:
~index
index
Then it should be clear what to use to get 'mean'.

Iniciar sesión para comentar.


Karthik KJ
Karthik KJ el 27 de Mayo de 2012
thank you oleg. two negation operator can provide as you said. string(~~index)
  1 comentario
Oleg Komarov
Oleg Komarov el 27 de Mayo de 2012
Or you can simply remove the tilde and simple use index.

Iniciar sesión para comentar.

Categorías

Más información sobre Structures 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!

Translated by