How to load a excel file and 2D plot command!
이전 댓글 표시
Hej there! I want to load a excel file data at matlab and plot that 2d! what will be the code for that!
답변 (1개)
Youssef Khmou
2013년 3월 3일
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));
카테고리
도움말 센터 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!