Main Content

systemcomposer.loadProfile

Load profile by name

    Description

    profile = systemcomposer.loadProfile(profileName) loads a profile with the specified file name.

    example

    Examples

    collapse all

    Create a model.

    model = systemcomposer.createModel("archModel");
    systemcomposer.openModel("archModel");

    Create a profile with a stereotype and properties, open the Profile Editor, then apply the profile to the model.

    profile = systemcomposer.profile.Profile.createProfile("LatencyProfile");
    latencybase = profile.addStereotype("LatencyBase");
    latencybase.addProperty("latency",Type="double");
    latencybase.addProperty("dataRate",Type="double",DefaultValue="10");
    systemcomposer.profile.editor(profile)
    model.applyProfile("LatencyProfile");

    Save the profile and load the profile. In this example, profileNew is equal to profile.

    save(profile);
    profileNew = systemcomposer.loadProfile("LatencyProfile");

    Input Arguments

    collapse all

    Name of profile, specified as a character vector or string. Profile must be available on the MATLAB® path with a .xml extension.

    Example: "LatencyProfile"

    Data Types: char | string

    Output Arguments

    collapse all

    Profile, returned as a systemcomposer.profile.Profile object.

    More About

    collapse all

    Version History

    Introduced in R2019a