Returns the date, time and Y values of a series.
DTXY(series)
(date, time, y) = DTXY(series)
series |
- |
An interval or XY series. |
A 3 column table with the date, time and y values in each column.
(date, time, y) = DTXY(series) returns the date, time and y values as separate series.
W1: {julstr("1-1-99"), julstr("1-10-99"), julstr("4-2-99")}
W2: {todstr("12:00"), todstr("14:00"), todstr("9:35")}
W3: {1, 2, .5};setvunits("V")
W4: xydt(w1, w2, w3)
W5: dtxy(w4)
The table in W5 consists of the values:
1-01-99, 12:00, 1.0
1-10-99, 14:00, 2.0
4-02-99, 09:35, 0.5
DTXY breaks out the date, time and y values from any series and essentially performs the inverse operation of XYDT.
The plot style is set to table view.
See XYDT to produce an XY series from separate date, time and y value series.
See GETDATE and GETTIME to return just the date and time values of a series.