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

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

[Octave-bug-tracker] [bug #34346] Compatibility: str2num


From: Guillaume
Subject: [Octave-bug-tracker] [bug #34346] Compatibility: str2num
Date: Tue, 20 Sep 2011 18:25:53 +0000
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/20100101 Firefox/6.0

URL:
  <http://savannah.gnu.org/bugs/?34346>

                 Summary: Compatibility: str2num
                 Project: GNU Octave
            Submitted by: gyom
            Submitted on: Tue 20 Sep 2011 18:25:52 GMT
                Category: None
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Matlab Compatibility
                  Status: None
             Assigned to: None
         Originator Name: Guillaume
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: GNU/Linux

    _______________________________________________________

Details:

There is a difference in behaviour between Octave and MATLAB when calling
str2num with a string that starts with a comma:


matlab>> str2num(',1,1')
ans =
     1     1



octave> str2num(',1,1')
ans = [](0x0)


This is actually due to difference in the interpreter

matlab>> [,1,1]
ans =
     1     1



octave> [,1,1]
parse error:
  syntax error
>>> [,1,1]
      ^







    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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