Mathematica是用大括号{}来包住list或array,能不能改成用方括号[] 呢?
我知道大多文字编缉都有"Replace All"的功能,
但想知道能不能直接用Mathematica处理。谢谢!
范例:
有一个array想要输出成.txt档, 指令如下:
myTable = Table[{i, i^2}, {i, 1, 3}];
Export["test.txt", myTable]
输出的档案会是如下:
{1, 1}
{2, 4}
{3, 9}
希望是:
[1, 1],
[2, 4],
[3, 9]