Rev 789 |
Details |
Compare with Previous |
Last modification |
View Log
| Rev |
Author |
Line No. |
Line |
| 789 |
kaklik |
1 |
set terminal png
|
|
|
2 |
|
|
|
3 |
set key off
|
|
|
4 |
set grid
|
|
|
5 |
set xlabel "Výkon [uW]"
|
|
|
6 |
set ylabel "Index lomu [-]"
|
|
|
7 |
|
|
|
8 |
set output "index_lomu.png"
|
|
|
9 |
|
|
|
10 |
f(x)=k*x + q
|
|
|
11 |
#g(x)=a*x + b
|
|
|
12 |
|
|
|
13 |
fit f(x) "./index_lomu.txt" using 1:2 via k,q
|
|
|
14 |
#fit [-0.9:0.9] g(x) "./zesileni_inv.txt" using 1:2 via a,b
|
|
|
15 |
|
|
|
16 |
plot "./index_lomu.txt" using 1:2 with points, f(x)
|
| 792 |
kaklik |
17 |
|
|
|
18 |
|
|
|
19 |
set key under
|
|
|
20 |
|
|
|
21 |
set output "zavity.png"
|
|
|
22 |
set xlabel "Počet závitů"
|
|
|
23 |
set ylabel "Útlum [dB]"
|
|
|
24 |
|
|
|
25 |
plot "./ohyby.txt" using 1:3 with points title "Průměr 5cm", "" using 1:5 with points title "Průměr 4cm" , "" using 1:7 with points title "Průměr 3cm"
|
|
|
26 |
|