Search Results

12
votes

What programming jobs would be best for a mathematician?

I've previously worked in industry as a (primarily scientific) programmer, and these days I'm employed as a research mathematician (math and physics undergrad, math masters and phd). Fwiw, here's …
1
vote

Why is my image rotation algorithm not working?

short answer: you're doing it wrong. This is essentially a problem in interpolation, and the way you've approached it introduces discontinuities. Fundamentally this is because rotating a l …
3
votes

How do you normalize a zero vector

It's even worse than Yuval suggests. Mathematically, given a vector x you are looking for a new vector x/||x|| where ||.|| is the norm, which you are probably thinking of as a Euc …
3
votes

Looking for an algorithm to spit out a sequence of numbers in a (pseudo) random order

Your question is a bit confusing, as it sounds like you want to get all of the original sequence back, but then you have both 4 and 8 mapping to 10, and nothing mapping to 12. If you actual …
9
votes

Math equations on the web

It turns out this is a bit of a pain. You can use MathML, but browser support is still iffy. If you are starting with latex you've got …
2
votes

Is a kd-tree suitable for 4D space-time data (x,y,z,time)?

You haven't really given enough information to answer this. But sure, in general kd-trees are perfectly suitable for 4 (or 5 or 6 or...) dimensional data --- if the spatial (or in your case …