octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #32066] textscan error


From: Ben Abbott
Subject: [Octave-bug-tracker] [bug #32066] textscan error
Date: Tue, 18 Jan 2011 19:19:56 +0000
User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10

Follow-up Comment #6, bug #32066 (project octave):

Ok. for Octave built with sources current 48 yrs ago ...


octave:10> c = textscan ('aaa.bbb', '%s', 'delimiter', '.')
c = 
{
  [1,1] = 
  {
    [1,1] = aaa
    [2,1] = bbb
  }
}
octave:11> c{1}
ans = 
{
  [1,1] = aaa
  [2,1] = bbb
}
octave:12> test textscan
PASSES 2 out of 2 tests
octave:13> test strread
PASSES 7 out of 7 tests


With Matalb


>> c = textscan ('aaa.bbb', '%s', 'delimiter', '.')

c = 

    {2x1 cell}

>> c{1}

ans = 

    'aaa'
    'bbb'
-verbatim_

I'm getting consistent results with no changeset attached. I've updated my
sources and am building again now.

I don't know what could be different. Is it possible that something has
changed in your copy of the sources?

How does mercurial respond if you type ...


hg update -C




    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?32066>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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