Add mathjax for dgeqrf
[maxima.git] / doc / info / ja / implicit_plot.texi
blob7caee5b3c8d25ceb690adbea98c8414dfa4bf78f
1 @menu
2 * Functions and Variables for implicit_plot::
3 @end menu
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つ以上の式のプロットを陰形式で表示します。
12 @var{expr}はプロットされる式で、
13 @var{x_range}は水平軸の範囲、
14 @var{y_range}は垂直軸の範囲です。
15 @code{implicit_plot}は
16 @var{set_plot_option}関数が設定するgnuplotドライバのグローバル設定を考慮します。
17 オプションはオプション引数として@code{implicit_plot}関数にも渡されることができます。
19 @code{implicit_plot}は
20 @var{x_range}と@var{y_range}で与えられる領域上で符号の変化を辿ることで機能し、
21 複雑な式では失敗する可能性があります。
23 @code{load("implicit_plot")}はこの関数をロードします。
25 例:
26 @example
27 (%i1) implicit_plot (x^2 = y^3 - 3*y + 1, [x, -4, 4], [y, -4, 4],
28  [gnuplot_preamble, "set zeroaxis"]);
29 @end example
31 @c IMPLICIT_PLOT IS SUPERSEDED BY PLOT2D([IMPLICIT, ...])
32 @c AND FIGURES/IMPLICIT_PLOT NO LONGER EXISTS
33 @c @ifnotinfo
34 @c @image{@value{figuresfolder}/implicit_plot,8cm}
35 @c @end ifnotinfo
37 @opencatbox
38 @category{Plotting}
39 @category{Share packages}
40 @category{Package implicit_plot}
41 @closecatbox
43 @end deffn