PDA

查看完整版本 : 菜鸟问题,用mathematica画个点


中国小狼
2009-11-05, 14:58
本人刚学mathematica想画个点。为什么没有显示。下面是我的程序,谢谢指导


Point2D[x_] := (g = Map[Point, x];
Graphics[g]);
g1 = Point2D[{0, 0}];

Show[g1];

yangtian
2009-11-09, 00:03
你把matlab与mathematica语句的特点混淆了,呵呵.

Show[Graphics[Point[{1, 1}]]]
就可以画个点