Scilab 5.5.1
Please note that the recommended version of Scilab is 6.1.1. This page might be outdated.
However, this page did not exist in the previous stable version.
mulf
symbolic multiplication
Calling Sequence
mulf(d, c)
Arguments
- d, c
character strings.
Description
mulf('d', 'c')
performs the symbolic multiplication and returns
the string 'c*d'
. Trivial simplifications such as '1*c' = 'c'
are performed.
Examples
mulf('1','a') mulf('0','a') 'a'*'b' //Caution...
Comments
Add a comment:
Please login to comment this page.