主要内容

mldatxfile

Get mldatx.io.File representation of signal data saved in MLDATX file

Since R2026a

    Description

    fileObj = mldatxfile(fileName) returns a mldatx.io.File representation of signal data saved in an MLDATX file. Creating this representation is the first step in loading data from the MLDATX file.

    Once you create an mldatx.io.File object, use listRuns or listSignals to examine the runs or signals contained in the MLDATX file. Then, use load to selectively import data to the workspace.

    To save data in an MLDATX file:

    example

    Examples

    collapse all

    Create an mldatx.io.File object that references data stored in the MLDATX file named MyFile.

    myFileObj = mldatxfile("MyFile.mldatx");

    To selectively import data from the MLDATX file to the workspace, use load to filter and import signals referenced by the mldatx.io.File object to the workspace.

    Input Arguments

    collapse all

    Name of or path to the MLDATX file to reference, specified as a string or character vector

    Example: "myFile.mldatx"

    Output Arguments

    collapse all

    Reference to data stored in MLDATX file, returned as an mldatx.io.File object.

    Version History

    Introduced in R2026a