help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problem using fscanf


From: Doug Stewart
Subject: Re: Problem using fscanf
Date: Thu, 14 Apr 2011 09:11:19 -0400



On Thu, Apr 14, 2011 at 6:34 AM, Utherr13 <address@hidden> wrote:
I have a file which has integers in a 100x2 matrix. I want to get the second
column and put it in a variable, in which i used a for 1:100, but on the i+1
(from the second) the variable is "[](0x1)"

for i=1:100
               z = fscanf(f,'%d',1);
               a = fscanf(f,"%d",1);
               disp(a);
endfor

--

Try This

for i=1:100
               z(i) = fscanf(f,'%d',1);
               a(i) = fscanf(f,"%d",1);
               disp(a);
endfor
 

reply via email to

[Prev in Thread] Current Thread [Next in Thread]