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

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

[Octave-bug-tracker] [bug #36889] inline with too many parentheses fails


From: Rik
Subject: [Octave-bug-tracker] [bug #36889] inline with too many parentheses fails to identify X variable
Date: Thu, 19 Jul 2012 19:40:00 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:13.0) Gecko/20100101 Firefox/13.0.1

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

                 Summary: inline with too many parentheses fails to identify X
variable
                 Project: GNU Octave
            Submitted by: rik5
            Submitted on: Thu 19 Jul 2012 12:39:59 PM PDT
                Category: Interpreter
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: None
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: GNU/Linux

    _______________________________________________________

Details:

Sample code:


fn = inline(' (x(1) - 5).^2')
fn = f() =  (x(1) - 5).^2
octave:8> fn(5)
error: `x' undefined near line 7 column 7
error: called from:
error:    at line -1, column -1


The problem can be corrected by forcing recognition of the variable 'x'.


fn = inline(' (x(1) - 5).^2', 'x')
fn = f(x) =  (x(1) - 5).^2
fn(5)
ans = 0







    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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