Specify and control how Mathematica formats its output, including rich text, equations and graphics.
1
vote
2answers
195 views
I get weird <<…>> symbols in my output — what does it mean?
After I input the following:
data = Table[{3 + i + RandomReal[{-3, 7}],
i + RandomReal[{-2, 5}]}, {i, 1, 20}];
model = LinearModelFit[data, x, x]
I got ...
-3
votes
1answer
92 views
How can I solve precision problem [duplicate]
I want to set 2 decimal places, whether it's real Number or anything.for that purpose I wrote the following function.
...