7 lines
253 B
Bash
Executable File
7 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
# Get infocalc.py from https://gitea.cs.ru.is/AxiomaticDesign/adcalc
|
|
echo "Loading data from file"
|
|
./infocalc.py DATA testdata.csv data1 0.9 1.1 --graphinfo
|
|
echo "Creating simulated curve from parameters"
|
|
./infocalc.py SIM 8 1.0 0.5 0.9 1.1
|