removing specific rows from char array

20 visualizaciones (últimos 30 días)
sermet OGUTCU
sermet OGUTCU el 27 de Ag. de 2021
Comentada: the cyclist el 27 de Ag. de 2021
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10'];
How I can remove the 1st and 5th columns from data aray?
  1 comentario
the cyclist
the cyclist el 27 de Ag. de 2021
data is a 10x2 character array, so it does not have a 5th column. I assume you meant row. See my solution.

Iniciar sesión para comentar.

Respuesta aceptada

the cyclist
the cyclist el 27 de Ag. de 2021
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10'];
data([1 5],:) = []
data = 8×2 char array
'02' '03' '04' '06' '07' '08' '09' '10'
  2 comentarios
sermet OGUTCU
sermet OGUTCU el 27 de Ag. de 2021
Editada: sermet OGUTCU el 27 de Ag. de 2021
Dear @the cyclist, the column numbers that should be removed are defined as variable such as:
remove=[1 5];
How I can apply the remove variable into the above code rather than writing [1 5] ?
the cyclist
the cyclist el 27 de Ag. de 2021
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10'];
remove = [1 5];
data(remove,:) = []
data = 8×2 char array
'02' '03' '04' '06' '07' '08' '09' '10'
This is a very basic MATLAB question. You might benefit from watching the MATLAB Onramp tutorial.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Types 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