メインコンテンツ

mbcmodel.project

Properties and methods for project objects

    Description

    Use these properties and object functions to create and examine project objects.

    Creation

    Create a mbcmodel.project object using CreateProject.

    Properties

    expand all

    Project object name, specified as a character vector.

    Data Types: char | string

    This property is read-only.

    Project file path, specified as a character vector.

    Data Types: char | string

    This property is read-only.

    Project modification status, specified as 0 (false) or 1 (true).

    Data Types: double | logical
    Complex Number Support: Yes

    This property is read-only.

    Data objects to be returned to mbcmodel.project, specified as an array.

    This property is read-only.

    Test plan objects to be returned to mbcmodel.project, specified as an array.

    Object Functions

    CopyDataCreate data object from copy of existing object
    CreateDataCreate data object in a project object
    CreateProjectCreate project object for model
    CreateTestplanCreate new test plan
    LoadLoad existing project file
    SaveSave project
    RemoveDataRemove data from project
    RemoveRemove project model
    NewCreate new project file

    Examples

    collapse all

    Create a data from an existing project object ProjObj.

    data = CreateData(P, 'D:\MBCWork\data1.xls');
    D = mbcmodel.CreateData;
    D = mbcmodel.CreateData('D:\MBCWork\data.xls');

    Version History

    Introduced before R2006a