Home
last modified time | relevance | path

Searched refs:ExpFormat (Results 1 – 11 of 11) sorted by relevance

/dports/science/py-scipy/scipy-1.7.1/scipy/io/harwell_boeing/tests/
H A Dtest_fortran_format.py7 FortranFormatParser, IntFormat, ExpFormat, BadFortranFormat)
25 self._test_equal("(E4.3)", ExpFormat(4, 3))
28 self._test_equal("(E8.3E3)", ExpFormat(8, 3, 3))
31 self._test_equal("(2E4.3)", ExpFormat(4, 3, repeat=2))
34 self._test_equal("(2E8.3E3)", ExpFormat(8, 3, 3, repeat=2))
63 f = [ExpFormat(10, 5), ExpFormat(12, 10), ExpFormat(12, 10, min=3),
64 ExpFormat(10, 5, repeat=3)]
72 r_f = [ExpFormat(24, 16, repeat=3), ExpFormat(25, 16, repeat=3)]
74 assert_equal(ExpFormat.from_number(i).__dict__, j.__dict__)
/dports/math/kalker/kalker-1.1.0/cargo-crates/rug-1.11.0/src/complex/
H A Dtraits.rs23 float::{big::ExpFormat, Round, Special},
100 exp: ExpFormat::Point, in fmt()
110 exp: ExpFormat::Point, in fmt()
120 exp: ExpFormat::Exp, in fmt()
131 exp: ExpFormat::Exp, in fmt()
143 exp: ExpFormat::Point, in fmt()
155 exp: ExpFormat::Point, in fmt()
167 exp: ExpFormat::Point, in fmt()
180 exp: ExpFormat::Point, in fmt()
H A Dbig.rs31 self as big_float, ExpFormat, Format as FloatFormat,
687 exp: ExpFormat::Point, in to_string_radix_round()
3822 pub exp: ExpFormat,
3835 exp: ExpFormat::Point, in default()
/dports/math/kalker/kalker-1.1.0/cargo-crates/rug-1.11.0/src/float/
H A Dtraits.rs22 big::{self, ExpFormat, Format},
76 exp: ExpFormat::Point, in fmt()
86 exp: ExpFormat::Point, in fmt()
96 exp: ExpFormat::Exp, in fmt()
107 exp: ExpFormat::Exp, in fmt()
118 exp: ExpFormat::Point, in fmt()
129 exp: ExpFormat::Point, in fmt()
140 exp: ExpFormat::Point, in fmt()
152 exp: ExpFormat::Point, in fmt()
H A Dbig.rs9575 pub(crate) enum ExpFormat { enum
9586 pub exp: ExpFormat,
9597 exp: ExpFormat::Point, in default()
9704 let digits_before_point = if format.exp == ExpFormat::Exp in append_to_string()
9726 if format.exp == ExpFormat::Exp || exp != 0 { in append_to_string()
/dports/science/py-scipy/scipy-1.7.1/scipy/io/harwell_boeing/
H A D_fortran_format_parser.py95 class ExpFormat: class
300 return ExpFormat(width, significand, min, repeat)
H A Dhb.py26 FortranFormatParser, IntFormat, ExpFormat
84 values_fmt = ExpFormat.from_number(-np.max(np.abs(values)))
244 if isinstance(values_format, ExpFormat):
/dports/editors/lazarus/lazarus/components/tachart/demo/fit/
H A DMain.pas410 function MyFormatFloat(x: Double; StdFormat, ExpFormat: String): String; in MyFormatFloat()
413 Result := Format(ExpFormat, [x])
/dports/editors/lazarus-qt5/lazarus/components/tachart/demo/fit/
H A DMain.pas410 function MyFormatFloat(x: Double; StdFormat, ExpFormat: String): String; in MyFormatFloat()
413 Result := Format(ExpFormat, [x])
/dports/devel/upp/upp/uppsrc/ScatterDraw/
H A DScatterDraw.cpp436 case EXP: cbModifFormatX = cbModifFormatXGridUnits = ExpFormat; break; in Graduation_FormatX()
446 case EXP: cbModifFormatY = cbModifFormatYGridUnits = ExpFormat; break; in Graduation_FormatY()
456 case EXP: cbModifFormatY2 = cbModifFormatY2GridUnits = ExpFormat; break; in Graduation_FormatY2()
H A DScatterDraw.h1167 static void ExpFormat(String& s, int , double d) {s = FormatDoubleExp(d, 1);} in ExpFormat() function