pdfEstimator.m
376 Bytes
%Concrete class representing an object for estimating a probability density function
%through the method ksdensity
classdef pdfEstimator
properties
end
methods
function [pdf, xbin]=evaluate_pdf(obj,samples,BinEdges)
[pdf, xbin]=ksdensity(samples, BinEdges);
end
end
end