How can I plot data from imported tables in app designer?

I have imported an excel file into an app and have selected specific columns which i wish to plot. However, I still recievce "Error using plot Invalid data argument" on the line of the plot.
t = readtable('ForceTime.xlsx', 'Sheet', 1);
% Time
app.UITable.Data = t(42:end,1);
app.UITable.ColumnName = 'Time';
Tnum = table2array(t(42:end,1));
% Force
app.UITable2.Data = t(42:end,13);
app.UITable.ColumName = 'Force';
Fnum = table2array(t(42:end,13));
% Force-Time Plot
plot(app.UIAxes, Fnum, Tnum, 'r-');
Is there anything I am missing or need to change for the plot to work?

Answers (1)

Check both Fnum, Tnum, are their values correct? Since you're reading the Excel file, they might be character arrays.

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products

Asked:

on 8 Oct 2020

Answered:

on 9 Oct 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!