|
7.10.6.9 ncratSPrint
Procedure from library ncrat.lib (see ncrat_lib).
- Usage:
- string s = ncratSPrint(f);
f of type ncrat
- Return:
- prints f to string
Example:
| LIB "ncrat.lib";
ncInit(list("x", "y", "z"));
ncrat f = ncratFromString("2*x*y");
string s = ncratSPrint(f);
print(s);
==> 2*x*y
|
|