I have an excel file with 5 columns X1/X2/X3/X4/X5 how to I plot 4 plots (X1,X2;X1,X3;X1;X4;X1;X5) on the same figure using the subplot command.
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Khalid Tewfik
el 28 de Nov. de 2016
Respondida: KSSV
el 28 de Nov. de 2016
Do I use xlsread
0 comentarios
Respuesta aceptada
KSSV
el 28 de Nov. de 2016
Yes you have to use xlsread....
data = xlsread('your excel file');
x1 = data(:,1) ;
x2 = data(:,2) ;
x3 = data(:,3) ;
x4 = data(:,4) ;
x5 = data(:,5) ;
figure
plot(x1,x5,'r') ;
%%use subplot or what ever
You can directly use plot(data(:,1),data(:,5)) , etc also
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Subplots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!