View deaths_gdp.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
Cumulative deaths Fall in GDP | |
0 1.73 | |
5 0.36 | |
7 -13.41 | |
9 -4.41 | |
13 -8.45 | |
14 -13.09 | |
20 -9.23 | |
28 -14.18 | |
34 -7.23 |
View Generators.txt
0 1 2 3 4 | |
0 1 5 | |
0 5 6 | |
0 6 7 | |
0 7 8 | |
0 3 9 10 | |
0 8 11 | |
0 9 11 | |
9 12 13 | |
12 13 14 15 |
View block_uniform load.py
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
Homogenization of a composite with random properties. | |
This examples runs with the developing version of SolidsPy (2.0). | |
@author: Nicolás Guarín-Zapata | |
@date: July 2020 | |
""" |
View cifrado_corrimiento.py
# -*- coding: utf-8 -*- | |
""" | |
Cifra una mensaje haciendo un corrimiento del alfabeto. | |
@author: Nicolás Guarín-Zapata | |
""" | |
ALFABETO = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', | |
'm', 'n', 'ñ', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', | |
'x', 'y', 'z'] |
View environment.yml
name: polyscope | |
channels: | |
- conda-forge | |
- default | |
dependencies: | |
- python>=3.6 | |
- numpy | |
- scipy | |
- matplotlib>=2.0 | |
- polyscope |
View cylinder.vtk
This file has been truncated, but you can view the full file.
View pendulum.py
# -*- coding: utf-8 -*- | |
""" | |
Solve a nonlinear pendulum for a trajectory on the separatrix. | |
@author: Nicolás Guarín-Zapata | |
@date: April 2020 | |
""" | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from scipy.integrate import solve_ivp |
View image_poster.py
""" | |
Posterization of an image using k-means | |
It can be used to create color palettes from pictures. | |
@author:Nicolás Guarín-Zapata | |
@date: January 2020 | |
""" | |
import numpy as np | |
from scipy import misc |
NewerOlder