how can i creat an sub array with last n number of column of an array?
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
jakaria babar
el 21 de Dic. de 2018
Comentada: jakaria babar
el 22 de Dic. de 2018
s =
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
a =
3 4 5
8 9 10
13 14 15
i am not getting 'a' using the code
A=s(1:n;end-n-1:end).
0 comentarios
Respuesta aceptada
madhan ravi
el 21 de Dic. de 2018
Editada: madhan ravi
el 21 de Dic. de 2018
By indexing you can achieve it :
s= [1 2 3 4 5
6 7 8 9 10
11 12 13 14 15];
n = 3 ; % last n number of columns
a = s(:,n:end)
Gives:
a =
3 4 5
8 9 10
13 14 15
0 comentarios
Más respuestas (2)
Ver también
Categorías
Más información sobre Array Geometries and Analysis 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!