1
下面的代碼工作,但是當我用ListPlot3D替換ListPointPlot3D它不起作用!ListPlot3D不起作用,但ListPointPlot3D((Mathematica)
這工作:
ListPointPlot3D[Transpose[Table[{i,j, (150*(Sin[((i - 90)*2*3.14)/180]^2)* (Sin[((j - 45)*2*3.14)/180]^2)) - 150}, {i, 0, 270, 5}, {j, 0, 270, 5}]]]
這不起作用:
ListPlot3D[Transpose[Table[{i,j, (150*(Sin[((i - 90)*2*3.14)/180]^2)* (Sin[((j - 45)*2*3.14)/180]^2)) - 150}, {i, 0, 270, 5}, {j, 0, 270, 5}]]]
任何想法,爲什麼它不工作?
我不關心倒數第二個例子中的語法。 「加入@@」會不會更加清晰? –