2 * Functions and Variables for implicit_plot::
5 @node Functions and Variables for implicit_plot, , implicit_plot, implicit_plot
6 @section Functions and Variables for implicit_plot
8 @deffn {関数} implicit_plot (@var{expr}, @var{x_range}, @var{y_range})
9 @deffnx {関数} implicit_plot ([@var{expr_1}, ..., @var{expr_n}], @var{x_range}, @var{y_range})
11 1つ以上の式のプロットを陰形式で表示します。
14 @var{y_range}は垂直軸の範囲です。
16 @var{set_plot_option}関数が設定するgnuplotドライバのグローバル設定を考慮します。
17 オプションはオプション引数として@code{implicit_plot}関数にも渡されることができます。
20 @var{x_range}と@var{y_range}で与えられる領域上で符号の変化を辿ることで機能し、
23 @code{load("implicit_plot")}はこの関数をロードします。
27 (%i1) implicit_plot (x^2 = y^3 - 3*y + 1, [x, -4, 4], [y, -4, 4],
28 [gnuplot_preamble, "set zeroaxis"]);
31 @c IMPLICIT_PLOT IS SUPERSEDED BY PLOT2D([IMPLICIT, ...])
32 @c AND FIGURES/IMPLICIT_PLOT NO LONGER EXISTS
34 @c @image{@value{figuresfolder}/implicit_plot,8cm}
39 @category{Share packages}
40 @category{Package implicit_plot}