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

9 lines
125 B
Mathematica
Raw Normal View History

2019-12-18 11:25:45 +00:00
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);