aboutsummaryrefslogtreecommitdiff
path: root/recipes-demo/de10-nano-fftsw-apps/files/images/create_gnuplot_sine_256x32.gnu
blob: 59c0688b944bad2de666102f00b04f72f312c743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/gnuplot -d

set terminal pngcairo background "#FFFFFF" fontscale 1.0 size 1024, 768

set output "c16_256x32_sine.png"
set title "c16_256x32_sine"
plot for [i=1:2] "c16_256x32_sine.txt" using i with lines title columnhead

set output "c32_256x32_sine.png"
set title "c32_256x32_sine"
plot for [i=1:2] "c32_256x32_sine.txt" using i with lines title columnhead

set output "neon16_256x32_sine.png"
set title "neon16_256x32_sine"
plot for [i=1:2] "neon16_256x32_sine.txt" using i with lines title columnhead

set output "neon32_256x32_sine.png"
set title "neon32_256x32_sine"
plot for [i=1:2] "neon32_256x32_sine.txt" using i with lines title columnhead

set output "fft_256x32_sine.png"
set title "fft_256x32_sine"
plot for [i=1:2] "fft_256x32_sine.txt" using i with lines title columnhead

set output "fftdma_256x32_sine.png"
set title "fftdma_256x32_sine"
plot for [i=1:2] "fftdma_256x32_sine.txt" using i with lines title columnhead