Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How Create elseif as required inside a loop?

1 visualización (últimos 30 días)
JIkrul Sayeed
JIkrul Sayeed el 29 de Mzo. de 2018
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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 comentario
Stephen23
Stephen23 el 29 de Mzo. de 2018
Editada: Stephen23 el 29 de Mzo. de 2018
"...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.

Respuestas (1)

Walter Roberson
Walter Roberson el 29 de Mzo. de 2018
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.

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by