This file contains hidden or 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
| # fscv_gui.py | |
| # FSCV Analysis GUI - Pinnacle FSCV 2.0.9 compatible | |
| # REBUILT v2: Robust file loading, full 2D color plot integration | |
| import sys | |
| import os | |
| import numpy as np | |
| import pandas as pd | |
| from pathlib import Path | |
| from PyQt5.QtWidgets import ( |
This file contains hidden or 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
| """FSCV Data File I/O Module | |
| Handles loading and saving of FSCV data files compatible with Pinnacle software. | |
| """ | |
| import numpy as np | |
| import pandas as pd | |
| from pathlib import Path | |
| def load_fscv_file(filename): |