我開始學習Mathematica 9.我需要製作一個nx4矩陣「m」,其中第一列是矩陣「A」,第二,三,第四列是矩陣「B」。而且,我需要排除第一行。有誰能夠幫助我?使用Mathematica中的數字範圍排列矩陣9
`t = 2; a = Range[0, t]; b = Range[0, t]; c = Range[0, t];
{A = MatrixForm[
1/Sqrt[Flatten[
Table[a^2 + b^2 + c^2, {a, 0, t, 1}, {b, 0, t, 1}, {c, 0, t,
1}]]]],
B = MatrixForm[Tuples[{a, b, c}]]}`
我需要的是這樣的:
List[List[0, 0, 1, 1], List[0, 0, 2, Rational[1, 4]],
List[0, 1, 0, 1], List[0, 1, 1, Rational[1, 2]],
List[0, 1, 2, Rational[1, 5]], List[0, 2, 0, Rational[1, 4]],
List[0, 2, 1, Rational[1, 5]], List[0, 2, 2, \[Placeholder]],
List[1, 0, 0, \[Placeholder]], List[1, 0, 1, \[Placeholder]],
List[1, 0, 2, \[Placeholder]], List[1, 1, 0, \[Placeholder]],
List[1, 1, 1, \[Placeholder]], List[1, 1, 2, \[Placeholder]],
List[1, 2, 0, \[Placeholder]], List[1, 2, 1, \[Placeholder]],
List[1, 2, 2, \[Placeholder]], List[2, 0, 0, \[Placeholder]],
List[2, 0, 1, \[Placeholder]], List[2, 0, 2, \[Placeholder]],
List[2, 1, 0, \[Placeholder]], List[2, 1, 1, \[Placeholder]],
List[2, 1, 2, \[Placeholder]], List[2, 2, 0, \[Placeholder]],
List[2, 2, 1, \[Placeholder]], List[2, 2, 2, \[Placeholder]]]
這就是我想在數學made in MathCad
非常感謝! – user2134418 2013-03-05 11:02:42