Skip to content

Instantly share code, notes, and snippets.

View wcochran's full-sized avatar

Wayne O. Cochran wcochran

  • Intel
  • Vancouver, WA
View GitHub Profile
@wcochran
wcochran / sphere_intersection.cpp
Created July 22, 2019 03:39
Find center of N concentric spheres given N radii and N points on respective spheres
//
// Solution to
// http://bit.ly/2JTGuSX
//
#include "Eigen/Dense"
...
Eigen::Matrix<double, 3, 3> ATA;