Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
addf
symbolic addition
Calling Sequence
addf("a","b")
Arguments
- "a","b"
character strings
Description
addf("a","b")
returns the character string "a+b"
.
Trivial simplifications such as addf("0","a")
or
addf("1","2")
are performed.
Examples
addf('0','1') addf('1','a') addf('1','2') 'a'+'b'
See Also
<< Symbolic | Symbolic | ldivf >> |