file 入力は、 file に maple のコマンドを入れます。maple を起動し read で読み込みます。
doc_01.cc.uec.ac.jp72% cat file <=== file を表示します。 factor(x^2-y^2); latex("); doc_01.cc.uec.ac.jp73% maple <=== maple を起動します。 |\^/| Maple V Release 3 (University of Electro-Communications) ._|\| |/|_. Copyright (c) 1981-1994 by Waterloo Maple Software and the \ MAPLE / University of Waterloo. All rights reserved. Maple and Maple V <____ ____> are registered trademarks of Waterloo Maple Software. | Type ? for help. > read file; <=== file 名 は かっこではさみません。 - (y - x) (y + x) <=== 結果 1 -\left (y-x\right )\left (y+x\right ) <=== 結果 2 >
file 出力は、writeto を使いますと、画面にでる結果が 全て file にかかれます。画面に表示されませんので、read 文のなかでもちいます。
> writeto(file); <=== 以下結果が全て file に出力されます。 > writeto(terminal); <=== これで表示を terminal に戻します。