Annotation of OpenXM/src/asir-contrib/packages/doc/mt_graph/mk_graph-ja.texi, Revision 1.4
1.1 takayama 1: \input texinfo
1.4 ! ohara 2: @comment $OpenXM: OpenXM/src/asir-contrib/packages/doc/mt_graph/mk_graph-ja.texi,v 1.3 2009/02/15 09:43:47 takayama Exp $
1.1 takayama 3: @iftex
4: @catcode`@#=6
5: @def@fref#1{@xrefX[#1,,@code{#1},,,]}
6: @def@b#1{{@bf@gt #1}}
7: @catcode`@#=@other
8: @end iftex
9: @overfullrule=0pt
10: @c -*-texinfo-*-
11: @comment %**start of header
12: @comment --- おまじない終り ---
13:
14: @comment --- GNU info ファイルの名前 ---
1.2 takayama 15: @setfilename asir-contrib-mk_graph
1.1 takayama 16:
17: @comment --- タイトル ---
18: @settitle Risa/Asir mt_graph パッケージ @code{mt_graph}
19:
20: @comment %**end of header
21: @comment %@setchapternewpage odd
22:
23: @comment --- おまじない ---
24: @ifinfo
25: @macro fref{name}
26: @ref{\name\,,@code{\name\}}
27: @end macro
28: @end ifinfo
29:
30: @iftex
31: @comment @finalout
32: @end iftex
33:
34: @titlepage
35: @comment --- おまじない終り ---
36:
37: @comment --- タイトル, バージョン, 著者名, 著作権表示 ---
38: @title Risa/Asir @code{mt_graph} 説明書
39: @subtitle 利用説明書
40: @subtitle 1.0 版
41: @subtitle 2009.02.12
42:
43: @author by OpenXM.org
44: @page
45: @vskip 0pt plus 1filll
46: Copyright @copyright{} OpenXM.org
47: All rights reserved. (GFL)
48: @end titlepage
49:
50: @comment --- おまじない ---
51: @synindex vr fn
52: @comment --- おまじない終り ---
53:
54: @comment --- @node は GNU info, HTML 用 ---
55: @comment --- @node の引数は node-name, next, previous, up ---
56: @node Top,, (dir), (dir)
57:
58: @menu
59: * 関数マニュアル::
60: * Index::
61: @end menu
62:
63: @node 関数マニュアル,,, Top
64: @chapter 関数マニュアル
65:
66: @menu
67: * 概要::
68: * Notation::
69: * 主な関数::
70: @end menu
71:
72: @comment --- 書体指定について ---
73: @comment --- @code{} はタイプライタ体表示 ---
74: @comment --- @var{} は斜字体表示 ---
75: @comment --- @b{} はボールド表示 ---
76: @comment --- @samp{} はファイル名などの表示 ---
77:
78: @node 概要,,, 関数マニュアル
79: @section 概要
80:
81: @code{mt_graph.rr} に含まれる パッケージ @code{mtg}, @code{mtp} は
82: @code{oxmgraph} を利用してグラフの三次元表示をおこなう関数の集合体.
83:
84:
85:
86: @node Notation,,,関数マニュアル
87: @section Notation
88:
89: @node 主な関数,,, 関数マニュアル
90: @section 主な関数
91:
92: @menu
93: * mtg.plot3d::
94: * mtp.parametric_plot3d::
95: @end menu
96:
97: @node intersect,,, 主な関数
98:
99: @node mtg.plot3d,,, 主な関数
100: @subsection @code{mtg.plot3d}
101: @findex mtg.plot3d
102:
103: @table @t
104: @item mtg.plot3d(@var{formula})
105: :: @var{formula} のグラフを描画する.
106: @item mtg.plot3d(@var{formula} | @var{options})
1.3 takayama 107: :: @var{formula} のグラフを描画する. @var{options} で描画範囲などを指定する.
1.1 takayama 108: @end table
109:
110: @table @var
111: @item return
112: リスト
113: @item formula
114: 式 または quote 型データ. @code{x}, @code{y} の関数.
115: @item オプション
116: @table @t
117: @item domain
118: リスト. [[xmin,xmax],[ymin,ymax]]
119: @item mesh
120: 自然数. メッシュの分割数.
121: @end table
122: @end table
123:
124: @itemize @bullet
125: @item 左ボタンをおしたままドラッグすると回転できる.
126: @item グラフが表示されたら右クリックすることで表示形式を変更するためのメニューが表示される.
127: @item short cut の M が便利 (拡大).
128: @item Box に自動的にグラフを配置するので, 座標軸の原点が 0 とは限らない.
129: at マークと, dollar マークの座標は戻値の中に書かれている.
130: @item 特異点の回避は自動ではない. よって特異点を含むグラフは不正確な可能性が高い.
131: @end itemize
132:
133: @example
134: [1210] import("mt_graph.rr");
135: [1211] mtg.test2();
136: @end example
137:
138:
139: @example
140: [1210] import("mt_graph.rr");
141: [1211] mtg.plot3d(x^2-y^2);
142: @end example
143:
144: @example
145: [1210] import("mt_graph.rr");
146: [1211] mtg.plot3d(x^2-y^2 | domain=[[-1,1],[1,1]]);
147: @end example
148:
149: @example
150: [1210] import("mt_graph.rr");
1.4 ! ohara 151: [1211] def myfunc(X,Y) @{ if (X*Y < 0) return 0; else 1;@}
1.1 takayama 152: [1212] mtg.plot3d(quote(myfunc(x,y)*x*y));
153: @end example
154:
155:
156:
157:
158: @node mtp.parametric_plot3d,,, 主な関数
159: @subsection @code{mtp.parametric_plot3d}
160: @findex mtp.parametric_plot3d
161:
162: @table @t
163: @item mtp.parametric_plot3d(@var{formula})
164: :: @var{formula} のグラフを描画する.
165: @item mtp.parametric_plot3d(@var{formula} | @var{options})
166: :: @var{formula} のグラフを描画する. @var{options} で描画範囲なのを指定する.
167: @end table
168:
169: @table @var
170: @item return
171: リスト
172: @item formula
173: 式 または quote 型データのリスト. @code{s}, @code{t} の関数.
174: @item オプション
175: @table @t
176: @item domain
177: リスト. [[xmin,xmax],[ymin,ymax]]
178: @item mesh
179: 自然数. メッシュの分割数.
180: @item fitting
181: 値を 0 とすることで, z 方向の縮尺の自動調整をしない.
182: @end table
183: @end table
184:
185: @itemize @bullet
186: @item 左ボタンをおしたままドラッグすると回転できる.
187: @item グラフが表示されたら右クリックすることで表示形式を変更するためのメニューが表示される.
188: @item short cut の M が便利 (拡大).
189: @item Box に自動的にグラフを配置するので, 座標軸の原点が 0 とは限らない.
190: at マークと, dollar マークの座標は戻値の中に書かれている.
191: @item 特異点の回避は自動ではない. よって特異点を含むグラフは不正確な可能性が高い.
192: @end itemize
193:
194: @example
195: [1210] import("mt_graph.rr");
196: [1211] mtp.test5(); /* Klein bottle (8 figure) */
197: @end example
198:
199:
200: @example
201: [1210] import("mt_graph.rr");
202: [1211] mtp.parametric_plot3d([s,t,s^2-t^2]);
203: @end example
204:
205:
206: @example
207: [1210] import("mt_graph.rr");
1.4 ! ohara 208: [1211] def myfunc(X,Y) @{ if (X*Y < 0) return 0; else 1;@}
1.1 takayama 209: [1212] mtp.parametric_plot3d([s,t,quote(myfunc(s,t)*s*t) | fitting=0);
210: @end example
211:
212:
213:
214: @comment --- おまじない ---
215: @node Index,,, Top
216: @unnumbered Index
217: @printindex fn
218: @printindex cp
219: @iftex
220: @vfill @eject
221: @end iftex
222: @summarycontents
223: @contents
224: @bye
225: @comment --- おまじない終り ---
226:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>