Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Plot[1000 x,{x,0,1}] を実行するとします。結果のグラフィック イメージを y 方向に 10,000 ピクセル、x 方向に 10 ピクセルにするために使用するオプションは何ですか。
1000x の例では、傾斜がほぼ垂直であるため、少しわかりにくいです。それでは、表示を簡単にするために、より緩やかな勾配を使用しましょう --- おそらく 10 の勾配です。次に、次のようにします。
Plot[10 x, {x, 0, 10}, AspectRatio -> Automatic]