MATLAB: Plotting Table doesn’t work anymore

plottable

I alyways plotted my tables like:
T = readtable('path')
x = T(:,1)
y = T(:,2)
plot(x,y)
Why doesn't this work anymore???
it says: "Tables and timetables do not have a plot method."
But as I stated, it worked before. Something has changed?

Best Answer

x = T{:, 1}
y = T{:, 2}