This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3.13 | |
''' | |
https://octave.sourceforge.io/octave/function/sombrero.html | |
''' | |
import warnings | |
warnings.filterwarnings("ignore") | |
from numpy import sin, sqrt, linspace,finfo, transpose | |
from re import search | |
from sys import version as python_version | |
#Workaround for matplotlib bug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MODULE=primes_cython | |
VER=13 | |
EXT=cpython-3$(VER)-$(HOSTTYPE)-gnu.so | |
SO=$(MODULE).$(EXT) | |
%: %.cpp | |
g++ -O2 -o $@ $< | |
strip $@ | |
%.$(EXT): %_setup.py %.pyx | |
python3.$(VER) $< build_ext -i | |
strip $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3.13 | |
''' | |
https://www.pythonguis.com/tutorials/qtableview-modelviews-numpy-pandas/ | |
''' | |
from sys import argv, exit | |
from rich import print as rprint | |
import warnings | |
warnings.filterwarnings("ignore",category=UserWarning) | |
from pandas import read_csv | |
from os import name as osname, popen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MODULE=disjoint_set_c | |
VER=13 | |
EXT=cpython-3$(VER)-$(HOSTTYPE)-gnu.so | |
SO=$(MODULE).$(EXT) | |
%.$(EXT): %_setup.py %.pyx | |
python3.$(VER) $< build_ext -i | |
strip $@ | |
-rm -rf build | |
all: $(SO) | |
clean: |
OlderNewer