String AsString(double x, int digits) { if(IsNull(x)) return Null; if(fabs(x) >= 1e15) return FormatDoubleExp(x, tabs(digits), digits < 0 ? FD_ZEROS : 0); return FormatDoubleFix(x, tabs(digits), digits < 0 ? FD_ZEROS : 0); }
void Tab6_Logarithmic::FormatX(String& s, int i, double d) { s = FormatDoubleExp(pow(10., d), 1); }
void Tab6::FormatX(String& s, int i, double d) { s = FormatDoubleExp(pow(10., d), 1); }