View Single Post
  #13  
Old July 29th, 2008, 03:19 PM
hunter hunter is offline
Newbie
 
Join Date: Jul 2008
Posts: 11
Country:
Thanks: 6
Thanked 0 Times in 0 Posts
hunter is on a distinguished road
Default New Question

The code runs fine but only for the intial and second time through. Do you have any idea why this may be?? Code i inserted to run loop follows:

L=128
f100=
'C:\MATLAB701\work\Points_CloudsL1';
for idx =1 : 10
if idx==1
%load the spreadsheet
flin='C:\Documents and Settings\prhill\My Documents\Hill\Point_Clouds\20_1_00.asc';
flout=[f100,num2str(101)];
else
flin=flout
flout=[f100,num2str(100+idx)];
end

points=load(flin);
Reply With Quote