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.
我使用 mathcad 程序。我想要“sys_r”图表。下面的图形形状示例
我尝试以下编程。
但是发生了编程错误。编程错误!
错误是“此数组索引对此数组无效。”
我不知道解决办法。请帮我。
请........
您的for循环中有错误。j从0到2,所以j+1可以取值3,这是矩阵的无效索引(它是 3x3 矩阵,而不是 4x4 矩阵)。因此出现“无效索引”越界访问错误。
for
j
0
2
j+1
3
for即使您解决了这个问题,您的外部循环也会导致越界访问错误,因为i从1到3。
i
1
如果您不知道,Mathcad 中的矩阵(和向量)以 开头0,就像在任何其他编程语言中一样。因此,您的矩阵的有效索引在两个维度中都是从0到包含的。2