Main Content

info

Signal mapping and plot information for UAV log signal mapping

Since R2020b

Description

signalTable = info(mapper,"Signal") generates a table of information for the Predefined Signals available and the signals mapped in the flight log signal mapping object. The table contains a list of signal names, field names, units, and whether the signal has a value function mapped to it (IsMapped column).

signalTable = info(mapper,"Signal",signalNames) generates the signal table for the specified signal names.

plotTable = info(mapper,"Plot") generates a table of information for the Predefined Plots and custom plots available in the flight log signal mapping object. The table contains plots names, required signals, missing signals, and whether the plot is ready to plot.

signalTable = info(mapper,"Plot",plotNames) generates the plot table for the specified plot names.

Input Arguments

collapse all

Flight log signal mapping object, specified as a flightLogSignalMapping object.

Signal names, specified as a string array.

Plot names, specified as a string array.

Output Arguments

collapse all

Table of available signals, returned as a table. This table includes preconfigured signals and any signals you added to the flight log signal mapping object using mapSignal. The table has these fields:

  • SignalName –– String scalar of the name of the signal.

  • IsMapped –– Logical indicating if the signal is properly mapped. To update signal mapping, see mapSignal.

  • SignalFields –– String scalar that lists the fields of the signal.

  • FieldUnits –– String scalar that lists the units of each field.

Table of available plots, returned as a table. This table includes preconfigured plots and any plots you added to the flight log signal mapping object using updatePlot. The table has these fields:

  • PlotName –– String scalar of the name of the plot.

  • ReadyToPlot –– Logical indicating if the plot is configured properly. To update the plot, see updatePlot.

  • MissingSignals –– String scalar that lists the signals that need to be mapped using mapSignal.

  • RequiredSignals –– String scalar that lists all required signals for a specific plot name.

More About

collapse all

Version History

Introduced in R2020b