removing specific rows from char array
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
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.
Respuesta aceptada
the cyclist
el 27 de Ag. de 2021
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10'];
data([1 5],:) = []
2 comentarios
sermet OGUTCU
el 27 de Ag. de 2021
Editada: sermet OGUTCU
el 27 de Ag. de 2021
the cyclist
el 27 de Ag. de 2021
data=['01'; '02'; '03'; '04'; '05'; '06'; '07'; '08'; '09'; '10'];
remove = [1 5];
data(remove,:) = []
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB 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!