Effacer les filtres
Effacer les filtres

Plotting data from a .csv file

683 vues (au cours des 30 derniers jours)
Win
Win le 4 Déc 2013
Commenté : Anthony Sirico le 15 Juin 2020
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
  1 commentaire
Win
Win le 4 Déc 2013
There is no comma in the file. Just two columns of data.

Connectez-vous pour commenter.

Réponse acceptée

sixwwwwww
sixwwwwww le 4 Déc 2013
you can do it as follows:
Array=csvread('filename.csv');
col1 = Array(:, 1);
col2 = Array(:, 2);
plot(col1, col2)
  3 commentaires
Carolina Pulido
Carolina Pulido le 10 Juin 2020
I was able using this commands. Thanks. Reddy, check don't use titles into the columns.
Anthony Sirico
Anthony Sirico le 15 Juin 2020
Can i plot data froma CSV file with a column of Names?, i.e col1 = star names, col2 = distances.

Connectez-vous pour commenter.

Plus de réponses (1)

Muhammad Usman Saleem
Muhammad Usman Saleem le 23 Juin 2016

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by