Mathematica 如何把最里面的子表连成一个数?如何把最里面的子表连成一个数?例如下面把2个元素的每个子表连成一个数,并删除该层的大括号:输入:s1={{{3,25},{1,4},{1,5}},{{1,2},{2,3}},{{2,3},{3,4},{3,5}}}
来源:学生作业帮助网 编辑:六六作业网 时间:2025/01/01 07:02:44
Mathematica 如何把最里面的子表连成一个数?如何把最里面的子表连成一个数?例如下面把2个元素的每个子表连成一个数,并删除该层的大括号:输入:s1={{{3,25},{1,4},{1,5}},{{1,2},{2,3}},{{2,3},{3,4},{3,5}}}
Mathematica 如何把最里面的子表连成一个数?
如何把最里面的子表连成一个数?
例如下面把2个元素的每个子表连成一个数,并删除该层的大括号:
输入:s1={{{3,25},{1,4},{1,5}},{{1,2},{2,3}},{{2,3},{3,4},{3,5}}};
输出:s2={{325,14,15}},{12,23},{23,34,35}}
输入:s1={{{3,25},{1,4},{1,5}},{{1,2},{2,3}},{{2,3},{3,4},{3,5}}};
输出:s2={{325,14,15},{12,23},{23,34,35}}
Mathematica 如何把最里面的子表连成一个数?如何把最里面的子表连成一个数?例如下面把2个元素的每个子表连成一个数,并删除该层的大括号:输入:s1={{{3,25},{1,4},{1,5}},{{1,2},{2,3}},{{2,3},{3,4},{3,5}}}
s1 = {{{3, 25}, {1, 4}, {1, 5}}, {{1, 2}, {2, 3}}, {{2, 3}, {3,
4}, {3, 5}}}
Table[Table[FromDigits[Flatten@IntegerDigits@s3], {s3, s2}], {s2, s1}]
{{325, 14, 15}, {12, 23}, {23, 34, 35}}