Skip to content

Instantly share code, notes, and snippets.

View comcon1's full-sized avatar

Alexey Nesterenko comcon1

View GitHub Profile
@comcon1
comcon1 / skew-removing.ipynb
Created October 27, 2022 17:33
Minimal notebook describing skew-removing transofrmations
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@comcon1
comcon1 / sympy-ODE.ipynb
Created October 21, 2022 19:37
jupyter notebook with examples of how to use SymPy to solve and analyze ODEs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@comcon1
comcon1 / camoco.yml
Created March 29, 2022 09:00
Deploy Camoco in a separate conda environment
name: camoco
channels:
- conda-forge
- defaults
dependencies:
- _libgcc_mutex=0.1=conda_forge
- _openmp_mutex=4.5=1_gnu
- bzip2=1.0.8=h7f98852_4
- ca-certificates=2021.10.8=ha878542_0
- cython=0.29.28=py38h709712a_0
@comcon1
comcon1 / readme.ipynb
Last active November 5, 2021 22:44
Plotting rotating phase portraits: centrum&focus
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@comcon1
comcon1 / draw_node.py
Last active October 23, 2021 22:52
Generating a phase portrait of a linear ODE
#!/usr/bin/env python3
from scipy.integrate import odeint
import matplotlib.pyplot as plt
import numpy as np
# Our equation system has a form:
# x' = P(x,y)
# y' = Q(x,y)
@comcon1
comcon1 / genParCloud.py
Created February 26, 2021 12:51
Generate point cloud around the specified point with log-normal distribution
#!/usr/bin/env python3
import numpy as np
import pandas as pd
import math
import sys
print("Using pandas ver "+pd.__version__)
try:
if len(sys.argv) != 3: