Borrar filtros
Borrar filtros

How to calculate enrgy of a matrix

12 visualizaciones (últimos 30 días)
sakshi ahuja
sakshi ahuja el 29 de Mzo. de 2016
Comentada: Salma Hassan el 11 de Sept. de 2017
I am having a 2*2 matrix. say it is A=[1 2; 3 4]; how to calculate energy with this.

Respuesta aceptada

Image Analyst
Image Analyst el 29 de Mzo. de 2016
What is your definition of energy? You could say that if the array is an image, the pixel values are energy already so you can just sum the array
energy = sum(A(:));
Or you can use the energy as defined from the gray level co-occurrence matrix of the array. From the help for graycoprops():
Calculate statistical properties of the GLCM.
stats = graycoprops(glcm)
stats =
Contrast: 2.8947
Correlation: 0.0783
Energy: 0.1191
Homogeneity: 0.5658
Perhaps you have some other definition - I don't know. After you read this, please clarify your definition of energy.
  6 comentarios
Image Analyst
Image Analyst el 11 de Sept. de 2017
I don't know what your vector represents. It might represent energy. Pixels are energy - just go back to first principles to work out the units.
(A watts /square meter) * (B square meters/pixel) * (C Joules/(Watt second)) * (D seconds exposure time) = Joules that are collected in a one pixel area during the exposure time. So gray levels is proportional to Joules.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by