![LeCroy WaveRunner 104MXI Скачать руководство пользователя страница 215](http://html1.mh-extra.com/html/lecroy/waverunner-104mxi/waverunner-104mxi_operators-manual_1866369215.webp)
O
PERATOR
’
S
M
ANUAL
WRXi-OM-E Rev B
215
Create pulses at the zero crossings of the signal.
Convolve two signals.
Creating Your Own MATLAB Function
The procedure is simple. Create a MATLAB function using any text editor, and save it as a MATLAB m-file by
giving it a name of the form Filename.m. Call the function using the MATLAB math editor or the MATLAB
parameter editor as appropriate. A simple example is shown below.
function out = negatewf(wf1)
% NEGATEWF changes the sign of all the data.
out = -wf1;