Predicting Mortality of ICU Patients: The PhysioNet/Computing in Cardiology Challenge 2012 1.0.0

File: <base>/sources/mmacas_at_seznam.cz/entry9/f_kurtosis.m (228 bytes)
function y = f_kurtosis(name,record)

%Get the value of parameter name at times time
[~,values]=getTimeSeries(name, record);
%Compute the feature value

if length(values)<=1,
    y=NaN;
else
    y=kurtosis(values);
end