当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Matlab AMPL AMPL.expand用法及代码示例


classmethod AMPL.expand(expandExpressions)

用法

expand(entity)

expand(entities)

说明

AMPL expand 命令扩展实体,可视化其所有实例。它可以用于单个实体或实体列表

expand(entity) 在屏幕上打印对指定实体调用 AMPL expand 命令的结果。

expand(entities) 在屏幕上打印对所有实体调用 AMPL expand 命令的结果。

输入参数

entity AMPL 实体

entities AMPL 实体列表

示例 1

扩展此模型中的实体:

ampl.eval('var x{i in 1..3}; maximize z: sum{i in 1..3} x[i];');
x = ampl.getVariable('x');
z = ampl.getObjective('z');
ampl.expand(x, z);

给出:

Coefficients of x[1]:
   z  1
Coefficients of x[2]:
   z  1
Coefficients of x[3]:
   z  1
maximize z:
   x[1] + x[2] + x[3];

相关用法


注:本文由纯净天空筛选整理自ampl.com大神的英文原创作品 expand。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。