ImportData - display an interactive interface to import external data into Maple
Calling Sequence
ImportData(filename)
Parameters
filename
-
(optional) string; name of the data file to import
Description
The ImportData command launches a dialog for reading data from an external file into Maple.
You can also launch the dialog from the menu bar. On the Tools tab, click Import Data ( ).
If you do not specify the filename, a file dialog opens. Select the file to import and the file format. File formats include files of type Excel, MATLAB, Image, Audio, Matrix Market, Comma Separated Values, and Delimited.
After you specify a file, you can preview it and set import options in the Data Import Assistant dialog.
The application imports the file as an rtable.
Examples
ImportData
In the next example, we assign the data to a name.
csvFile≔FileTools:-JoinPathexample/timedata.csv,base=datadir:
myData≔ImportDatacsvFile
See Also
Import, ImportMatrix, Matrix, rtable, scanf
Download Help Document