how do i extract every 10th column from a matrix
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
using selectcolumn
1 comentario
Stephen23
el 5 de Sept. de 2017
@David Craven: what is selectcolumn ?
Why not use very simple and efficient indexing?
Respuestas (1)
Star Strider
el 5 de Sept. de 2017
I can’t find a ‘selectcolumn’ function in the online documentation or the File Exchange.
If ‘M’ is your matrix, either:
Out = M(:,[1 10:10:end]);
or:
Out = M(:,1:10:end);
depending on how you define ‘every 10th column’.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!