how to plot in matlab from excel data

hi all, I have three column in excel I want to plot them by using matlab, how could I plot them in MATLAB ?? please help..

 Respuesta aceptada

Image Analyst
Image Analyst el 23 de Jun. de 2015
Try this:
allData = xlsread(filename);
column1 = allData(:, 1); % Extract column #1
column2 = allData(:, 2); % Extract column #2
column3 = allData(:, 3); % Extract column #3
plot(column1, 'rd-', 'LineWidth', 2, 'MarkerSize', 8);
hold on;
plot(column2, 'go-', 'LineWidth', 2, 'MarkerSize', 8);
plot(column3, 'b*-', 'LineWidth', 2, 'MarkerSize', 8);

Más respuestas (0)

Etiquetas

Preguntada:

el 23 de Jun. de 2015

Comentada:

el 24 de Jun. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by