|  |  7.10.6.11 ncratFromString Procedure from libraryncrat.lib(see  ncrat_lib).
 
Example:Usage:
ncrat f = ncratFromString(s);
s of type string
 
Return:
read string s into ncrat f
 |  | LIB "ncrat.lib";
ncInit(list("x", "y", "z"));
ncrat f = ncratFromString("2*x*y");
print(f);
==> 2*x*y
 | 
 
 |