MATLAB: Plotting data from a table .mat file

commandeditorhelpmatplotplottingtableuitablevariablevariables

Hello. I have a table with one column which i need to plot, when i import the data i can use the table variable 'p' in the command window, but when i use 'p' in my editor it says that p is not defined and proceeds to erase my table information.
what i need to do is plot the information from the .mat table into my editor.
Thanks for the help. Nikolaj

Best Answer

x=table2array(your table title);
read here
Related Question