You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Convert labfloat to string representation in LaTex format.
257
257
258
-
Precision and round_p is used to configure the display precision and round
259
-
decimal places.
258
+
The arguments precision and round_p are used to configure the display precision and round
259
+
decimal places. The precision is a float in "0.0" format.
260
260
261
261
Args:
262
-
precision (Union[Set[int], int], optional): [description]. Defaults to None.
263
-
round_p (int, optional): [description]. Defaults to 0.
262
+
precision (Union[Tuple[float], float], optional): A tuple containing the mean's and error's precision or only one string for both precisions. If no value are passed the default precision. Defaults to None.
263
+
round_p (int, optional): Number of decimals to use when rounding. Defaults to 0.
264
264
265
265
Raises:
266
-
LabFloatError: [description]
266
+
LabFloatError: Error in parsing arguments, where the number of precision tuple is greater than 2.
267
267
268
268
Returns:
269
-
str: [description]
269
+
str: labfloat's strig representation in LaTex format.
0 commit comments