Contents Up Previous Next

Cut out

Purpose
Description
Macro Synopsis
Modules
Related Functions


Purpose

Cut out

Description

The function "Cut out" allows you to cut out a certain interval of the signal. This interval is either denoted by the first and the last x-value or by the corresponding indices.

If you call this function from the menu a dialog box will appear showing the current signal. Changing one of the parameters will result in an automatic change of the corresponding parameter after you have pressed the TAB or RETURN key. The new size and the selected interval of the signal are also displayed.
Warning: This will not happen if you forget to press TAB/RETURN/ENTER, e.g. if you choose the next input box via mouse.


Macro Synopsis

Depending on whether the signal is to be cut at specific values or at specific indices on the x-axis, the following two macro functions can be used for cutting respectively.

y = CutByIndex(x,a,b);
signal x,y;
float a,b;

or

y = CutByValue(x,a,b);
signal x,y;
float a,b;


Modules

Student, Professional

Related Functions

CutByIndex, CutByValue, Clip.