Skip to content

Instantly share code, notes, and snippets.

View 3-24's full-sized avatar
🎯
Focusing

Youngseok Choi 3-24

🎯
Focusing
View GitHub Profile
@3-24
3-24 / main.py
Last active October 9, 2018 02:39
code for plotting Rogers-Ramanujan continued fraction on real plane
# Copyright (c) by Youngseok Choe in 2018.
# Fundamental Recurrence Formulas
import matplotlib.pyplot as plt
class Graph:
def __init__(self, point):
self.point = point
self.x = [point[p][0] for p in range(len(point))]
self.y = [point[p][1] for p in range(len(point))]