Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.3 - English

Change language to:
Français - 日本語 - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

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

fd = mopen(TMPDIR+'/text_mputl.txt','wt');
mputl('Hello World',fd);
mclose(fd);

fd = mopen(TMPDIR+'/text_mputl.txt','rt');
disp(mgetl(fd));
mclose(fd);

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 >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:09:59 CEST 2011