get ring precision (number of digits) value
jakobkroeker · Sun Jul 31, 2016 2:39 pm
assuming that somewhere a ring is declared (by ot hers), lets say
is there a Singular function to get the number of digits like
?
Code:
ring R = (real,55,57),x,dp;
is there a Singular function to get the number of digits like
Code:
int R_digits ;
int R_restdigits;
R_digits = digits(R);
R_restdigits = restdigits(R);
int R_restdigits;
R_digits = digits(R);
R_restdigits = restdigits(R);
?