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.
我有一个特定的参数说'X(m)',它是在集合'M'上定义的,例如'M ./.M1*M10/'我怎样才能为该参数'X0'分配一个初始值而不与它冲突在从'1-10'开始的集合'M'上定义,任何建议都会非常有价值?谢谢,
如果您尝试分配给 X(M0),那么您就不走运了,因为 M0 不是一个元素。
您可能希望通过将 X 声明为 X(*) 并引用 X(m) 和 X("0") 来禁用对 X 的域检查。