Error in entropy function

I use the entropy function given belwo for my data, but Matlab gives me an error.
e=entropy(x,'shannon')
Matlab gives me this error:
Error using entropy>ParseInputs (line 58)
Too many input arguments.
Error in entropy (line 38)
I = ParseInputs(varargin{:});

回答(1 个)

Walter Roberson
Walter Roberson 2020-10-27

0 个投票

The entropy function only permits a single parameter.
You are probably thinking of the wentropy function, which does permit 'shannon' as a second parameter.

2 个评论

Thank you dear Walter Roberson for your response.
Dear Walter Roberson my code became now like this:
clear all
clc
load 2sn0_sorted;
fitness2sn0=one;
fitness2sn0=sort(fitness2sn0,'descend');
entropy1=wentropy(fitness2sn0,'shannon')
but it gives me a -ve value. Is it possible?

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 MATLAB 的更多信息

提问:

2020-10-27

评论:

2020-10-27

Community Treasure Hunt

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

Start Hunting!

Translated by