Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要定义一个参数,它是一个由 14 个不同大小的数组组成的数组:类似这样的“N{i}=[[3,4,2],[4,3,2,2],[3,2] ,...,[13,9,4]]
因此,例如在我的模型中 N[0] 将返回 [3,4,2] 我知道如何定义对称的二维数组,但无法弄清楚如何使用各种大小来完成它。
我希望问题很清楚,如果没有,请告诉我。
谢谢
所以事实证明这是正确的方法:如果 NI 是我们的集合,这就是您定义集合的方式:
set NI[1]:=3 4 2; set NI[2]:=4 3 2 2; set NI[3]:=3 2; etc