主要内容

本页采用了机器翻译。点击此处可查看最新英文版本。

deallocate

删除分配

    说明

    deallocate(allocScenario,sourceElement,targetElement) 删除源元素 sourceElement 和目标元素 targetElement 之间的分配(如果存在)。

    示例

    示例

    全部折叠

    创建两个新模型,每个模型有一个组件。

    mSource = systemcomposer.createModel("Source_Model_Allocation");
    systemcomposer.openModel("Source_Model_Allocation");
    sourceComp = addComponent(get(mSource,"Architecture"),"Source_Component");
    mTarget = systemcomposer.createModel("Target_Model_Allocation");
    systemcomposer.openModel("Target_Model_Allocation");
    targetComp = addComponent(get(mTarget,"Architecture"),"Target_Component");

    创建一个名为 MyNewAllocation 的分配集。

    allocSet = systemcomposer.allocation.createAllocationSet("MyNewAllocation",...
         "Source_Model_Allocation","Target_Model_Allocation");

    获取默认分配方案。

    defaultScenario = getScenario(allocSet,"Scenario 1");

    在模型之间分配组件。

    allocation = allocate(defaultScenario,sourceComp,targetComp);

    在模型之间重新分配组件。

    deallocate(defaultScenario,sourceComp,targetComp);

    保存分配集。

    save(allocSet)

    打开分配编辑器

    systemcomposer.allocation.editor

    输入参数

    详细信息

    全部折叠

    版本历史记录

    在 R2020b 中推出