Scilab 5.5.1
Please note that the recommended version of Scilab is 6.1.0. This page might be outdated.
However, this page did not exist in the previous stable version.
addf
シンボリックな加算
呼び出し手順
c = addf(a, b)
引数
- a, b, c
文字列
説明
関数addf
は,シンボリックな加算を行います.
c = addf("a", "b")
は,文字列 c
に"a + b"
を返します.
addf("0", "a")
または addf("1", "2")
のような簡単化が行われます.
例
addf('0','1') addf('1','a') addf('1','2') addf('a','b') 'a'+'b'
Comments
Add a comment:
Please login to comment this page.