[Scilab-users] Displaying large amount of text outside the Scilab console

Claus Futtrup cfuttrup at gmail.com
Mon May 12 20:29:12 CEST 2014


Hi Rafael

Yes it is possible to save the string to a file, then load it into the 
Scinotes editor. I've done this for years.

fd  =  mopen(filename1,'wt')

mfprintf(fd, yourstring)

mfprintf(fd,"\n");
mclose(fd);
if  (isdef('editor')  |  (funptr('editor')<>0))  then
   editor(filename1)
end


/Claus

On 12-May-14 19:30, Rafael Guerra wrote:
> Hello,
>
> Does anyone know how to properly display a large amount of plain text stored
> in a string variable of size (N,1), i.e. with N text lines of variable
> length, outside the Scilab console window?
>
> For instance, is it possible to issue Scilab command to display the text
> variable in one of Scinotes or Scipad tabs?
>
> Thanks and regards,
> Rafael G.
>
> _______________________________________________
> users mailing list
> users at lists.scilab.org
> http://lists.scilab.org/mailman/listinfo/users
> .
>

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.scilab.org/pipermail/users/attachments/20140512/d0c7ccdb/attachment.htm>


More information about the users mailing list