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

PlotData(iXData, iYData, iZData)
function h = PlotData(iXData, iYData, iZData)
% PLOTDATA creates XYZ plot data.
%
%      H = PlotData returns a structure contains plot data
%      where X1, Y1, Z1 are MLabelledData, plots one or more lines in
%      three-dimensional space through the points whose coordinates are 
%      the elements of X1, Y1, and Z1. 
%
%  See also
%       MLabelledData

     h = struct('XData', iXData,...
                'YData', iYData,...
                'ZData', iZData);
end

Contact us at files@mathworks.com