You define the time variable yourself. You know that you sample at 9 kHz so you know that between each sample there is 1/8000 seconds. So;
time = 0:1/Fs:16000/Fs-1/Fs;
Then to plot you do;
plot(time,data)
If you already measured the time as well, just use that variable.