Contenido principal

La traducción de esta página aún no se ha actualizado a la versión más reciente. Haga clic aquí para ver la última versión en inglés.

deleteDisplays

Delete displays from Filter Analyzer app

Desde R2024a

Descripción

deleteDisplays(fa) removes the active display from the Filter Analyzer app fa.

ejemplo

deleteDisplays(fa,DisplayNums=dispnums) removes the displays with the specified display numbers dispnums.

Ejemplos

contraer todo

Design a lowpass filter. Start the Filter Analyzer app. The default display analyzes the filter magnitude response.

d = designfilt("lowpassfir", ...
    PassbandFrequency=0.45,StopbandFrequency=0.55);
fa = filterAnalyzer(d);

Add a display to analyze group delay and remove the magnitude-response display.

dispNum = addDisplays(fa,Analysis="polezero",FilterNames="d");
deleteDisplays(fa,DisplayNums=1)

Argumentos de entrada

contraer todo

Filter Analyzer app handle, specified as a filterAnalyzer object.

Display numbers, specified as an integer or a vector of integers. If you do not specify this argument, Filter Analyzer removes the active display. Use display identification numbers to target displays when using other Filter Analyzer functions. Identification numbers appear above the plotting area of the app, on the tabs that correspond to the different displays.

Ejemplo: [1 5]

Tipos de datos: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Historial de versiones

Introducido en R2024a