Scilab 5.3.3
- Scilab help
- Files : Input/Output functions
- basename
- chdir
- copyfile
- createdir
- deletefile
- dir
- dirname
- dispfiles
- fileext
- fileinfo
- fileparts
- filesep
- findfiles
- fprintf
- fprintfMat
- fscanf
- fscanfMat
- fullfile
- fullpath
- get_absolute_file_path
- getdrives
- getlongpathname
- getrelativefilename
- getshortpathname
- %io
- isdir
- isfile
- listfiles
- listvarinfile
- ls
- maxfiles
- mclearerr
- mclose
- mdelete
- meof
- merror
- mfprintf
- mscanf
- mget
- mgetl
- mgetstr
- mkdir
- mopen
- movefile
- mput
- mputl
- mputstr
- mseek
- mtell
- newest
- pathconvert
- pathsep
- pwd
- removedir
- rmdir
- save_format
- scanf
- scanf_conversion
- sscanf
Scilab help >> Files : Input/Output functions > mputl
mputl
writes strings in an ascii file
Calling Sequence
r = mputl(txt ,file_desc)
Arguments
- r
returns %t or %f to check if function has correctly written on the file.
- file_desc
A character string giving the name of the file or a logical unit returned by mopen.
- txt
a vector of strings.
Description
mputl function allows to write a vector of
strings as a sequence of lines in an ascii file.
Examples
See Also
- mget — reads byte or word in a given binary format and convert to double
- mgetl — read lines from an text file
- mclose — close an opened file
- mfprintf — converts, formats, and writes data to a file
- mput — writes byte or word in a given binary format
- mputstr — write a character string in a file
- mopen — open a file
- write — write in a formatted file
Authors
S. Steer
Allan CORNET
| << mput | Files : Input/Output functions | mputstr >> |