Plotting data from a .csv file
989 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi I need to plot a graph in MATLAB using data from a .csv file which has 2 columns of data, column A and column B. Can you please tell me the codes to use to do that? Thanks.
Winee
Risposta accettata
sixwwwwww
il 4 Dic 2013
you can do it as follows:
Array=csvread('filename.csv');
col1 = Array(:, 1);
col2 = Array(:, 2);
plot(col1, col2)
3 Commenti
Carolina Pulido
il 10 Giu 2020
I was able using this commands. Thanks. Reddy, check don't use titles into the columns.
Anthony Sirico
il 15 Giu 2020
Can i plot data froma CSV file with a column of Names?, i.e col1 = star names, col2 = distances.
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Data Import and Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!