i have to prepare gui using guide in which i have 200 rows and 5 columns in csv file.first column is x-axis data and rest of 4 columns are y-axis data.how to plot these 4 columns data w.r.t x-axis and all plots should

1 次查看(过去 30 天)
i have to prepare gui using guide in which i have 200 rows and 5 columns in csv file.first column is x-axis data and rest of 4 columns are y-axis data.how to plot these 4 columns data w.r.t x-axis and all plots should be in same figure.i have imported csv data into gui using csvread , but how to proceed am not understanding.i am very new to matlab.please guide me.

回答(1 个)

Walter Roberson
Walter Roberson 2012-12-11
YourData = csvread('YourFile.csv');
X = YourData(:,1);
Y = YourData(:,2:5);
plot(X, Y);

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by