TailMethod.m 283 Bytes
%Abstract class for defining a method to compute the upper and lower tails of the conditional
%pdfs of parameters

classdef (Abstract) TailMethod
   
     methods (Abstract)
        [XiMax,XiMin]=compute_tailspdf(obj,obj_TimeBehavior,perturbation,tail_size);        
    end
    
end