Skip to content

Instantly share code, notes, and snippets.

View FredEckert's full-sized avatar

Fred Eckert FredEckert

  • Control Micro Systems
  • Orlando, FL USA
View GitHub Profile
@komasaru
komasaru / spline_interpolation.py
Created January 10, 2018 04:40
Python script to calc 3D-Spline-Interpolation.
#! /usr/local/bin/python3.6
"""
3-D spline interpolation
(with graph drawing by matplotlib)
"""
import matplotlib.pyplot as plt
import sys
import traceback
class SplineInterpolation: