Unable to find or open table data
Mostra commenti meno recenti
I have a table that was imported into the work space, and I am unsure on why it is unable to be located. The table in the workspace is named "LabData3". Two of the colunms in this table are named "Qgpm" and "hpft".
Tab = readtable('LabData3');
scatter(Tab,'Qgpm','hpft');
Error using readtable (line 498)
Unable to find or open 'LabData3'. Check the path and filename or file permissions.
Error in Lab3 (line 1)
Tab = readtable('LabData3');
3 Commenti
Walter Roberson
il 8 Mar 2022
Are you saying that LabData3 is already in the workspace? If so you would not use readtable() on it.
Luke Butcher
il 8 Mar 2022
Star Strider
il 8 Mar 2022
Risposta accettata
Più risposte (1)
Peter Perkins
il 9 Mar 2022
0 voti
Only in (I think) the most recent version of MATLAB will
scatter(Tab,'Qgpm','hpft');
In earlier versions, use scatter(Tab.Qgpm,Tab.hpft);
1 Commento
Luke Butcher
il 11 Mar 2022
Categorie
Scopri di più su Tables in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!