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