-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sig_float: Overline significant digit #27
Comments
As cisco how this should work num1 = sig_float("55")
num2 = sig_float("55")
num3 = sig_float("1.0")
num4 = sig_float("1.0")
print(RED + f"3) {num1} * {num2} * {num3} + {num4} = {num1 * num2 * num3 + num4}" + GREEN) # Should be overlined
|
Overlining causing issues, reassess functionality |
May want to implicate this in a latex format rather than ascii?? |
Yes, probably best to format it in Latex. Unicode can get spicy. |
At the moment I have it working both ways, in which internally its store as an overlined zero in unicode but in the latex() function it is replaced with the latex equivalent. Seems to be working well. Only issue is I am still having trouble implicating it for addition and subtraction |
Reassigning the internal string with the number that has the overlined zero, unsure if this is gonna contribute to problems
The text was updated successfully, but these errors were encountered: