我是 Mathematica 编程的新手,我需要一些帮助。我正在尝试编写一个函数来获取任意数组的元素并构建一个特别格式化的字符串以在 Math LibreOffice 中使用。
我的代码如下:
OOForm[MM_] :=
(strMM = "left ( matrix{";
For[i = 1, i < Dimensions[MM][[1]], i++] { (* not last row *)
For[j = 1, j < Dimensions[MM][[2]], j++] { (* not last element from the row *)
strMM = strMM <> ToString[MM[[i, j]], InputForm] <> "#";
}; (* last element from the row *)
strMM = strMM <> ToString[MM[[i, Dimensions[MM][[2]]]], InputForm] <> "##";
};
For[j = 1, j < Dimensions[MM][[2]], j++] { (* last row without the last element *)
strMM = strMM <> ToString[MM[[Dimensions[MM][[1]], j]], InputForm] <> "#";
}; (* last element *)
strMM = strMM <> ToString[MM[[(Dimensions[MM][[1]]), Dimensions[MM][[2]]]], InputForm] <> "} right )";
strMM;
)
输入如下:
A = {{3/2, -1, -2, -2, -2}, {0, 3, 6, 10, 14}, {-6, 3/2, 5, 5, 5}, {19/2, -7, -35/2, -24, -61/2}};
预期的输出是:
"left ( matrix{3/2#-1#-2#-2#-2##0#3#6#10#14##-6#3/2#5#5#5##19/2#-7#-35/2#-24#-61/2} right )"
但它会抛出这个输出:
"left ( matrix{-61/2#-61/2##-61/2#-61/2} right )"
这不是预期的输出,但我无法找到错误。
谢谢。