Main Content

dsp_links

(To be removed) Identify whether blocks in model are current, deprecated, or obsolete

The dsp_links function will be removed in a future release. There is no replacement.

Syntax

dsp_links
dsp_links('modelname')

Description

dsp_links returns a structure with three elements that identify whether the DSP System Toolbox™ blocks in the current model are current, deprecated, or obsolete. Each element is one of the three block categories and contains a cell array of character vectors. Each character vector is the name of a library block in the current model.

dsp_links('modelname') returns the three-element structure for the specified model.

Examples

collapse all

Display block support information for the specified model, and then find the name of the first current block.

Load the model.

load_system(sys)

Run dsp_links on the model.

links = dsp_links(sys)

Find the name of the first current block.

links.current{1}

More About

collapse all

Version History

Introduced before R2006a

expand all

See Also