Commit 6b73a63e by Chiara Antonini

Upload new file

1 parent be35d1e2
%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
\ No newline at end of file \ No newline at end of file
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!