Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
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.

Respuestas (1)

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

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by