Maplets[Examples][GetEquation] - 方程式の入力を求める maplet の表示
使い方
GetEquation(opts)
パラメータ
opts - option=value の形の等式; ここで option は caption, title または width のいずれか; maplet のためのオプション指定
|
説明
|
|
•
|
GetEquation() コマンドは、ユーザに方程式の入力を促す maplet を表示します。方程式が Maple のセッションへ返されます。ユーザが代数式を入力すると、返される前にその式はゼロに等しいものとみなされます。ユーザが方程式を入力しないと、 プログラムは異議を唱えます。
|
•
|
opts 引数は、maplet のオプションを設定する、1つまたは複数の以下の等式を含みます。
|
|
ユーザに方程式の入力を促すテキストの指定。デフォルトの見出しは、Enter an equation: です。
|
|
maplet のタイトルの指定。デフォルトのタイトルは、Get Equation です。
|
|
入力フィールドの幅の指定。デフォルトの幅は、30 文字です。
|
|
|
例
|
|
>
|
with(Maplets[Examples]):
f := GetEquation(); # User enters x = y^2
|
>
|
g := GetEquation(); # User enters diff( y(x), x ) - y(x)^2
|
/d \ 2
g := |-- y(x)| - y(x) = 0
\dx /
| |
|
|
Download Help Document
Was this information helpful?