sum of an array and checking condition
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
joy
el 3 de Ag. de 2014
Respondida: Azzi Abdelmalek
el 3 de Ag. de 2014
Hi,
I have an array (1,10) which contains 10 values..now I have to sum the values of those array element and shall check whether the sum cross the limits or not. if it cross the limits then I need to know at which elements the conditions fails..
so if my array contains 2 2 2 1 2 2 1 2 2 2 then starting from my first elements of array, i shall sum up and shall check whether sum cross 6 or not..here at 4th element sum exceeds I need those index 4.
I tried but my logic jumbled up..
0 comentarios
Respuesta aceptada
RS
el 3 de Ag. de 2014
if v be your array having your values then
for i=1:10
if (sum(v(1:i))>6)
i
break
end
end
it would show your desired value 4
thanks
0 comentarios
Más respuestas (2)
Ahmet Cecen
el 3 de Ag. de 2014
checksum = 0;
I=0;
while checksum<=limit
I=I+1;
checksum=checksum+yourarray(I);
end
0 comentarios
Azzi Abdelmalek
el 3 de Ag. de 2014
You can use cumsum function
v=[2 2 2 1 2 2 1 2 2 2];
idx=find(cumsum(v)>6,1)
0 comentarios
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!