Skip to main content

All Questions

5 votes
1 answer
433 views

Bancroft's method implementation

Background I've written an algorithm to solve the three-dimensional Time Difference of Arrival (TDoA) multi-lateration problem. That is, given the coordinates of n ...
10GeV's user avatar
  • 295
4 votes
1 answer
533 views

Drawing spirals on virtual whiteboards

I have it set up so I place my mouse in the center of where I want the spiral to be, then I press enter to start the program, then define the radius initially and how much it grows each time it goes ...
async await's user avatar
2 votes
1 answer
162 views

Calculate the sum over a list of minima of two vectors

I have the following metric: def d(x, y): """The metric.""" return 1 - sum(min(xi, yi) for xi, yi in zip(x, y)) where ...
Martin Thoma's user avatar
  • 1,235
13 votes
1 answer
1k views

Temperature Interpolation

I want to interpolate temperature in correlation with height. I have temperature data from stations with coordinates and height in this format: ...
nrasic's user avatar
  • 133