How to delete every nth column in table?
23 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a table (X) and want to delete every 2nd column from it.
0 comentarios
Respuestas (1)
Mathieu NOE
el 11 de Mzo. de 2024
Editada: Mathieu NOE
el 11 de Mzo. de 2024
maybe this ?
X = (1:9)'*(1:10:50);
% remove only 2nd column
t = array2table(X,'VariableNames',{'t' 'x' 'y' 'z' 'r'})
t(:,2) = []
% remove every 2nd column (c = 2,4,6,...)
t = array2table(X,'VariableNames',{'t' 'x' 'y' 'z' 'r'});
t(:,2:2:end) = []
0 comentarios
Ver también
Categorías
Más información sobre Tables 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!