Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.1 - Français

Change language to:
English - 日本語 - 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

Aide Scilab >> Chaînes de caractères > sci2exp

sci2exp

converts an expression to a string

Calling Sequence

t = sci2exp(a [,nam] [,lmax])

Arguments

a

a scilab expression, may be:

-

a constant;

-

a polynomial;

-

a string matrix;

-

a list;

-

a boolean matrix;

-

a handle (only figure and uicontrol).

nam

a character string.

t

a vector of strings, contains the expression or the affectation instruction.

lmax

an integer, contains the maximum line length. Default value is 0, which indicates no line length control; a single string is returned.

Description

sci2exp converts expression to an instruction string if nam is given or to an expression string.

Remarks

If a is a handle, sci2exp gives a result which has no hierarchical links, that is, with empty fields for parent and children.

Examples

a=[1 2;3 4]
sci2exp(a,'aa')
sci2exp(a,'aa',10)
sci2exp(ssrand(2,2,2))
sci2exp(poly([1 0 3 4],'s'),'fi')
sci2exp(figure("figure_name","figure1"))

See Also

  • prettyprint — From any Scilab datatype and provide a representation to the TeX, LaTeX or MathML formats
Report an issue
<< regexp Chaînes de caractères strcat >>

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:
Tue Apr 02 17:36:47 CEST 2013