samrate1.dat 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112
  1. # index : 0
  2. # trace : 0
  3. # waveform : Sine-Wave
  4. # true deltaf : -499.9Hz
  5. # true contrast : 10.3%
  6. # EOD rate : 649.6Hz
  7. # trans. amplitude: 1.05mV
  8. # session time : "0h02min16sec"
  9. # Settings:
  10. # Stimulus:
  11. # duration : 1000ms
  12. # pause : 100ms
  13. # freqsel : relative to EOD
  14. # deltaf : -500Hz
  15. # contrast : 10%
  16. # repeats : 10
  17. # am : false
  18. # sinewave : true
  19. # ampl : "0.0"
  20. # phase : "0.0"
  21. # contrastsel: fundamental
  22. # Analysis:
  23. # skip : 0.5Periods
  24. # ratebins: 10
  25. # before : 0ms
  26. # after : 0ms
  27. # adjust : false
  28. #Key
  29. # time rate frequency
  30. # ms Hz Hz
  31. -1.00 21.3 54.9
  32. -0.80 31.9 54.7
  33. -0.60 31.9 55.3
  34. -0.40 0.0 55.5
  35. -0.20 42.6 55.5
  36. 0.00 85.1 55.4
  37. 0.20 85.1 54.6
  38. 0.40 53.2 54.0
  39. 0.60 21.3 54.0
  40. 0.80 85.1 53.7
  41. 1.00 42.6 53.9
  42. # index : 1
  43. # trace : 0
  44. # waveform : Sine-Wave
  45. # true deltaf : -500.3Hz
  46. # true contrast : 20.9%
  47. # EOD rate : 649.3Hz
  48. # trans. amplitude: 1.05mV
  49. # session time : "0h02min27sec"
  50. # Settings:
  51. # Stimulus:
  52. # duration : 1000ms
  53. # pause : 100ms
  54. # freqsel : relative to EOD
  55. # deltaf : -500Hz
  56. # contrast : 20%
  57. # repeats : 10
  58. # am : false
  59. # sinewave : true
  60. # ampl : "0.0"
  61. # phase : "0.0"
  62. # contrastsel: fundamental
  63. # Analysis:
  64. # skip : 0.5Periods
  65. # ratebins: 10
  66. # before : 0ms
  67. # after : 0ms
  68. # adjust : false
  69. #Key
  70. # time rate frequency
  71. # ms Hz Hz
  72. -1.00 38.9 53.3
  73. -0.80 0.0 53.4
  74. -0.60 38.9 53.4
  75. -0.40 87.5 53.4
  76. -0.20 19.5 54.0
  77. 0.00 48.6 53.8
  78. 0.20 77.8 54.0
  79. 0.40 38.9 54.2
  80. 0.60 38.9 54.3
  81. 0.80 87.5 54.2
  82. 1.00 19.5 53.9
  83. # index : 2
  84. # trace : 0
  85. # waveform : Sine-Wave
  86. # true deltaf : -400.3Hz
  87. # true contrast : 10.6%
  88. # EOD rate : 649.0Hz
  89. # trans. amplitude: 1.05mV
  90. # session time : "0h02min39sec"
  91. # Settings:
  92. # Stimulus:
  93. # duration : 1000ms
  94. # pause : 100ms
  95. # freqsel : relative to EOD
  96. # deltaf : -400Hz
  97. # contrast : 10%
  98. # repeats : 10
  99. # am : false
  100. # sinewave : true
  101. # ampl : "0.0"
  102. # phase : "0.0"
  103. # contrastsel: fundamental
  104. # Analysis:
  105. # skip : 0.5Periods
  106. # ratebins: 10
  107. # before : 0ms
  108. # after : 0ms
  109. # adjust : false
  110. #Key
  111. # time rate frequency
  112. # ms Hz Hz
  113. -1.25 17.5 47.1
  114. -1.00 35.1 46.7
  115. -0.75 87.7 46.1
  116. -0.50 52.6 46.3
  117. -0.25 52.6 45.9
  118. 0.00 35.1 46.7
  119. 0.25 70.2 46.6
  120. 0.50 52.6 45.9
  121. 0.75 87.7 46.4
  122. 1.00 52.6 44.0
  123. 1.25 35.1 44.1
  124. # index : 3
  125. # trace : 0
  126. # waveform : Sine-Wave
  127. # true deltaf : -400.1Hz
  128. # true contrast : 20.9%
  129. # EOD rate : 648.9Hz
  130. # trans. amplitude: 1.14mV
  131. # session time : "0h02min50sec"
  132. # Settings:
  133. # Stimulus:
  134. # duration : 1000ms
  135. # pause : 100ms
  136. # freqsel : relative to EOD
  137. # deltaf : -400Hz
  138. # contrast : 20%
  139. # repeats : 10
  140. # am : false
  141. # sinewave : true
  142. # ampl : "0.0"
  143. # phase : "0.0"
  144. # contrastsel: fundamental
  145. # Analysis:
  146. # skip : 0.5Periods
  147. # ratebins: 10
  148. # before : 0ms
  149. # after : 0ms
  150. # adjust : false
  151. #Key
  152. # time rate frequency
  153. # ms Hz Hz
  154. -1.25 43.4 49.7
  155. -1.00 52.1 49.2
  156. -0.75 43.4 49.1
  157. -0.50 34.7 49.9
  158. -0.25 86.8 50.2
  159. 0.00 52.1 49.5
  160. 0.25 86.8 49.2
  161. 0.50 52.1 48.8
  162. 0.75 52.1 49.3
  163. 1.00 60.7 48.6
  164. 1.25 34.7 49.2
  165. # index : 4
  166. # trace : 0
  167. # waveform : Sine-Wave
  168. # true deltaf : -300.3Hz
  169. # true contrast : 11.8%
  170. # EOD rate : 648.9Hz
  171. # trans. amplitude: 1.05mV
  172. # session time : "0h03min01sec"
  173. # Settings:
  174. # Stimulus:
  175. # duration : 1000ms
  176. # pause : 100ms
  177. # freqsel : relative to EOD
  178. # deltaf : -300Hz
  179. # contrast : 10%
  180. # repeats : 10
  181. # am : false
  182. # sinewave : true
  183. # ampl : "0.0"
  184. # phase : "0.0"
  185. # contrastsel: fundamental
  186. # Analysis:
  187. # skip : 0.5Periods
  188. # ratebins: 10
  189. # before : 0ms
  190. # after : 0ms
  191. # adjust : false
  192. #Key
  193. # time rate frequency
  194. # ms Hz Hz
  195. -1.67 24.8 49.1
  196. -1.33 37.2 49.2
  197. -1.00 55.8 48.9
  198. -0.67 49.6 48.8
  199. -0.33 24.8 49.4
  200. 0.00 99.2 49.0
  201. 0.33 68.2 49.4
  202. 0.67 68.2 49.5
  203. 1.00 74.4 49.7
  204. 1.33 37.2 49.4
  205. 1.67 68.2 49.4
  206. # index : 5
  207. # trace : 0
  208. # waveform : Sine-Wave
  209. # true deltaf : -300.2Hz
  210. # true contrast : 20.9%
  211. # EOD rate : 648.9Hz
  212. # trans. amplitude: 1.14mV
  213. # session time : "0h03min12sec"
  214. # Settings:
  215. # Stimulus:
  216. # duration : 1000ms
  217. # pause : 100ms
  218. # freqsel : relative to EOD
  219. # deltaf : -300Hz
  220. # contrast : 20%
  221. # repeats : 10
  222. # am : false
  223. # sinewave : true
  224. # ampl : "0.0"
  225. # phase : "0.0"
  226. # contrastsel: fundamental
  227. # Analysis:
  228. # skip : 0.5Periods
  229. # ratebins: 10
  230. # before : 0ms
  231. # after : 0ms
  232. # adjust : false
  233. #Key
  234. # time rate frequency
  235. # ms Hz Hz
  236. -1.67 55.4 57.1
  237. -1.33 61.6 57.3
  238. -1.00 73.9 57.1
  239. -0.67 24.6 56.3
  240. -0.33 37.0 56.6
  241. 0.00 123.2 57.5
  242. 0.33 104.7 57.0
  243. 0.67 55.4 57.6
  244. 1.00 67.8 58.7
  245. 1.33 43.1 58.4
  246. 1.67 98.6 58.5
  247. # index : 6
  248. # trace : 0
  249. # waveform : Sine-Wave
  250. # true deltaf : -200.9Hz
  251. # true contrast : 11.5%
  252. # EOD rate : 648.7Hz
  253. # trans. amplitude: 1.05mV
  254. # session time : "0h03min23sec"
  255. # Settings:
  256. # Stimulus:
  257. # duration : 1000ms
  258. # pause : 100ms
  259. # freqsel : relative to EOD
  260. # deltaf : -200Hz
  261. # contrast : 10%
  262. # repeats : 10
  263. # am : false
  264. # sinewave : true
  265. # ampl : "0.0"
  266. # phase : "0.0"
  267. # contrastsel: fundamental
  268. # Analysis:
  269. # skip : 0.5Periods
  270. # ratebins: 10
  271. # before : 0ms
  272. # after : 0ms
  273. # adjust : false
  274. #Key
  275. # time rate frequency
  276. # ms Hz Hz
  277. -2.50 0.0 0.0
  278. -2.00 0.0 0.0
  279. -1.50 0.0 0.0
  280. -1.00 0.0 0.0
  281. -0.50 0.0 0.0
  282. 0.00 0.0 0.0
  283. 0.50 0.0 0.0
  284. 1.00 0.0 0.0
  285. 1.50 0.0 0.0
  286. 2.00 0.0 0.0
  287. 2.50 0.0 0.0
  288. # index : 7
  289. # trace : 0
  290. # waveform : Sine-Wave
  291. # true deltaf : -200.9Hz
  292. # true contrast : 20.3%
  293. # EOD rate : 648.7Hz
  294. # trans. amplitude: 1.12mV
  295. # session time : "0h03min34sec"
  296. # Settings:
  297. # Stimulus:
  298. # duration : 1000ms
  299. # pause : 100ms
  300. # freqsel : relative to EOD
  301. # deltaf : -200Hz
  302. # contrast : 20%
  303. # repeats : 10
  304. # am : false
  305. # sinewave : true
  306. # ampl : "0.0"
  307. # phase : "0.0"
  308. # contrastsel: fundamental
  309. # Analysis:
  310. # skip : 0.5Periods
  311. # ratebins: 10
  312. # before : 0ms
  313. # after : 0ms
  314. # adjust : false
  315. #Key
  316. # time rate frequency
  317. # ms Hz Hz
  318. -2.50 0.0 0.0
  319. -2.00 0.0 0.0
  320. -1.50 0.0 0.0
  321. -1.00 0.0 0.0
  322. -0.50 0.0 0.0
  323. 0.00 0.0 0.0
  324. 0.50 0.0 0.0
  325. 1.00 0.0 0.0
  326. 1.50 0.0 0.0
  327. 2.00 0.0 0.0
  328. 2.50 0.0 0.0
  329. # index : 8
  330. # trace : 0
  331. # waveform : Sine-Wave
  332. # true deltaf : -98.9Hz
  333. # true contrast : 10.4%
  334. # EOD rate : 648.9Hz
  335. # trans. amplitude: 1.05mV
  336. # session time : "0h03min45sec"
  337. # Settings:
  338. # Stimulus:
  339. # duration : 1000ms
  340. # pause : 100ms
  341. # freqsel : relative to EOD
  342. # deltaf : -100Hz
  343. # contrast : 10%
  344. # repeats : 10
  345. # am : false
  346. # sinewave : true
  347. # ampl : "0.0"
  348. # phase : "0.0"
  349. # contrastsel: fundamental
  350. # Analysis:
  351. # skip : 0.5Periods
  352. # ratebins: 10
  353. # before : 0ms
  354. # after : 0ms
  355. # adjust : false
  356. #Key
  357. # time rate frequency
  358. # ms Hz Hz
  359. -5.00 31.7 59.3
  360. -4.00 56.1 59.9
  361. -3.00 69.8 59.9
  362. -2.00 78.3 60.2
  363. -1.00 63.5 59.9
  364. 0.00 87.8 59.8
  365. 1.00 70.9 59.2
  366. 2.00 44.4 58.5
  367. 3.00 48.7 57.9
  368. 4.00 34.9 58.4
  369. 5.00 45.5 58.6
  370. # index : 9
  371. # trace : 0
  372. # waveform : Sine-Wave
  373. # true deltaf : -98.8Hz
  374. # true contrast : 19.5%
  375. # EOD rate : 648.9Hz
  376. # trans. amplitude: 1.12mV
  377. # session time : "0h03min57sec"
  378. # Settings:
  379. # Stimulus:
  380. # duration : 1000ms
  381. # pause : 100ms
  382. # freqsel : relative to EOD
  383. # deltaf : -100Hz
  384. # contrast : 20%
  385. # repeats : 10
  386. # am : false
  387. # sinewave : true
  388. # ampl : "0.0"
  389. # phase : "0.0"
  390. # contrastsel: fundamental
  391. # Analysis:
  392. # skip : 0.5Periods
  393. # ratebins: 10
  394. # before : 0ms
  395. # after : 0ms
  396. # adjust : false
  397. #Key
  398. # time rate frequency
  399. # ms Hz Hz
  400. -5.00 20.5 54.4
  401. -4.00 47.1 55.3
  402. -3.00 65.5 55.9
  403. -2.00 92.1 56.5
  404. -1.00 73.7 56.9
  405. 0.00 96.2 56.7
  406. 1.00 57.3 55.1
  407. 2.00 34.8 55.6
  408. 3.00 32.8 54.5
  409. 4.00 29.7 53.7
  410. 5.00 38.9 54.4
  411. # index : 10
  412. # trace : 0
  413. # waveform : Sine-Wave
  414. # true deltaf : 100.9Hz
  415. # true contrast : 9.0%
  416. # EOD rate : 649.2Hz
  417. # trans. amplitude: 1.05mV
  418. # session time : "0h04min08sec"
  419. # Settings:
  420. # Stimulus:
  421. # duration : 1000ms
  422. # pause : 100ms
  423. # freqsel : relative to EOD
  424. # deltaf : 100Hz
  425. # contrast : 10%
  426. # repeats : 10
  427. # am : false
  428. # sinewave : true
  429. # ampl : "0.0"
  430. # phase : "0.0"
  431. # contrastsel: fundamental
  432. # Analysis:
  433. # skip : 0.5Periods
  434. # ratebins: 10
  435. # before : 0ms
  436. # after : 0ms
  437. # adjust : false
  438. #Key
  439. # time rate frequency
  440. # ms Hz Hz
  441. -5.00 78.6 54.7
  442. -4.00 70.6 54.3
  443. -3.00 58.5 53.3
  444. -2.00 39.3 52.4
  445. -1.00 30.2 52.5
  446. 0.00 32.3 52.8
  447. 1.00 34.3 52.3
  448. 2.00 46.4 53.6
  449. 3.00 65.5 54.1
  450. 4.00 76.6 54.6
  451. 5.00 82.7 54.3
  452. # index : 11
  453. # trace : 0
  454. # waveform : Sine-Wave
  455. # true deltaf : 100.5Hz
  456. # true contrast : 16.7%
  457. # EOD rate : 649.6Hz
  458. # trans. amplitude: 1.10mV
  459. # session time : "0h04min19sec"
  460. # Settings:
  461. # Stimulus:
  462. # duration : 1000ms
  463. # pause : 100ms
  464. # freqsel : relative to EOD
  465. # deltaf : 100Hz
  466. # contrast : 20%
  467. # repeats : 10
  468. # am : false
  469. # sinewave : true
  470. # ampl : "0.0"
  471. # phase : "0.0"
  472. # contrastsel: fundamental
  473. # Analysis:
  474. # skip : 0.5Periods
  475. # ratebins: 10
  476. # before : 0ms
  477. # after : 0ms
  478. # adjust : false
  479. #Key
  480. # time rate frequency
  481. # ms Hz Hz
  482. -5.00 90.9 53.3
  483. -4.00 81.8 52.1
  484. -3.00 45.5 51.6
  485. -2.00 34.3 51.0
  486. -1.00 30.3 50.1
  487. 0.00 30.3 50.7
  488. 1.00 22.2 51.3
  489. 2.00 27.3 52.0
  490. 3.00 85.9 52.3
  491. 4.00 80.8 52.5
  492. 5.00 70.7 51.1
  493. # index : 12
  494. # trace : 0
  495. # waveform : Sine-Wave
  496. # true deltaf : 199.9Hz
  497. # true contrast : 9.4%
  498. # EOD rate : 649.5Hz
  499. # trans. amplitude: 1.05mV
  500. # session time : "0h04min30sec"
  501. # Settings:
  502. # Stimulus:
  503. # duration : 1000ms
  504. # pause : 100ms
  505. # freqsel : relative to EOD
  506. # deltaf : 200Hz
  507. # contrast : 10%
  508. # repeats : 10
  509. # am : false
  510. # sinewave : true
  511. # ampl : "0.0"
  512. # phase : "0.0"
  513. # contrastsel: fundamental
  514. # Analysis:
  515. # skip : 0.5Periods
  516. # ratebins: 10
  517. # before : 0ms
  518. # after : 0ms
  519. # adjust : false
  520. #Key
  521. # time rate frequency
  522. # ms Hz Hz
  523. -2.50 41.5 49.0
  524. -2.00 33.6 49.7
  525. -1.50 49.5 49.6
  526. -1.00 27.7 49.6
  527. -0.50 31.7 49.4
  528. 0.00 47.5 49.3
  529. 0.50 57.4 50.2
  530. 1.00 41.5 49.3
  531. 1.50 67.3 48.9
  532. 2.00 57.4 49.9
  533. 2.50 63.3 49.1
  534. # index : 13
  535. # trace : 0
  536. # waveform : Sine-Wave
  537. # true deltaf : 199.8Hz
  538. # true contrast : 17.5%
  539. # EOD rate : 649.5Hz
  540. # trans. amplitude: 1.11mV
  541. # session time : "0h04min41sec"
  542. # Settings:
  543. # Stimulus:
  544. # duration : 1000ms
  545. # pause : 100ms
  546. # freqsel : relative to EOD
  547. # deltaf : 200Hz
  548. # contrast : 20%
  549. # repeats : 10
  550. # am : false
  551. # sinewave : true
  552. # ampl : "0.0"
  553. # phase : "0.0"
  554. # contrastsel: fundamental
  555. # Analysis:
  556. # skip : 0.5Periods
  557. # ratebins: 10
  558. # before : 0ms
  559. # after : 0ms
  560. # adjust : false
  561. #Key
  562. # time rate frequency
  563. # ms Hz Hz
  564. -2.50 63.7 46.8
  565. -2.00 31.9 46.3
  566. -1.50 39.8 45.9
  567. -1.00 39.8 46.0
  568. -0.50 23.9 46.3
  569. 0.00 61.8 46.7
  570. 0.50 45.8 48.0
  571. 1.00 57.8 49.1
  572. 1.50 77.7 49.3
  573. 2.00 67.7 49.1
  574. 2.50 39.8 50.2
  575. # index : 14
  576. # trace : 0
  577. # waveform : Sine-Wave
  578. # true deltaf : 297.9Hz
  579. # true contrast : 9.4%
  580. # EOD rate : 649.5Hz
  581. # trans. amplitude: 1.06mV
  582. # session time : "0h04min52sec"
  583. # Settings:
  584. # Stimulus:
  585. # duration : 1000ms
  586. # pause : 100ms
  587. # freqsel : relative to EOD
  588. # deltaf : 300Hz
  589. # contrast : 10%
  590. # repeats : 10
  591. # am : false
  592. # sinewave : true
  593. # ampl : "0.0"
  594. # phase : "0.0"
  595. # contrastsel: fundamental
  596. # Analysis:
  597. # skip : 0.5Periods
  598. # ratebins: 10
  599. # before : 0ms
  600. # after : 0ms
  601. # adjust : false
  602. #Key
  603. # time rate frequency
  604. # ms Hz Hz
  605. -1.67 51.4 49.6
  606. -1.33 54.5 50.3
  607. -1.00 43.2 50.5
  608. -0.67 50.4 50.1
  609. -0.33 40.1 49.5
  610. 0.00 58.6 49.5
  611. 0.33 56.5 49.9
  612. 0.67 38.0 49.9
  613. 1.00 61.7 49.5
  614. 1.33 48.3 49.5
  615. 1.67 57.6 50.0
  616. # index : 15
  617. # trace : 0
  618. # waveform : Sine-Wave
  619. # true deltaf : 298.0Hz
  620. # true contrast : 17.2%
  621. # EOD rate : 649.4Hz
  622. # trans. amplitude: 1.10mV
  623. # session time : "0h05min03sec"
  624. # Settings:
  625. # Stimulus:
  626. # duration : 1000ms
  627. # pause : 100ms
  628. # freqsel : relative to EOD
  629. # deltaf : 300Hz
  630. # contrast : 20%
  631. # repeats : 10
  632. # am : false
  633. # sinewave : true
  634. # ampl : "0.0"
  635. # phase : "0.0"
  636. # contrastsel: fundamental
  637. # Analysis:
  638. # skip : 0.5Periods
  639. # ratebins: 10
  640. # before : 0ms
  641. # after : 0ms
  642. # adjust : false
  643. #Key
  644. # time rate frequency
  645. # ms Hz Hz
  646. -1.67 51.5 48.7
  647. -1.33 47.5 49.1
  648. -1.00 42.4 49.1
  649. -0.67 51.5 48.6
  650. -0.33 29.3 48.3
  651. 0.00 86.9 47.7
  652. 0.33 46.5 48.1
  653. 0.67 50.5 48.3
  654. 1.00 39.4 48.6
  655. 1.33 47.5 48.6
  656. 1.67 40.4 48.7
  657. # index : 16
  658. # trace : 0
  659. # waveform : Sine-Wave
  660. # true deltaf : 401.0Hz
  661. # true contrast : 9.2%
  662. # EOD rate : 649.3Hz
  663. # trans. amplitude: 1.06mV
  664. # session time : "0h05min14sec"
  665. # Settings:
  666. # Stimulus:
  667. # duration : 1000ms
  668. # pause : 100ms
  669. # freqsel : relative to EOD
  670. # deltaf : 400Hz
  671. # contrast : 10%
  672. # repeats : 10
  673. # am : false
  674. # sinewave : true
  675. # ampl : "0.0"
  676. # phase : "0.0"
  677. # contrastsel: fundamental
  678. # Analysis:
  679. # skip : 0.5Periods
  680. # ratebins: 10
  681. # before : 0ms
  682. # after : 0ms
  683. # adjust : false
  684. #Key
  685. # time rate frequency
  686. # ms Hz Hz
  687. -1.25 50.5 45.8
  688. -1.00 54.6 45.9
  689. -0.75 35.4 45.8
  690. -0.50 38.4 45.7
  691. -0.25 41.4 45.7
  692. 0.00 53.6 45.6
  693. 0.25 56.6 45.8
  694. 0.50 56.6 45.8
  695. 0.75 38.4 45.7
  696. 1.00 39.4 45.5
  697. 1.25 40.4 45.5
  698. # index : 17
  699. # trace : 0
  700. # waveform : Sine-Wave
  701. # true deltaf : 401.0Hz
  702. # true contrast : 16.8%
  703. # EOD rate : 649.3Hz
  704. # trans. amplitude: 1.07mV
  705. # session time : "0h05min26sec"
  706. # Settings:
  707. # Stimulus:
  708. # duration : 1000ms
  709. # pause : 100ms
  710. # freqsel : relative to EOD
  711. # deltaf : 400Hz
  712. # contrast : 20%
  713. # repeats : 10
  714. # am : false
  715. # sinewave : true
  716. # ampl : "0.0"
  717. # phase : "0.0"
  718. # contrastsel: fundamental
  719. # Analysis:
  720. # skip : 0.5Periods
  721. # ratebins: 10
  722. # before : 0ms
  723. # after : 0ms
  724. # adjust : false
  725. #Key
  726. # time rate frequency
  727. # ms Hz Hz
  728. -1.25 61.3 49.8
  729. -1.00 41.7 50.1
  730. -0.75 49.8 50.3
  731. -0.50 49.8 49.9
  732. -0.25 34.7 49.7
  733. 0.00 62.5 49.7
  734. 0.25 56.7 49.7
  735. 0.50 42.8 49.6
  736. 0.75 40.5 49.9
  737. 1.00 56.7 49.9
  738. 1.25 45.1 49.8
  739. # index : 18
  740. # trace : 0
  741. # waveform : Sine-Wave
  742. # true deltaf : 501.1Hz
  743. # true contrast : 8.9%
  744. # EOD rate : 649.2Hz
  745. # trans. amplitude: 1.06mV
  746. # session time : "0h05min37sec"
  747. # Settings:
  748. # Stimulus:
  749. # duration : 1000ms
  750. # pause : 100ms
  751. # freqsel : relative to EOD
  752. # deltaf : 500Hz
  753. # contrast : 10%
  754. # repeats : 10
  755. # am : false
  756. # sinewave : true
  757. # ampl : "0.0"
  758. # phase : "0.0"
  759. # contrastsel: fundamental
  760. # Analysis:
  761. # skip : 0.5Periods
  762. # ratebins: 10
  763. # before : 0ms
  764. # after : 0ms
  765. # adjust : false
  766. #Key
  767. # time rate frequency
  768. # ms Hz Hz
  769. -1.00 0.0 0.0
  770. -0.80 0.0 0.0
  771. -0.60 0.0 0.0
  772. -0.40 0.0 0.0
  773. -0.20 0.0 0.0
  774. 0.00 0.0 0.0
  775. 0.20 0.0 0.0
  776. 0.40 0.0 0.0
  777. 0.60 0.0 0.0
  778. 0.80 0.0 0.0
  779. 1.00 0.0 0.0
  780. # index : 19
  781. # trace : 0
  782. # waveform : Sine-Wave
  783. # true deltaf : 500.9Hz
  784. # true contrast : 16.3%
  785. # EOD rate : 649.4Hz
  786. # trans. amplitude: 1.07mV
  787. # session time : "0h05min48sec"
  788. # Settings:
  789. # Stimulus:
  790. # duration : 1000ms
  791. # pause : 100ms
  792. # freqsel : relative to EOD
  793. # deltaf : 500Hz
  794. # contrast : 20%
  795. # repeats : 10
  796. # am : false
  797. # sinewave : true
  798. # ampl : "0.0"
  799. # phase : "0.0"
  800. # contrastsel: fundamental
  801. # Analysis:
  802. # skip : 0.5Periods
  803. # ratebins: 10
  804. # before : 0ms
  805. # after : 0ms
  806. # adjust : false
  807. #Key
  808. # time rate frequency
  809. # ms Hz Hz
  810. -1.00 0.0 0.0
  811. -0.80 0.0 0.0
  812. -0.60 0.0 0.0
  813. -0.40 0.0 0.0
  814. -0.20 0.0 0.0
  815. 0.00 0.0 0.0
  816. 0.20 0.0 0.0
  817. 0.40 0.0 0.0
  818. 0.60 0.0 0.0
  819. 0.80 0.0 0.0
  820. 1.00 0.0 0.0
  821. # index : 20
  822. # trace : 0
  823. # waveform : Sine-Wave
  824. # true deltaf : -500.2Hz
  825. # true contrast : 11.3%
  826. # EOD rate : 649.2Hz
  827. # trans. amplitude: 1.05mV
  828. # session time : "0h06min29sec"
  829. # Settings:
  830. # Stimulus:
  831. # duration : 1000ms
  832. # pause : 100ms
  833. # freqsel : relative to EOD
  834. # deltaf : -500Hz
  835. # contrast : 10%
  836. # repeats : 20
  837. # am : false
  838. # sinewave : true
  839. # ampl : "0.405785804073"
  840. # phase : "1.42880086503"
  841. # contrastsel: fundamental
  842. # Analysis:
  843. # skip : 0.5Periods
  844. # ratebins: 10
  845. # before : 0ms
  846. # after : 0ms
  847. # adjust : false
  848. #Key
  849. # time rate frequency
  850. # ms Hz Hz
  851. -1.00 59.8 55.6
  852. -0.80 44.9 54.9
  853. -0.60 74.8 54.1
  854. -0.40 29.9 53.7
  855. -0.20 39.9 53.6
  856. 0.00 54.8 53.3
  857. 0.20 34.9 52.7
  858. 0.40 49.9 53.1
  859. 0.60 69.8 52.6
  860. 0.80 69.8 51.8
  861. 1.00 64.8 51.9
  862. # index : 21
  863. # trace : 0
  864. # waveform : Sine-Wave
  865. # true deltaf : -500.0Hz
  866. # true contrast : 22.5%
  867. # EOD rate : 648.9Hz
  868. # trans. amplitude: 1.11mV
  869. # session time : "0h06min52sec"
  870. # Settings:
  871. # Stimulus:
  872. # duration : 1000ms
  873. # pause : 100ms
  874. # freqsel : relative to EOD
  875. # deltaf : -500Hz
  876. # contrast : 20%
  877. # repeats : 20
  878. # am : false
  879. # sinewave : true
  880. # ampl : "0.405785804073"
  881. # phase : "1.42880086503"
  882. # contrastsel: fundamental
  883. # Analysis:
  884. # skip : 0.5Periods
  885. # ratebins: 10
  886. # before : 0ms
  887. # after : 0ms
  888. # adjust : false
  889. #Key
  890. # time rate frequency
  891. # ms Hz Hz
  892. -1.00 28.8 58.9
  893. -0.80 86.5 58.9
  894. -0.60 57.6 58.8
  895. -0.40 67.2 58.3
  896. -0.20 43.2 58.1
  897. 0.00 72.0 57.2
  898. 0.20 86.5 57.5
  899. 0.40 52.8 57.3
  900. 0.60 57.6 57.5
  901. 0.80 48.0 57.2
  902. 1.00 52.8 57.5
  903. # index : 22
  904. # trace : 0
  905. # waveform : Sine-Wave
  906. # true deltaf : -400.4Hz
  907. # true contrast : 12.0%
  908. # EOD rate : 649.2Hz
  909. # trans. amplitude: 1.05mV
  910. # session time : "0h07min14sec"
  911. # Settings:
  912. # Stimulus:
  913. # duration : 1000ms
  914. # pause : 100ms
  915. # freqsel : relative to EOD
  916. # deltaf : -400Hz
  917. # contrast : 10%
  918. # repeats : 20
  919. # am : false
  920. # sinewave : true
  921. # ampl : "0.405785804073"
  922. # phase : "1.42880086503"
  923. # contrastsel: fundamental
  924. # Analysis:
  925. # skip : 0.5Periods
  926. # ratebins: 10
  927. # before : 0ms
  928. # after : 0ms
  929. # adjust : false
  930. #Key
  931. # time rate frequency
  932. # ms Hz Hz
  933. -1.25 63.6 52.8
  934. -1.00 59.1 52.4
  935. -0.75 81.8 51.6
  936. -0.50 45.5 50.7
  937. -0.25 45.5 51.6
  938. 0.00 72.7 52.1
  939. 0.25 81.8 51.0
  940. 0.50 31.8 51.8
  941. 0.75 63.6 52.5
  942. 1.00 40.9 51.4
  943. 1.25 31.8 51.5
  944. # index : 23
  945. # trace : 0
  946. # waveform : Sine-Wave
  947. # true deltaf : -400.5Hz
  948. # true contrast : 22.5%
  949. # EOD rate : 649.3Hz
  950. # trans. amplitude: 1.13mV
  951. # session time : "0h07min36sec"
  952. # Settings:
  953. # Stimulus:
  954. # duration : 1000ms
  955. # pause : 100ms
  956. # freqsel : relative to EOD
  957. # deltaf : -400Hz
  958. # contrast : 20%
  959. # repeats : 20
  960. # am : false
  961. # sinewave : true
  962. # ampl : "0.405785804073"
  963. # phase : "1.42880086503"
  964. # contrastsel: fundamental
  965. # Analysis:
  966. # skip : 0.5Periods
  967. # ratebins: 10
  968. # before : 0ms
  969. # after : 0ms
  970. # adjust : false
  971. #Key
  972. # time rate frequency
  973. # ms Hz Hz
  974. -1.25 22.7 56.8
  975. -1.00 68.0 56.2
  976. -0.75 48.2 56.1
  977. -0.50 59.5 55.9
  978. -0.25 85.0 56.1
  979. 0.00 102.1 56.5
  980. 0.25 82.2 56.5
  981. 0.50 70.9 56.9
  982. 0.75 76.5 57.5
  983. 1.00 82.2 58.3
  984. 1.25 53.9 57.1
  985. # index : 24
  986. # trace : 0
  987. # waveform : Sine-Wave
  988. # true deltaf : -300.2Hz
  989. # true contrast : 11.7%
  990. # EOD rate : 648.9Hz
  991. # trans. amplitude: 1.05mV
  992. # session time : "0h07min58sec"
  993. # Settings:
  994. # Stimulus:
  995. # duration : 1000ms
  996. # pause : 100ms
  997. # freqsel : relative to EOD
  998. # deltaf : -300Hz
  999. # contrast : 10%
  1000. # repeats : 20
  1001. # am : false
  1002. # sinewave : true
  1003. # ampl : "0.405785804073"
  1004. # phase : "1.42880086503"
  1005. # contrastsel: fundamental
  1006. # Analysis:
  1007. # skip : 0.5Periods
  1008. # ratebins: 10
  1009. # before : 0ms
  1010. # after : 0ms
  1011. # adjust : false
  1012. #Key
  1013. # time rate frequency
  1014. # ms Hz Hz
  1015. -1.67 55.8 63.9
  1016. -1.33 62.0 64.1
  1017. -1.00 65.1 64.1
  1018. -0.67 71.4 64.1
  1019. -0.33 68.3 63.7
  1020. 0.00 99.3 63.5
  1021. 0.33 108.6 64.2
  1022. 0.67 105.5 65.1
  1023. 1.00 105.5 66.4
  1024. 1.33 80.7 67.1
  1025. 1.67 105.5 67.6
  1026. # index : 25
  1027. # trace : 0
  1028. # waveform : Sine-Wave
  1029. # true deltaf : -300.2Hz
  1030. # true contrast : 21.8%
  1031. # EOD rate : 648.9Hz
  1032. # trans. amplitude: 1.14mV
  1033. # session time : "0h08min21sec"
  1034. # Settings:
  1035. # Stimulus:
  1036. # duration : 1000ms
  1037. # pause : 100ms
  1038. # freqsel : relative to EOD
  1039. # deltaf : -300Hz
  1040. # contrast : 20%
  1041. # repeats : 20
  1042. # am : false
  1043. # sinewave : true
  1044. # ampl : "0.405785804073"
  1045. # phase : "1.42880086503"
  1046. # contrastsel: fundamental
  1047. # Analysis:
  1048. # skip : 0.5Periods
  1049. # ratebins: 10
  1050. # before : 0ms
  1051. # after : 0ms
  1052. # adjust : false
  1053. #Key
  1054. # time rate frequency
  1055. # ms Hz Hz
  1056. -1.67 24.7 59.6
  1057. -1.33 49.4 59.6
  1058. -1.00 58.7 59.4
  1059. -0.67 46.3 59.5
  1060. -0.33 52.5 61.2
  1061. 0.00 74.2 60.9
  1062. 0.33 80.3 60.6
  1063. 0.67 74.2 61.1
  1064. 1.00 64.9 60.9
  1065. 1.33 135.9 61.8
  1066. 1.67 102.0 63.0
  1067. # index : 26
  1068. # trace : 0
  1069. # waveform : Sine-Wave
  1070. # true deltaf : -201.0Hz
  1071. # true contrast : 12.2%
  1072. # EOD rate : 648.9Hz
  1073. # trans. amplitude: 1.06mV
  1074. # session time : "0h08min43sec"
  1075. # Settings:
  1076. # Stimulus:
  1077. # duration : 1000ms
  1078. # pause : 100ms
  1079. # freqsel : relative to EOD
  1080. # deltaf : -200Hz
  1081. # contrast : 10%
  1082. # repeats : 20
  1083. # am : false
  1084. # sinewave : true
  1085. # ampl : "0.405785804073"
  1086. # phase : "1.42880086503"
  1087. # contrastsel: fundamental
  1088. # Analysis:
  1089. # skip : 0.5Periods
  1090. # ratebins: 10
  1091. # before : 0ms
  1092. # after : 0ms
  1093. # adjust : false
  1094. #Key
  1095. # time rate frequency
  1096. # ms Hz Hz
  1097. -2.50 0.0 0.0
  1098. -2.00 0.0 0.0
  1099. -1.50 0.0 0.0
  1100. -1.00 0.0 0.0
  1101. -0.50 0.0 0.0
  1102. 0.00 0.0 0.0
  1103. 0.50 0.0 0.0
  1104. 1.00 0.0 0.0
  1105. 1.50 0.0 0.0
  1106. 2.00 0.0 0.0
  1107. 2.50 0.0 0.0
  1108. # index : 27
  1109. # trace : 0
  1110. # waveform : Sine-Wave
  1111. # true deltaf : -500.1Hz
  1112. # true contrast : 11.4%
  1113. # EOD rate : 649.0Hz
  1114. # trans. amplitude: 1.06mV
  1115. # session time : "0h09min11sec"
  1116. # Settings:
  1117. # Stimulus:
  1118. # duration : 1000ms
  1119. # pause : 100ms
  1120. # freqsel : relative to EOD
  1121. # deltaf : -500Hz
  1122. # contrast : 10%
  1123. # repeats : 20
  1124. # am : false
  1125. # sinewave : true
  1126. # ampl : "0.405785804073"
  1127. # phase : "1.42880086503"
  1128. # contrastsel: fundamental
  1129. # Analysis:
  1130. # skip : 0.5Periods
  1131. # ratebins: 10
  1132. # before : 0ms
  1133. # after : 0ms
  1134. # adjust : false
  1135. #Key
  1136. # time rate frequency
  1137. # ms Hz Hz
  1138. -1.00 30.1 53.6
  1139. -0.80 45.1 53.5
  1140. -0.60 55.1 54.2
  1141. -0.40 70.1 54.4
  1142. -0.20 45.1 54.5
  1143. 0.00 70.1 54.6
  1144. 0.20 85.2 54.4
  1145. 0.40 30.1 54.4
  1146. 0.60 55.1 54.5
  1147. 0.80 40.1 53.9
  1148. 1.00 30.1 54.1
  1149. # index : 28
  1150. # trace : 0
  1151. # waveform : Sine-Wave
  1152. # true deltaf : -499.7Hz
  1153. # true contrast : 22.3%
  1154. # EOD rate : 648.5Hz
  1155. # trans. amplitude: 1.11mV
  1156. # session time : "0h09min33sec"
  1157. # Settings:
  1158. # Stimulus:
  1159. # duration : 1000ms
  1160. # pause : 100ms
  1161. # freqsel : relative to EOD
  1162. # deltaf : -500Hz
  1163. # contrast : 20%
  1164. # repeats : 20
  1165. # am : false
  1166. # sinewave : true
  1167. # ampl : "0.405785804073"
  1168. # phase : "1.42880086503"
  1169. # contrastsel: fundamental
  1170. # Analysis:
  1171. # skip : 0.5Periods
  1172. # ratebins: 10
  1173. # before : 0ms
  1174. # after : 0ms
  1175. # adjust : false
  1176. #Key
  1177. # time rate frequency
  1178. # ms Hz Hz
  1179. -1.00 62.4 58.3
  1180. -0.80 48.0 58.1
  1181. -0.60 76.8 57.5
  1182. -0.40 33.6 57.4
  1183. -0.20 43.2 58.1
  1184. 0.00 57.6 58.1
  1185. 0.20 96.1 58.0
  1186. 0.40 57.6 58.3
  1187. 0.60 43.2 57.9
  1188. 0.80 57.6 58.0
  1189. 1.00 86.5 57.0
  1190. # index : 29
  1191. # trace : 0
  1192. # waveform : Sine-Wave
  1193. # true deltaf : -400.6Hz
  1194. # true contrast : 12.0%
  1195. # EOD rate : 648.1Hz
  1196. # trans. amplitude: 1.06mV
  1197. # session time : "0h09min55sec"
  1198. # Settings:
  1199. # Stimulus:
  1200. # duration : 1000ms
  1201. # pause : 100ms
  1202. # freqsel : relative to EOD
  1203. # deltaf : -400Hz
  1204. # contrast : 10%
  1205. # repeats : 20
  1206. # am : false
  1207. # sinewave : true
  1208. # ampl : "0.405785804073"
  1209. # phase : "1.42880086503"
  1210. # contrastsel: fundamental
  1211. # Analysis:
  1212. # skip : 0.5Periods
  1213. # ratebins: 10
  1214. # before : 0ms
  1215. # after : 0ms
  1216. # adjust : false
  1217. #Key
  1218. # time rate frequency
  1219. # ms Hz Hz
  1220. -1.25 49.0 55.7
  1221. -1.00 54.2 55.6
  1222. -0.75 43.8 56.1
  1223. -0.50 61.9 55.6
  1224. -0.25 49.0 55.5
  1225. 0.00 61.9 55.4
  1226. 0.25 72.2 55.0
  1227. 0.50 67.1 54.7
  1228. 0.75 51.6 54.1
  1229. 1.00 72.2 54.1
  1230. 1.25 46.4 54.0
  1231. # index : 30
  1232. # trace : 0
  1233. # waveform : Sine-Wave
  1234. # true deltaf : -399.7Hz
  1235. # true contrast : 22.4%
  1236. # EOD rate : 648.4Hz
  1237. # trans. amplitude: 1.14mV
  1238. # session time : "0h10min18sec"
  1239. # Settings:
  1240. # Stimulus:
  1241. # duration : 1000ms
  1242. # pause : 100ms
  1243. # freqsel : relative to EOD
  1244. # deltaf : -400Hz
  1245. # contrast : 20%
  1246. # repeats : 20
  1247. # am : false
  1248. # sinewave : true
  1249. # ampl : "0.405785804073"
  1250. # phase : "1.42880086503"
  1251. # contrastsel: fundamental
  1252. # Analysis:
  1253. # skip : 0.5Periods
  1254. # ratebins: 10
  1255. # before : 0ms
  1256. # after : 0ms
  1257. # adjust : false
  1258. #Key
  1259. # time rate frequency
  1260. # ms Hz Hz
  1261. -1.25 48.9 55.5
  1262. -1.00 28.5 55.8
  1263. -0.75 57.0 55.8
  1264. -0.50 40.7 56.0
  1265. -0.25 40.7 56.6
  1266. 0.00 114.1 56.6
  1267. 0.25 77.4 56.2
  1268. 0.50 57.0 56.5
  1269. 0.75 73.3 56.2
  1270. 1.00 40.7 55.9
  1271. 1.25 44.8 56.2
  1272. # index : 31
  1273. # trace : 0
  1274. # waveform : Sine-Wave
  1275. # true deltaf : -299.7Hz
  1276. # true contrast : 12.3%
  1277. # EOD rate : 648.4Hz
  1278. # trans. amplitude: 1.06mV
  1279. # session time : "0h10min40sec"
  1280. # Settings:
  1281. # Stimulus:
  1282. # duration : 1000ms
  1283. # pause : 100ms
  1284. # freqsel : relative to EOD
  1285. # deltaf : -300Hz
  1286. # contrast : 10%
  1287. # repeats : 20
  1288. # am : false
  1289. # sinewave : true
  1290. # ampl : "0.405785804073"
  1291. # phase : "1.42880086503"
  1292. # contrastsel: fundamental
  1293. # Analysis:
  1294. # skip : 0.5Periods
  1295. # ratebins: 10
  1296. # before : 0ms
  1297. # after : 0ms
  1298. # adjust : false
  1299. #Key
  1300. # time rate frequency
  1301. # ms Hz Hz
  1302. -1.67 64.5 65.1
  1303. -1.33 86.1 64.4
  1304. -1.00 79.9 64.6
  1305. -0.67 61.5 65.2
  1306. -0.33 70.7 64.9
  1307. 0.00 79.9 64.8
  1308. 0.33 92.2 65.3
  1309. 0.67 52.3 65.6
  1310. 1.00 101.4 65.8
  1311. 1.33 79.9 67.3
  1312. 1.67 61.5 67.7
  1313. # index : 32
  1314. # trace : 0
  1315. # waveform : Sine-Wave
  1316. # true deltaf : -299.9Hz
  1317. # true contrast : 21.6%
  1318. # EOD rate : 648.5Hz
  1319. # trans. amplitude: 1.14mV
  1320. # session time : "0h11min02sec"
  1321. # Settings:
  1322. # Stimulus:
  1323. # duration : 1000ms
  1324. # pause : 100ms
  1325. # freqsel : relative to EOD
  1326. # deltaf : -300Hz
  1327. # contrast : 20%
  1328. # repeats : 20
  1329. # am : false
  1330. # sinewave : true
  1331. # ampl : "0.405785804073"
  1332. # phase : "1.42880086503"
  1333. # contrastsel: fundamental
  1334. # Analysis:
  1335. # skip : 0.5Periods
  1336. # ratebins: 10
  1337. # before : 0ms
  1338. # after : 0ms
  1339. # adjust : false
  1340. #Key
  1341. # time rate frequency
  1342. # ms Hz Hz
  1343. -1.67 37.3 65.7
  1344. -1.33 59.0 65.1
  1345. -1.00 93.2 65.3
  1346. -0.67 55.9 64.7
  1347. -0.33 59.0 64.1
  1348. 0.00 114.9 64.5
  1349. 0.33 68.3 64.2
  1350. 0.67 99.4 63.1
  1351. 1.00 93.2 63.6
  1352. 1.33 71.4 64.0
  1353. 1.67 114.9 64.4
  1354. # index : 33
  1355. # trace : 0
  1356. # waveform : Sine-Wave
  1357. # true deltaf : -200.9Hz
  1358. # true contrast : 12.1%
  1359. # EOD rate : 648.8Hz
  1360. # trans. amplitude: 1.06mV
  1361. # session time : "0h11min24sec"
  1362. # Settings:
  1363. # Stimulus:
  1364. # duration : 1000ms
  1365. # pause : 100ms
  1366. # freqsel : relative to EOD
  1367. # deltaf : -200Hz
  1368. # contrast : 10%
  1369. # repeats : 20
  1370. # am : false
  1371. # sinewave : true
  1372. # ampl : "0.405785804073"
  1373. # phase : "1.42880086503"
  1374. # contrastsel: fundamental
  1375. # Analysis:
  1376. # skip : 0.5Periods
  1377. # ratebins: 10
  1378. # before : 0ms
  1379. # after : 0ms
  1380. # adjust : false
  1381. #Key
  1382. # time rate frequency
  1383. # ms Hz Hz
  1384. -2.50 0.0 0.0
  1385. -2.00 0.0 0.0
  1386. -1.50 0.0 0.0
  1387. -1.00 0.0 0.0
  1388. -0.50 0.0 0.0
  1389. 0.00 0.0 0.0
  1390. 0.50 0.0 0.0
  1391. 1.00 0.0 0.0
  1392. 1.50 0.0 0.0
  1393. 2.00 0.0 0.0
  1394. 2.50 0.0 0.0
  1395. # index : 34
  1396. # trace : 0
  1397. # waveform : Sine-Wave
  1398. # true deltaf : -200.7Hz
  1399. # true contrast : 21.1%
  1400. # EOD rate : 648.6Hz
  1401. # trans. amplitude: 1.13mV
  1402. # session time : "0h11min47sec"
  1403. # Settings:
  1404. # Stimulus:
  1405. # duration : 1000ms
  1406. # pause : 100ms
  1407. # freqsel : relative to EOD
  1408. # deltaf : -200Hz
  1409. # contrast : 20%
  1410. # repeats : 20
  1411. # am : false
  1412. # sinewave : true
  1413. # ampl : "0.405785804073"
  1414. # phase : "1.42880086503"
  1415. # contrastsel: fundamental
  1416. # Analysis:
  1417. # skip : 0.5Periods
  1418. # ratebins: 10
  1419. # before : 0ms
  1420. # after : 0ms
  1421. # adjust : false
  1422. #Key
  1423. # time rate frequency
  1424. # ms Hz Hz
  1425. -2.50 0.0 0.0
  1426. -2.00 0.0 0.0
  1427. -1.50 0.0 0.0
  1428. -1.00 0.0 0.0
  1429. -0.50 0.0 0.0
  1430. 0.00 0.0 0.0
  1431. 0.50 0.0 0.0
  1432. 1.00 0.0 0.0
  1433. 1.50 0.0 0.0
  1434. 2.00 0.0 0.0
  1435. 2.50 0.0 0.0
  1436. # index : 35
  1437. # trace : 0
  1438. # waveform : Sine-Wave
  1439. # true deltaf : -98.7Hz
  1440. # true contrast : 11.1%
  1441. # EOD rate : 648.7Hz
  1442. # trans. amplitude: 1.06mV
  1443. # session time : "0h12min09sec"
  1444. # Settings:
  1445. # Stimulus:
  1446. # duration : 1000ms
  1447. # pause : 100ms
  1448. # freqsel : relative to EOD
  1449. # deltaf : -100Hz
  1450. # contrast : 10%
  1451. # repeats : 20
  1452. # am : false
  1453. # sinewave : true
  1454. # ampl : "0.405785804073"
  1455. # phase : "1.42880086503"
  1456. # contrastsel: fundamental
  1457. # Analysis:
  1458. # skip : 0.5Periods
  1459. # ratebins: 10
  1460. # before : 0ms
  1461. # after : 0ms
  1462. # adjust : false
  1463. #Key
  1464. # time rate frequency
  1465. # ms Hz Hz
  1466. -5.00 43.6 58.2
  1467. -4.00 51.3 58.4
  1468. -3.00 64.6 59.8
  1469. -2.00 74.9 61.6
  1470. -1.00 60.0 61.4
  1471. 0.00 79.5 62.2
  1472. 1.00 66.2 61.5
  1473. 2.00 50.8 60.1
  1474. 3.00 66.2 59.1
  1475. 4.00 46.7 58.2
  1476. 5.00 43.6 57.5
  1477. # index : 36
  1478. # trace : 0
  1479. # waveform : Sine-Wave
  1480. # true deltaf : -98.9Hz
  1481. # true contrast : 20.2%
  1482. # EOD rate : 649.0Hz
  1483. # trans. amplitude: 1.13mV
  1484. # session time : "0h12min31sec"
  1485. # Settings:
  1486. # Stimulus:
  1487. # duration : 1000ms
  1488. # pause : 100ms
  1489. # freqsel : relative to EOD
  1490. # deltaf : -100Hz
  1491. # contrast : 20%
  1492. # repeats : 20
  1493. # am : false
  1494. # sinewave : true
  1495. # ampl : "0.405785804073"
  1496. # phase : "1.42880086503"
  1497. # contrastsel: fundamental
  1498. # Analysis:
  1499. # skip : 0.5Periods
  1500. # ratebins: 10
  1501. # before : 0ms
  1502. # after : 0ms
  1503. # adjust : false
  1504. #Key
  1505. # time rate frequency
  1506. # ms Hz Hz
  1507. -5.00 36.0 57.0
  1508. -4.00 39.6 56.6
  1509. -3.00 64.7 57.3
  1510. -2.00 77.6 59.0
  1511. -1.00 62.2 60.9
  1512. 0.00 91.5 62.1
  1513. 1.00 82.2 62.3
  1514. 2.00 38.5 59.5
  1515. 3.00 51.9 58.4
  1516. 4.00 50.9 57.9
  1517. 5.00 37.5 56.5
  1518. # index : 37
  1519. # trace : 0
  1520. # waveform : Sine-Wave
  1521. # true deltaf : 101.5Hz
  1522. # true contrast : 9.4%
  1523. # EOD rate : 648.6Hz
  1524. # trans. amplitude: 1.07mV
  1525. # session time : "0h12min53sec"
  1526. # Settings:
  1527. # Stimulus:
  1528. # duration : 1000ms
  1529. # pause : 100ms
  1530. # freqsel : relative to EOD
  1531. # deltaf : 100Hz
  1532. # contrast : 10%
  1533. # repeats : 20
  1534. # am : false
  1535. # sinewave : true
  1536. # ampl : "0.405785804073"
  1537. # phase : "1.42880086503"
  1538. # contrastsel: fundamental
  1539. # Analysis:
  1540. # skip : 0.5Periods
  1541. # ratebins: 10
  1542. # before : 0ms
  1543. # after : 0ms
  1544. # adjust : false
  1545. #Key
  1546. # time rate frequency
  1547. # ms Hz Hz
  1548. -5.00 84.3 62.2
  1549. -4.00 65.7 60.6
  1550. -3.00 60.7 58.2
  1551. -2.00 41.1 56.1
  1552. -1.00 34.6 55.3
  1553. 0.00 38.1 55.5
  1554. 1.00 50.7 56.1
  1555. 2.00 69.2 59.1
  1556. 3.00 66.2 61.3
  1557. 4.00 82.8 61.8
  1558. 5.00 77.3 61.0
  1559. # index : 38
  1560. # trace : 0
  1561. # waveform : Sine-Wave
  1562. # true deltaf : 101.0Hz
  1563. # true contrast : 17.2%
  1564. # EOD rate : 649.1Hz
  1565. # trans. amplitude: 1.11mV
  1566. # session time : "0h13min15sec"
  1567. # Settings:
  1568. # Stimulus:
  1569. # duration : 1000ms
  1570. # pause : 100ms
  1571. # freqsel : relative to EOD
  1572. # deltaf : 100Hz
  1573. # contrast : 20%
  1574. # repeats : 20
  1575. # am : false
  1576. # sinewave : true
  1577. # ampl : "0.405785804073"
  1578. # phase : "1.42880086503"
  1579. # contrastsel: fundamental
  1580. # Analysis:
  1581. # skip : 0.5Periods
  1582. # ratebins: 10
  1583. # before : 0ms
  1584. # after : 0ms
  1585. # adjust : false
  1586. #Key
  1587. # time rate frequency
  1588. # ms Hz Hz
  1589. -5.00 86.6 63.7
  1590. -4.00 71.5 62.8
  1591. -3.00 56.9 61.5
  1592. -2.00 42.3 59.4
  1593. -1.00 41.8 58.4
  1594. 0.00 52.9 57.9
  1595. 1.00 41.8 58.0
  1596. 2.00 58.4 60.8
  1597. 3.00 76.5 62.7
  1598. 4.00 93.7 63.7
  1599. 5.00 76.0 63.8
  1600. # index : 39
  1601. # trace : 0
  1602. # waveform : Sine-Wave
  1603. # true deltaf : -500.3Hz
  1604. # true contrast : 11.3%
  1605. # EOD rate : 649.2Hz
  1606. # trans. amplitude: 1.06mV
  1607. # session time : "0h13min46sec"
  1608. # Settings:
  1609. # Stimulus:
  1610. # duration : 1000ms
  1611. # pause : 100ms
  1612. # freqsel : relative to EOD
  1613. # deltaf : -500Hz
  1614. # contrast : 10%
  1615. # repeats : 20
  1616. # am : false
  1617. # sinewave : true
  1618. # ampl : "0.405785804073, 0.106443367953"
  1619. # phase : "1.42880086503, 1.19134608071"
  1620. # contrastsel: fundamental
  1621. # Analysis:
  1622. # skip : 0.5Periods
  1623. # ratebins: 10
  1624. # before : 0ms
  1625. # after : 0ms
  1626. # adjust : false
  1627. #Key
  1628. # time rate frequency
  1629. # ms Hz Hz
  1630. -1.00 53.2 58.2
  1631. -0.80 43.5 58.1
  1632. -0.60 38.7 57.9
  1633. -0.40 43.5 57.4
  1634. -0.20 33.8 56.7
  1635. 0.00 82.2 57.2
  1636. 0.20 72.5 56.6
  1637. 0.40 58.0 56.1
  1638. 0.60 62.9 55.8
  1639. 0.80 29.0 55.0
  1640. 1.00 48.4 54.3
  1641. # index : 40
  1642. # trace : 0
  1643. # waveform : Sine-Wave
  1644. # true deltaf : -500.1Hz
  1645. # true contrast : 22.2%
  1646. # EOD rate : 649.1Hz
  1647. # trans. amplitude: 1.12mV
  1648. # session time : "0h14min08sec"
  1649. # Settings:
  1650. # Stimulus:
  1651. # duration : 1000ms
  1652. # pause : 100ms
  1653. # freqsel : relative to EOD
  1654. # deltaf : -500Hz
  1655. # contrast : 20%
  1656. # repeats : 20
  1657. # am : false
  1658. # sinewave : true
  1659. # ampl : "0.405785804073, 0.106443367953"
  1660. # phase : "1.42880086503, 1.19134608071"
  1661. # contrastsel: fundamental
  1662. # Analysis:
  1663. # skip : 0.5Periods
  1664. # ratebins: 10
  1665. # before : 0ms
  1666. # after : 0ms
  1667. # adjust : false
  1668. #Key
  1669. # time rate frequency
  1670. # ms Hz Hz
  1671. -1.00 19.2 57.2
  1672. -0.80 33.5 57.1
  1673. -0.60 76.6 57.5
  1674. -0.40 52.7 57.6
  1675. -0.20 52.7 57.1
  1676. 0.00 67.0 57.3
  1677. 0.20 62.3 57.5
  1678. 0.40 81.4 57.6
  1679. 0.60 76.6 56.4
  1680. 0.80 95.8 56.0
  1681. 1.00 43.1 57.1
  1682. # index : 41
  1683. # trace : 0
  1684. # waveform : Sine-Wave
  1685. # true deltaf : -400.4Hz
  1686. # true contrast : 11.9%
  1687. # EOD rate : 649.1Hz
  1688. # trans. amplitude: 1.07mV
  1689. # session time : "0h14min31sec"
  1690. # Settings:
  1691. # Stimulus:
  1692. # duration : 1000ms
  1693. # pause : 100ms
  1694. # freqsel : relative to EOD
  1695. # deltaf : -400Hz
  1696. # contrast : 10%
  1697. # repeats : 20
  1698. # am : false
  1699. # sinewave : true
  1700. # ampl : "0.405785804073, 0.106443367953"
  1701. # phase : "1.42880086503, 1.19134608071"
  1702. # contrastsel: fundamental
  1703. # Analysis:
  1704. # skip : 0.5Periods
  1705. # ratebins: 10
  1706. # before : 0ms
  1707. # after : 0ms
  1708. # adjust : false
  1709. #Key
  1710. # time rate frequency
  1711. # ms Hz Hz
  1712. -1.25 65.2 55.6
  1713. -1.00 46.6 56.4
  1714. -0.75 69.8 56.9
  1715. -0.50 27.9 56.1
  1716. -0.25 97.8 55.6
  1717. 0.00 88.5 54.1
  1718. 0.25 74.5 54.0
  1719. 0.50 65.2 54.6
  1720. 0.75 51.2 54.5
  1721. 1.00 41.9 55.3
  1722. 1.25 46.6 55.4
  1723. # index : 42
  1724. # trace : 0
  1725. # waveform : Sine-Wave
  1726. # true deltaf : -400.2Hz
  1727. # true contrast : 22.1%
  1728. # EOD rate : 648.9Hz
  1729. # trans. amplitude: 1.14mV
  1730. # session time : "0h14min55sec"
  1731. # Settings:
  1732. # Stimulus:
  1733. # duration : 1000ms
  1734. # pause : 100ms
  1735. # freqsel : relative to EOD
  1736. # deltaf : -400Hz
  1737. # contrast : 20%
  1738. # repeats : 20
  1739. # am : false
  1740. # sinewave : true
  1741. # ampl : "0.405785804073, 0.106443367953"
  1742. # phase : "1.42880086503, 1.19134608071"
  1743. # contrastsel: fundamental
  1744. # Analysis:
  1745. # skip : 0.5Periods
  1746. # ratebins: 10
  1747. # before : 0ms
  1748. # after : 0ms
  1749. # adjust : false
  1750. #Key
  1751. # time rate frequency
  1752. # ms Hz Hz
  1753. -1.25 57.6 57.4
  1754. -1.00 32.0 57.2
  1755. -0.75 76.9 57.5
  1756. -0.50 80.1 57.6
  1757. -0.25 57.6 57.7
  1758. 0.00 54.4 58.2
  1759. 0.25 102.5 58.1
  1760. 0.50 70.5 57.9
  1761. 0.75 67.3 56.6
  1762. 1.00 54.4 57.3
  1763. 1.25 48.0 57.9
  1764. # index : 43
  1765. # trace : 0
  1766. # waveform : Sine-Wave
  1767. # true deltaf : -299.1Hz
  1768. # true contrast : 12.2%
  1769. # EOD rate : 649.5Hz
  1770. # trans. amplitude: 1.07mV
  1771. # session time : "0h15min17sec"
  1772. # Settings:
  1773. # Stimulus:
  1774. # duration : 1000ms
  1775. # pause : 100ms
  1776. # freqsel : relative to EOD
  1777. # deltaf : -300Hz
  1778. # contrast : 10%
  1779. # repeats : 20
  1780. # am : false
  1781. # sinewave : true
  1782. # ampl : "0.405785804073, 0.106443367953"
  1783. # phase : "1.42880086503, 1.19134608071"
  1784. # contrastsel: fundamental
  1785. # Analysis:
  1786. # skip : 0.5Periods
  1787. # ratebins: 10
  1788. # before : 0ms
  1789. # after : 0ms
  1790. # adjust : false
  1791. #Key
  1792. # time rate frequency
  1793. # ms Hz Hz
  1794. -1.67 79.1 63.2
  1795. -1.33 73.2 63.0
  1796. -1.00 73.2 61.9
  1797. -0.67 58.6 62.9
  1798. -0.33 29.3 63.0
  1799. 0.00 55.7 63.3
  1800. 0.33 61.5 63.3
  1801. 0.67 61.5 64.1
  1802. 1.00 52.7 64.8
  1803. 1.33 52.7 65.8
  1804. 1.67 96.7 65.7
  1805. # index : 44
  1806. # trace : 0
  1807. # waveform : Sine-Wave
  1808. # true deltaf : -300.8Hz
  1809. # true contrast : 21.4%
  1810. # EOD rate : 649.5Hz
  1811. # trans. amplitude: 1.15mV
  1812. # session time : "0h15min40sec"
  1813. # Settings:
  1814. # Stimulus:
  1815. # duration : 1000ms
  1816. # pause : 100ms
  1817. # freqsel : relative to EOD
  1818. # deltaf : -300Hz
  1819. # contrast : 20%
  1820. # repeats : 20
  1821. # am : false
  1822. # sinewave : true
  1823. # ampl : "0.405785804073, 0.106443367953"
  1824. # phase : "1.42880086503, 1.19134608071"
  1825. # contrastsel: fundamental
  1826. # Analysis:
  1827. # skip : 0.5Periods
  1828. # ratebins: 10
  1829. # before : 0ms
  1830. # after : 0ms
  1831. # adjust : false
  1832. #Key
  1833. # time rate frequency
  1834. # ms Hz Hz
  1835. -1.67 73.0 70.0
  1836. -1.33 79.4 70.2
  1837. -1.00 85.7 70.0
  1838. -0.67 50.8 69.7
  1839. -0.33 69.8 69.8
  1840. 0.00 76.2 70.5
  1841. 0.33 95.2 70.0
  1842. 0.67 95.2 70.3
  1843. 1.00 95.2 70.7
  1844. 1.33 114.3 70.3
  1845. 1.67 149.2 70.5
  1846. # index : 45
  1847. # trace : 0
  1848. # waveform : Sine-Wave
  1849. # true deltaf : -199.1Hz
  1850. # true contrast : 11.9%
  1851. # EOD rate : 649.1Hz
  1852. # trans. amplitude: 1.08mV
  1853. # session time : "0h16min02sec"
  1854. # Settings:
  1855. # Stimulus:
  1856. # duration : 1000ms
  1857. # pause : 100ms
  1858. # freqsel : relative to EOD
  1859. # deltaf : -200Hz
  1860. # contrast : 10%
  1861. # repeats : 20
  1862. # am : false
  1863. # sinewave : true
  1864. # ampl : "0.405785804073, 0.106443367953"
  1865. # phase : "1.42880086503, 1.19134608071"
  1866. # contrastsel: fundamental
  1867. # Analysis:
  1868. # skip : 0.5Periods
  1869. # ratebins: 10
  1870. # before : 0ms
  1871. # after : 0ms
  1872. # adjust : false
  1873. #Key
  1874. # time rate frequency
  1875. # ms Hz Hz
  1876. -2.50 0.0 0.0
  1877. -2.00 0.0 0.0
  1878. -1.50 0.0 0.0
  1879. -1.00 0.0 0.0
  1880. -0.50 0.0 0.0
  1881. 0.00 0.0 0.0
  1882. 0.50 0.0 0.0
  1883. 1.00 0.0 0.0
  1884. 1.50 0.0 0.0
  1885. 2.00 0.0 0.0
  1886. 2.50 0.0 0.0
  1887. # index : 46
  1888. # trace : 0
  1889. # waveform : Sine-Wave
  1890. # true deltaf : -200.8Hz
  1891. # true contrast : 20.8%
  1892. # EOD rate : 648.6Hz
  1893. # trans. amplitude: 1.15mV
  1894. # session time : "0h16min25sec"
  1895. # Settings:
  1896. # Stimulus:
  1897. # duration : 1000ms
  1898. # pause : 100ms
  1899. # freqsel : relative to EOD
  1900. # deltaf : -200Hz
  1901. # contrast : 20%
  1902. # repeats : 20
  1903. # am : false
  1904. # sinewave : true
  1905. # ampl : "0.405785804073, 0.106443367953"
  1906. # phase : "1.42880086503, 1.19134608071"
  1907. # contrastsel: fundamental
  1908. # Analysis:
  1909. # skip : 0.5Periods
  1910. # ratebins: 10
  1911. # before : 0ms
  1912. # after : 0ms
  1913. # adjust : false
  1914. #Key
  1915. # time rate frequency
  1916. # ms Hz Hz
  1917. -2.50 0.0 0.0
  1918. -2.00 0.0 0.0
  1919. -1.50 0.0 0.0
  1920. -1.00 0.0 0.0
  1921. -0.50 0.0 0.0
  1922. 0.00 0.0 0.0
  1923. 0.50 0.0 0.0
  1924. 1.00 0.0 0.0
  1925. 1.50 0.0 0.0
  1926. 2.00 0.0 0.0
  1927. 2.50 0.0 0.0
  1928. # index : 47
  1929. # trace : 0
  1930. # waveform : Sine-Wave
  1931. # true deltaf : -99.0Hz
  1932. # true contrast : 11.5%
  1933. # EOD rate : 649.1Hz
  1934. # trans. amplitude: 1.08mV
  1935. # session time : "0h16min47sec"
  1936. # Settings:
  1937. # Stimulus:
  1938. # duration : 1000ms
  1939. # pause : 100ms
  1940. # freqsel : relative to EOD
  1941. # deltaf : -100Hz
  1942. # contrast : 10%
  1943. # repeats : 20
  1944. # am : false
  1945. # sinewave : true
  1946. # ampl : "0.405785804073, 0.106443367953"
  1947. # phase : "1.42880086503, 1.19134608071"
  1948. # contrastsel: fundamental
  1949. # Analysis:
  1950. # skip : 0.5Periods
  1951. # ratebins: 10
  1952. # before : 0ms
  1953. # after : 0ms
  1954. # adjust : false
  1955. #Key
  1956. # time rate frequency
  1957. # ms Hz Hz
  1958. -5.00 28.5 29.6
  1959. -4.00 26.3 30.6
  1960. -3.00 23.4 31.4
  1961. -2.00 38.0 32.2
  1962. -1.00 41.6 32.4
  1963. 0.00 40.1 32.1
  1964. 1.00 35.0 32.1
  1965. 2.00 27.0 31.9
  1966. 3.00 35.8 31.0
  1967. 4.00 22.6 29.3
  1968. 5.00 19.7 29.4