Code covered by the BSD License  

Highlights from
Data Browser

image thumbnail
from Data Browser by Phil Larimer
A utility to browse data files that involve one or more channels of data over time.

detectPSP(inData, timePerPoint)
function events = detectPSP(inData, timePerPoint)
    if ~nargin
        events = 'PSPs';
    else
        events = [];
        if ~isappdata(0, 'pspGui');
            currentFigure = gcf;
            pspGui;
            set(0, 'currentFigure', currentFigure);
        end
    end

Contact us at files@mathworks.com