機能
SATELLITE の series 変数をテキスト形式のファイルに変換する.
形式
buffer2text( "filename", format, x, y, …)
パラメータ
filename : テキストファイル名 (string)
format : フォーマット文字列
x, y, … : オブジェクト (series)
解説
フォーマット文字列の書式は,整数及び実数を扱う部分のみ C 言語と同様である.
使用例
series オブジェクト x,y をテキストファイル test.txt に出力する.
% buffer2text("test.txt", "%f %e\n",x,y)