How to load a excel file and 2D plot command!
Mostrar comentarios más antiguos
Hej there! I want to load a excel file data at matlab and plot that 2d! what will be the code for that!
Respuestas (1)
Youssef Khmou
el 3 de Mzo. de 2013
try :
doc xlsread
Suppose you have a excel file 'Class.xlsx' with the following data :
1 4
1,5 1
In MATH command you can try :
>>num=xlsread('Class.xlsx');
>>plot(num(:,1),num(:,2));
Categorías
Más información sobre Spreadsheets en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!