code for summation(i= 1 to m) sum(j=1 to n) R(i,j).
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
priyanka
el 30 de Mzo. de 2014
Editada: Azzi Abdelmalek
el 30 de Mzo. de 2014
for loop(i=1 to m) for loop (j=1 to n) initially v1 is zero R(i,j) (representing first pixel value of R component of RGB color image) (How to perform, sum of all values from R(1,1)+ R(1,2)+R(1,3)..... to R(m,n)) (take result value (summation) in v1).
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 30 de Mzo. de 2014
Editada: Azzi Abdelmalek
el 30 de Mzo. de 2014
v1=sum(R(:))
0 comentarios
Más respuestas (0)
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!