From: Ravindra Gadde on
Hi,

I have a problem with xlsread function,when I was reading a large data Array from the excel sheet. In my Excel sheet I has a data of size 990X162. I was trying to read this data through xlsread function and store it in to a variable X.But xlsread command is just copying 23X162 of the size in to X. I have used the following commands,

%X= xlsread('Untitled 1.xls', 1, 'A1:FM990');
and I had also tried
X= xlsread('Untitled 1.xls');
From: us on
"Ravindra Gadde" <gadde.ravindra(a)gmail.com> wrote in message <hjrdm4$nv5$1(a)fred.mathworks.com>...
> Hi,
>
> I have a problem with xlsread function,when I was reading a large data Array from the excel sheet. In my Excel sheet I has a data of size 990X162. I was trying to read this data through xlsread function and store it in to a variable X.But xlsread command is just copying 23X162 of the size in to X. I have used the following commands,
>
> %X= xlsread('Untitled 1.xls', 1, 'A1:FM990');
> and I had also tried
> X= xlsread('Untitled 1.xls');

a hint:
- use the 3rd output arg and look for non-numeric and/or empty cells...

help xlsread;

us