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