主要内容

adeGetSignalList

Get list of signal names from Cadence

Since R2026a

Description

signalName = adeGetSignalList returns a list of signal names from a Cadence® ADE Maestro view for the specific test pointed by adeInfo object present in the MATLAB® base workspace.

Note

This function only works when you launch MATLAB is from Cadence.

Examples

collapse all

Consider a Cadence Virtuoso setup with five simulated signals.

Cadence Virtuoso setup with five simulated signals.

Launch MATLAB from Cadence by clicking the M button from the toolbar. To export the list of signals to base workspace, in the command window, type:

net=adeGetSignalList

List of signal names returned to MATLAB

This returns the list of signal names as a cell array of strings.

To extract the waveform data for '/ldo_out' and 'iload' signals to the Mixed-Signal Analyzer, in the command window, type:

adeinfo2msa(metricsOnly=false,signalList=net(1:2))

Exracting simulation data for '/ldo_out' and 'iload' signals.

You can then visualize the waveform data for the '/ldo_out' and 'iload' signals and perform further analysis.

Waveform data for '/ldo_out' 'iload' signals in the Mixed-Signal Analyzer app.

Output Arguments

collapse all

List of signal names returned to MATLAB base workspace, specified as a cell array of strings.

Version History

Introduced in R2026a

See Also