entropy contains only single value. In matlab central code of renyi entrpy, it comes out in a vector form Is it right??

1 view (last 30 days)
function y=renyi_entro(DATA,q) [M,N]=size(DATA); y=zeros(1,N); for n=1:N y(1,n)=log(sum(DATA(:,n).^q))/(1-q); end end

Answers (0)

Community Treasure Hunt

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

Start Hunting!