Info

此问题已关闭。 请重新打开它进行编辑或回答。

How Create elseif as required inside a loop?

1 次查看(过去 30 天)
Hi, I want to create many nested loop mainly elseif by using a for loop like
for i=1:n
if m(i)>=start && m(i)<=D
a=a+1;
elseif m(i)>=D+1 && m(i)<=D*2
b=b+1;
elseif m(i)>=D*2+1 && m(i)<=D*3
c=c+1;
elseif m(i)>=D*3+1 && m(i)<=D*4
d=d+1;
elseif m(i)>=D*4+1 && m(i)<=D*5
e=e+1;
end
end
Here i want to add more elseif depends on condition automatically inside a the for loop, is it possible to create more 'elseif' or less inside for loop ??
  1 个评论
Stephen23
Stephen23 2018-3-29
编辑:Stephen23 2018-3-29
"...is it possible to create more 'elseif' or less inside for loop ??"
It is possible, but the two obvious ways of doing this are both bad ways to write code:
MATLAB is a high-level language, and rather than trying to solve everything with loops and if's it is much simpler to use the inbuilt commands. In your case you are counting values, i.e. calculating a histogram, and MATLAB has several histogram functions available:
These will be much simpler and much more efficient to use than dynamically accessing variable names in a loop.

回答(1 个)

Walter Roberson
Walter Roberson 2018-3-29
edges = [start, D*(1:5)];
counts = histcounts(m, edges);
counts will now be a vector, with counts(1) corresponding to your a, counts(2) corresponding to your b, and so on.
Note that this code will count start <= x < D, then D <= x < D*2, then D*2 <= x < D*3, then D*3 <= x < D*4, then D*4 <= x <= D*5 . Notice that in each case, values exactly equal to the upper bound are not counted in the lower interval, with the exception that the final interval includes values exactly equal to the upper bound. This disagrees with your existing code, which uses start <= x <= D, D+1 <= x <= D*2, D*2+1 <= x <= D*3, D*3+1 <= x <= D*4, D*4+1 < x <= D*5 -- notice the boundary cases.

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by