- 931 名前:837 mailto:sage [04/01/28 00:45]
- >>928
ガン( ゚д゚)ガレ >>929 ヘルプファイルを熟読した後、 Mapleのスレを建ててください。 もしくは数学ソフト一般(Mathematica以外?)のスレ。 >>930 (* x の 目盛りだけを指定する *) SetOptions[ListPlot, Ticks -> {{0, 0.5, 1}, Automatic}] (* ↑だと0が表示されないので、原点を少しずらす *) SetOptions[ListPlot, AxesOrigin -> {-0.0001, -0.0001}] (* またこれでもいい *) ListPlot[{{0.0, 0.0}, {0.1, 0.5}, {0.3, 0.3}, {0.5, 0.4}, {1.0, 0.6}}, PlotJoined -> True, AxesOrigin -> {-0.0001, -0.0001}, Ticks -> {{0, 0.5, 1}, Automatic}] (* こんなOptionも発見した *) tl = ListPlot[{5, 3, 4, 6}, DisplayFunction -> Identity]; Show[tl, DisplayFunction -> $DisplayFunction];
|

|