1 | command MARK <trc> <time> |
---|
2 | ============ |
---|
3 | |
---|
4 | key: mark time at trace |
---|
5 | |
---|
6 | Marks time point on the specified trace by a vertical bar. |
---|
7 | |
---|
8 | parameters |
---|
9 | |
---|
10 | <trc> --- parameter type: trace |
---|
11 | Trace to be marked at time <time>. |
---|
12 | |
---|
13 | <time> --- parameter type: real |
---|
14 | Time position to be marked at <trc>. The time value can be |
---|
15 | entered as a relative time (example: "23.132") or, if the |
---|
16 | "/ABS"-qualifier is specified, as an absolute time value |
---|
17 | (example: "14-JUL-1990_18:30:02.132"). |
---|
18 | |
---|
19 | |
---|
20 | qualifiers |
---|
21 | |
---|
22 | /ABS |
---|
23 | the specified time <time> is an absolute value rather than |
---|
24 | a relative. |
---|
25 | |
---|
26 | /LABEL=<text> |
---|
27 | Prints a label <text> on the marked position. |
---|
28 | |
---|
29 | /POS=<pos> |
---|
30 | Determines the position of the label. A <pos>-value of 1.0 |
---|
31 | puts the text on top of the vertical mark line, a value |
---|
32 | of 0.0 puts it on the bottom. You can specify any real |
---|
33 | value in between (or even outside but then the text will be |
---|
34 | apart from the mark line). The default value is 1.0. |
---|
35 | |
---|
36 | /SIZE=<size> |
---|
37 | Specifies the length of the vertical marker. Default value |
---|
38 | is 1.0 (full length). You get shorter markers if you set |
---|
39 | <size> smaller than 1.0. |
---|
40 | |
---|
41 | |
---|
42 | Examples: |
---|
43 | |
---|
44 | MARK/ABS 2 ^P-ONSET(2) ! marks onset time of second trace |
---|
45 | |
---|
46 | MARK 1 0. ! marks zero time of trace 1 |
---|
47 | |
---|
48 | MARK/LABEL=PKP/POS=0.0/LENGTH=.5 1 23.0 |
---|
49 | ! marks trace 1 at time 23.0 with a |
---|
50 | ! labelled ("PKP" at the bottom) bar |
---|
51 | ! of half of the standard length |
---|
52 | |
---|
53 | |
---|