Borrar filtros
Borrar filtros

How to multiply every pixels?

2 visualizaciones (últimos 30 días)
Sneha P S
Sneha P S el 11 de Abr. de 2018
Comentada: Matt J el 12 de Abr. de 2018
I need to find the product of every all the pixel values in a matrix. That is, if an image of size 256×256×3 is taken... i need to find the entire product of 65536 values
  4 comentarios
Sneha P S
Sneha P S el 11 de Abr. de 2018
Ok
Sneha P S
Sneha P S el 11 de Abr. de 2018
Sorry i just meant to mention the matrix of size 256×256. Will anyone help me to do the same

Iniciar sesión para comentar.

Respuesta aceptada

Rik
Rik el 11 de Abr. de 2018
You can use prod.
A=rand(256,256);
total_product=prod(A(:));
But it is very likely that the product will be either 0, inf or -inf, because of the large number of elements.
  1 comentario
Matt J
Matt J el 12 de Abr. de 2018
But it is very likely that the product will be either 0, inf or -inf, because of the large number of elements.
@Sneha, Is the ulterior motive to compute the log-product? If so, better to do this by summation.
logproduct=sum(log(A(:)));

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Frequency Transformations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by