aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plot.sh
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-11-29 10:07:28 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-11-29 10:07:28 +0100
commit06773878629f7436ff1d755f3532a7cfa8afe506 (patch)
tree960222655b7f106963ce432b35a9058e6f123f12 /plot.sh
parentREADME: update (diff)
downloadsorting-algorithms-06773878629f7436ff1d755f3532a7cfa8afe506.tar.gz
sorting-algorithms-06773878629f7436ff1d755f3532a7cfa8afe506.zip
put plots in img/
Diffstat (limited to 'plot.sh')
-rwxr-xr-xplot.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/plot.sh b/plot.sh
index 884661c..60bad3a 100755
--- a/plot.sh
+++ b/plot.sh
@@ -32,15 +32,17 @@ main() {
local max="$default_max"
[ "$#" -ge 4 ] && max="$4"
+ mkdir -p -- "$script_dir/img"
+
local input_kind
for input_kind in best average worst; do
- local output_path="$script_dir/${algorithm}_${iterations}_${input_kind}_${min}_${max}.png"
+ local output_name="${algorithm}_${iterations}_${input_kind}_${min}_${max}.png"
python "$script_dir/plot.py" \
"$algorithm" \
--input "$input_kind" \
--min "$min" --max "$max" \
--iterations "$iterations" \
- --output "$output_path"
+ --output "$script_dir/img/$output_name"
done
}