I made a simple number typer. The problem is that if I type enough digits, desmos will start displaying everything in scientific notation, making it unreadable. Anyone have a workaround?
The only solution a see is something like this:
https://www.desmos.com/calculator/p1uxegyshr
How does it work? It’s pretty cool!
It’s not that complex:
the line
(n.3,3) for n=[1…L.count]
label: L
creates a point for each value of the index n (from 1 to L.count) with coordinates (n * 0.3, 3)
and simultaneously the label runs through all the values in L.
Oh! That .3 confused me. That’s what I assumed, just didn’t see HOW it got there.
Yeah, sorry, that’s something allowed by the language … and I use it frequently:
n * 0.3 = n 0.3 = n .3 = n.3
1 Like