Better makefile, plotting, saving the data, and cleanup

This commit is contained in:
2025-12-20 20:39:35 +01:00
parent 0efab1c8b3
commit ce9b819b18
7 changed files with 103 additions and 77 deletions

10
shell.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
(pkgs.python313.withPackages (p: with p; [
matplotlib
numpy
]))
];
}