Plotting data from a .csv file

941 ビュー (過去 30 日間)
Win
Win 2013 年 12 月 4 日
コメント済み: Anthony Sirico 2020 年 6 月 15 日
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 件のコメント
Win
Win 2013 年 12 月 4 日
There is no comma in the file. Just two columns of data.

サインインしてコメントする。

採用された回答

sixwwwwww
sixwwwwww 2013 年 12 月 4 日
you can do it as follows:
Array=csvread('filename.csv');
col1 = Array(:, 1);
col2 = Array(:, 2);
plot(col1, col2)
  3 件のコメント
Carolina Pulido
Carolina Pulido 2020 年 6 月 10 日
I was able using this commands. Thanks. Reddy, check don't use titles into the columns.
Anthony Sirico
Anthony Sirico 2020 年 6 月 15 日
Can i plot data froma CSV file with a column of Names?, i.e col1 = star names, col2 = distances.

サインインしてコメントする。

その他の回答 (1 件)

Muhammad Usman Saleem
Muhammad Usman Saleem 2016 年 6 月 23 日

カテゴリ

Help Center および File ExchangeData Import and Analysis についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by