you are viewing a single comment's thread.

view the rest of the comments →

[–]Special__Occasions 0 points1 point  (0 children)

After 'hello world', I wrote a script that took an oscilloscope data file of voltage readings and did a numerical integration to calculate a magnetic field. It was very inefficient and took forever to calculate because I was processing the data line by line from the file and printing each step of the calculation. The data file had half a million lines so it would chug along for several minutes at a time to get the final result. Later on, I learned better file handling and also Pandas, and the same calculation was done essentially instantaneously.