convert specific vector to vector in one direction
Mostrar comentarios más antiguos
if i have av=[1 2;3 4;2 1;4 3] and i want the result a=[1 2;3 4]
Respuestas (3)
James Tursa
el 19 de Feb. de 2016
Editada: James Tursa
el 19 de Feb. de 2016
a = av(1:2,1:2);
If this simple solution is not what you are looking for then please give more details in your question.
Based on your reply it looks like you simply want the top half of your matrix. So try this:
[m n] = size(av);
a = av(1:(m/2),:);
muhammad ismat
el 19 de Feb. de 2016
0 votos
muhammad ismat
el 19 de Feb. de 2016
0 votos
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!