I have 100's of column CSV data with 50000 row data. i want to convert it into matlab. can anyone help me with this.

2 次查看(过去 30 天)
I have a >100 of column data with >30000 of row data in CSV format. I tried to plot this in EXCEL but in excel it is not have any clarity and the data i have plotted is not been Zoomed in EXCEL. The data i cant put it here can anyone please help me solve this one. it is very urgent to me. i am a working proffssional.

采纳的回答

Shishir Reddy
Shishir Reddy 2023-6-12
Hi Sandeep,
As per my understanding, you want to extract the data from a .csv file and store in the MATLAB variable and then plot it.
Here’s a sample MATLAB code to perform the same.
%store the table in data
data = readmatrix('data.csv');
[r, c] = size(data);
%Setup figure
figure;
hold on;
for i = 1:c
plot(data(:, i))
end
%labels and legends can also be added
hold off;
In every iteration of the loop, we get one plot. Therefore, in total we get ‘c’ plots where c is the number of columns in the excel sheet.
For further reference, please refer these links to know more about ‘readmatrix’ and ‘plot’ functions.
I hope this helps resolving the issue.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Data Import from MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by