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

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

[Octave-bug-tracker] [bug #38374] wrong isargout with indexed cell array


From: Rik
Subject: [Octave-bug-tracker] [bug #38374] wrong isargout with indexed cell array function handle
Date: Fri, 22 Feb 2013 20:08:19 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:19.0) Gecko/20100101 Firefox/19.0

Update of bug #38374 (project octave):

                  Status:                    None => Confirmed              

    _______________________________________________________

Follow-up Comment #1:

Interesting issue.  It affects other data structures like struct as well. 
Here is a slightly reduced code example which illustrates the same problem.


octave:1> function y = f() disp (isargout (1)); y=0; endfunction
octave:2> [x] = f();
 1
octave:3> [~] = f();
0
octave:4> s.f1 = @f;
octave:5> [x] = s.f1()
 1
x = 0
octave:6> [~] = s.f1()
 1


The problem is present on the development branch as well.


    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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