Skip to content

Instantly share code, notes, and snippets.

@eqs
Last active February 6, 2016 14:20
Show Gist options
  • Save eqs/cd70ca1ba5cca963be32 to your computer and use it in GitHub Desktop.
Save eqs/cd70ca1ba5cca963be32 to your computer and use it in GitHub Desktop.
vim-gistaを使ってみるテスト
# -*- coding: utf-8 -*-
"""
Created on 02/06/16 22:54:44
Test Code
@author: eqs
"""
import sys
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 1, 1000)
for k in range(1, 11):
y = 1 - np.exp(-k*x)
plt.plot(x, y)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment