Error using xlsread.
Show older comments
k=1;
N=zeros(16*k+1,150*k+1);
xlsFile='ConflictCasesC1-0418-1.xls';
case_matrix=xlsread(xlsFile,'crash_matrix_on_link');
A=case_matrix(:,[10 11]); % X1 Y1
mat_size=size(A);
Error in histagram (line 5)
case_matrix=xlsread(xlsFile,'crash_matrix_on_link');
2 Comments
KSSV
on 26 Dec 2018
is xlsread inbuilt function? Or you have the function?
Jenice Chen
on 26 Dec 2018
Answers (1)
madhan ravi
on 26 Dec 2018
doc xlsread % second argument specifes the worksheet to be read
Categories
Find more on Software Development Tools in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!