LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
trace_pmf.m
1function [pmf,px] = trace_pmf(X)
2[pmf] = hist(X, max(X))' ./ numel(X);
3px = unique(X);
4end