Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
Hello, Everyone.
The question : What does the " float ---> -1.0097419586828951109e-28 " mean ?
and What does the " float ---> - 5.0487097934144755546e-29 " mean ?
Need help with brief explanation.
Thanks in advance for the time and help.
Best Regards.
Solved! Go to Solution.
The float keyword does not just affect the precision of the displayed values, it also affects the precision used in the calculations. So when you use the float keyword the symbolic processor is also subject to the effects of numerical roundoff. Try "float,250" to increase the precision from the default of 20.
2e-29 is equal 2*10^-29
Many thanks to your response, Valery. I got it.
Hello, Everyone again.
The question : It seems the sequence in vector "delta" should be decrease of values or equal of values ? ( but it isn't)
Thanks in advance for the time and help.
Best Regards.
The float keyword does not just affect the precision of the displayed values, it also affects the precision used in the calculations. So when you use the float keyword the symbolic processor is also subject to the effects of numerical roundoff. Try "float,250" to increase the precision from the default of 20.
Many, many thanks, Richard.