Code covered by the BSD License  

Highlights from
Agilent Infiniium and InfiniiVision Oscilloscopes – MATLAB Example

image thumbnail
from Agilent Infiniium and InfiniiVision Oscilloscopes – MATLAB Example by Vinod Cherian
MATLAB application example for Agilent Infiniium and InfiniiVision oscilloscopes

h=MDataCursorIcon(parent)
function h=MDataCursorIcon(parent)
%MDATACURSORICON is a Data cursor icon 
%
% Usage:
%       h=MDataCursorIcon(parent)
%
%       parent is the toolbar you wish to put the icon
%
%       h is a structure that's fields act like methods on an object.
%

% Create the UIPANEL

    if isstruct(parent)
        parentHandle = parent.handle;
    else
        parentHandle = parent; 
    end;

    h = MToolBarItem(parentHandle, 'Exploration.DataCursor');

end

Contact us at files@mathworks.com