Dynamic-Calibration/utils/YALMIP-master/extras/ventropy.m

9 lines
125 B
Mathematica
Executable File

function f = ventropy(x)
f = [];
d = size(x);
x = x(:);
for i = 1:length(x)
f = [f;entropy(x(i))];
end
f = reshape(f,d);