MATLAB: Plot columns of a table

columnserrorMATLABnamesplottablevariable

Best Answer

This can be done by accessing the data of the table. The following link details how you can extract data from a table:
The method below uses Dot Indexing.
>> plot(t.x, t.y);