Main Content

summaryTable

Applies statistical measure to each data channel in tire data

Since R2023b

    Description

    T = summaryTable(obj) applies a statistical measure to each data channel in the tireData object specified by obj and returns a table containing a row for each object in the tireData input array.

    T = summaryTable(obj, Name=Value) specifies additional options using one or more name-value arguments.

    Input Arguments

    collapse all

    Tire data, specified as a tireData object or an array of tireData objects.

    Name-Value Arguments

    Specify optional pairs of arguments as Name1=Value1,...,NameN=ValueN, where Name is the argument name and Value is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.

    Example: summaryTable(tData, VariableNames=["Fx", "Fy"], DataStat="range")

    Variable names, specified as a string array. This argument limits the summary table variables to those listed in the VariableNames string array.

    Example: VariableNames=["Fx", "Fy"]

    Data Types: string

    Statistical function used to summarize the data channels, specified as one of these values:

    • mean

    • max

    • median

    • min

    • mode

    • std

    • var

    • range

    Example: DataStat="range"

    Data Types: string

    Output Arguments

    collapse all

    Summary table, returned as a table object.

    Version History

    Introduced in R2023b