Plotting graph from the data of a csv file
Show older comments
Hi, I am using MATLAB R2016a. I have got into a situation where I have to parse through a csv file and draw a plot using them. I am using the following code for that. close all; file = 'test.csv';
Array = csvread(file); col1 = Array(:, 1); col2 = Array(:, 2); plot(col1, col2)
There are total 6 columns in the csv file. I am getting the following errors.
Error using dlmread (line 147) Mismatch between file and format string. Trouble reading 'Numeric' field from file (row number 1, field number 1) ==> /in X,/in Y,/z X,/z Y,/out X,/out Y\n
Error in csvread (line 48) m=dlmread(filename, ',', r, c);
Error in untitled (line 4) Array = csvread(file);
Can anyone suggest me a solution? Thanks in advance.
Regards
Saikat Chatterjee
1 Comment
Nithya Ravi
on 7 May 2020
How to merge the two arrays [col1 col2] into a single variable to perform mean?
Accepted Answer
More Answers (0)
Categories
Find more on String Parsing in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!