writeto
write output to a file
appendto
append output to a file
Calling Sequence
Parameters
Description
Thread Safety
Examples
writeto(fileName)
appendto(fileName)
fileName
-
name or string; name of the file to use
The writeto(fileName) function writes the output of all subsequently entered Maple commands into the file fileName.
When the command writeto(fileName) is entered, all subsequent commands have their results immediately stored in fileName. The results of these commands are not displayed on the screen. The command prompt and the input statements are also echoed into fileName (unless echoing is turned off via interface(echo=0) ).
The special command writeto(terminal) restores the standard mode of printing the results on the terminal.
If fileName already exists, the contents of the file are overwritten.
An alternative method of writing to a file is available by using the appendto(fileName) function. Rather than overwriting the contents (if any) of fileName, the new output is appended to fileName.
The writeto and appendto commands are thread safe as of Maple 15, however their effect is global, thus the most recent call will be in effect.
If you want to call writeto or appendto to capture the output from multiple threads, your code must guarantee that outputting does not begin until after the call occurs. Further you must guarantee that all outputting is complete before appendto or writeto is called a second time, otherwise some output may be written to the wrong file.
Create a new file called MapleEx.txt and copy all subsequently entered Maple commands and results into the file.
currentdir⁡:
writeto⁡MapleEx.txt
diff⁡x3−x2,x
writeto⁡terminal
The standard mode of printing the results on the terminal has been restored.
solve⁡2⁢x2+3⁢x+1,x
−12,−1
The appendto command will not overwrite the contents of MapleEx.txt.
appendto⁡MapleEx.txt
eval⁡x2−1,x=2
See Also
echo
filenames
save
Download Help Document