How to change matrix?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have a 6*3 matrix and I want to change to 6*2 matrix, how can I do it?
example:
N1=[1 2 3;4 5 6]
then
N1=[1 2;4 5]
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 1 de Jun. de 2013
Editada: Azzi Abdelmalek
el 1 de Jun. de 2013
N1=[1 2 3;4 5 6]
N1=N1(:,1:2) % : means all lines, and 1:2 means column 1 to 2
0 comentarios
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!