This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| int | slog (double val) |
| int | carefulSlog (double val) |
| double | invSlog (int scaledLog) |
Variables | |
| double | fSlogScale |
| double | invSlogScale |
| int carefulSlog | ( | double | val | ) |
| double invSlog | ( | int | scaledLog | ) |
Definition at line 28 of file slog.c.
References invSlogScale.
00030 { 00031 return exp(scaledLog*invSlogScale); 00032 }
| int slog | ( | double | val | ) |
Definition at line 14 of file slog.c.
References fSlogScale, and round.
Referenced by carefulSlog(), dnaMark0(), dnaMark1(), and dnaMarkTriple().
00016 { 00017 return (round(fSlogScale*log(val))); 00018 }
Here is the caller graph for this function:

| double fSlogScale |
| double invSlogScale |
1.5.2