本文介绍了使用MATLAB计算能量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

能量,如下:

可以基于文档使用:

stats = graycoprops(glcm, properties)

例如,我输入了这个:

>> a = [1 2; 3 4]

a =

     1     2
     3     4

>> stats = graycoprops(a, {'energy'})

stats =

    Energy: 0.3000

如果我们想手动手动,我们如何获得上面显示的能源值?

If we want to do this manually, how did we get the energy value shown above?

这是我没有清楚的部分。

This is the part I didn't get clearly.

推荐答案

如果我不是错误:

ans=sum(a(:).^2)/sum(a(:)).^2

这篇关于使用MATLAB计算能量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 04:28