We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b165458 commit 6dd31cdCopy full SHA for 6dd31cd
.gitignore
@@ -1,3 +1,6 @@
1
*.user
2
+*.csv
3
+/src/images
4
/src/x64
5
/src/.vs
6
+/Kst2
src/mkplots.ps1
@@ -1,6 +1,8 @@
$kst = "..\Kst2\bin\kst2.exe"
+$imgs = "images\"
+New-Item -Path $imgs -Type Directory -Force
$csvfiles = Get-ChildItem "." -Filter *.csv
foreach ($f in $csvfiles) {
- $png = "images\" + $f.Basename + ".png"
+ $png = $imgs + $f.Basename + ".png"
7
&$kst sim_fast_sample.kst -F $f --pngHeight 1500 --pngWidth 1500 --png $png
8
}
0 commit comments