blob: 74f98a93ac2bec151863d8274a58a1dcf6c46c78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Getting started
virtualenv -p python3 env
env/bin/pip install -r requirements.txt
PYTHONPATH=. env/bin/python -m ee.tools.read_ltspice_raw demo/reverse-polarity-bak/reverse-polarity_normal.raw
# LTSpice binary format
## 'real' data
The data are a sequence of chunks, one chunk for each point. Each chunk
contain values for all variables. The first variable is a float64,
all the others are float32.
|