How to separate a vector into two different vectors?
30 次查看(过去 30 天)
显示 更早的评论
I have a vector named "age_vec" that I would like to piece into two groups, those above 37.5 and those below, and place those numbers into another vector. I keep trying to run this through a for loop but it puts all the numbers in the same vector, either all placed in agegreater or ageless, or I even tried just getting it to count those above and those below and it keeps putting everything into just one vector/variable.
Thank you.
age_vec =[ 21 18 57 52 20 22 23 21.50 38 31 30 29 58 53 21.75 86 55]
%Counting those above and those below
ageless=0;
agemore=0;
for i=1:length(age_vec)
if age_vec > 37.5
ageless= ageless + 1
else agemore= agemore + 1
end
end
%Placing into vectors
ageless=[];
agemore=[];
for i=1:length(age_vec)
if age_vec < 37.5
ageless=[ageless age_vec] + 1
else agemore=[agemore age_vec] + 1
end
end
0 个评论
采纳的回答
Star Strider
2021-12-2
Try this —
age_vec =[ 21 18 57 52 20 22 23 21.50 38 31 30 29 58 53 21.75 86 55];
Lv = age_vec > 37.5; % Logical Vector
age_more = age_vec(Lv)
age_less = age_vec(~Lv)
.
更多回答(3 个)
Image Analyst
2021-12-2
编辑:Image Analyst
2021-12-2
Try this:
age_vec =[ 21 18 57 52 20 22 23 21.50 38 31 30 29 58 53 21.75 86 55]
% Find indexes that are more than 37.5
moreIndexes = age_vec > 37.5
% Extract into two new vectors.
ageless=age_vec(~moreIndexes)
agemore=age_vec(moreIndexes)
0 个评论
Voss
2021-12-2
Probably the easiest way to do what you want is to use logical indexing. First make a vector of logicals that say whether each element of age_vec is greater than 37.5 or not:
is_greater = age_vec > 37.5;
Then make two new vectors by separating the elements of age_vec according to the corresponding value in is_greater:
age_more = age_vec(is_greater);
age_less = age_vec(~is_greater);
If you really want or need to use a for loop, let me know and I can show you how that would work, but this way with logical indexing is much more concise.
0 个评论
James Tursa
2021-12-2
编辑:James Tursa
2021-12-2
Others have already pointed out better ways of doing this. But to answer your question as to why your current code is not working, it is because you need to use the index i in your code. E.g.,
if age_vec(i) < 37.5
ageless = [ageless age_vec(i)];
else
agemore = [agemore age_vec(i)];
end
This will incrementally build up the ageless and agemore vectors, but at each iteration you will have to deep copy one of the vectors, so the performance will be severly impacted as the size of age_vec gets large. Hence the desire to use a different method as others have suggested.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!