주요 콘텐츠

table

R2026b

Class: tireModel

Create table from tire model

Since R2023b

Description

Add-On Required: This feature requires the Extended Tire Features for Vehicle Dynamics Blockset add-on.

T = table(obj) creates a table from tire models specified by obj. Each tire model object is a column. Each property is a row.

Note

If obj contains more than one model type, the parameters that do not apply to a model are set as NaN.

example

Input Arguments

expand all

Tire models, specified as a tireModel object or an array of tireModel objects.

Output Arguments

expand all

Table, returned as a table object.

Examples

expand all

Convert an array of tire model objects to a table for side-by-side parameter comparison.

Create two built-in tire models with different tire sizes.

tm1 = tireModel.builtin("Light passenger car 205/60R15","MF62");
tm2 = tireModel.builtin("SUV 265/50R20","MF62");

Convert the array of tire models to a table. Each tire model becomes a column and each parameter becomes a row, making it easy to compare values across models.

T = table([tm1;tm2])
T =
       Property                      Model1                          Model2
    _______________    ___________________________________    ____________________
    {'Name'       }    {["Light passenger car 205/60R15"]}    {["SUV 265/50R20" ]}
    {'Description'}    {["Built-in model"               ]}    {["Built-in model"]}
    {'SourcePath' }    {["S"                            ]}    {["S"             ]}
    {'FZMIN'      }    {[                            100]}    {[             100]}
    {'FZMAX'      }    {[                          10000]}    {[           12400]}
    {'KPUMIN'     }    {[                        -1.5000]}    {[         -1.5000]}
    {'KPUMAX'     }    {[                         1.5000]}    {[          1.5000]}
    {'ALPMIN'     }    {[                        -1.5000]}    {[         -1.5000]}
    {'ALPMAX'     }    {[                         1.5000]}    {[          1.5000]}
    {'CAMMIN'     }    {[                        -0.2000]}    {[         -0.1745]}
        ...

Version History

Introduced in R2023b

See Also