convert specific vector to vector in one direction

조회 수: 1 (최근 30일)
muhammad ismat
muhammad ismat 2016년 2월 19일
답변: muhammad ismat 2016년 2월 19일
if i have av=[1 2;3 4;2 1;4 3] and i want the result a=[1 2;3 4]

답변 (3개)

James Tursa
James Tursa 2016년 2월 19일
편집: James Tursa 2016년 2월 19일
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
muhammad ismat 2016년 2월 19일
i have a vector as av=[1 2;5 6;7 8;4 3;9 8;6 7;2 1;6 5;8 7;3 4;8 9;7 6] i want to a=[1 2;5 6;7 8;4 3;9 8;6 7]

muhammad ismat
muhammad ismat 2016년 2월 19일
that's right , thank you very much

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by