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

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

[Octave-bug-tracker] [bug #42691] vectorize(<anonymous function>) fails


From: anonymous
Subject: [Octave-bug-tracker] [bug #42691] vectorize(<anonymous function>) fails while <inline> works.
Date: Wed, 4 Aug 2021 01:40:11 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0

Follow-up Comment #3, bug #42691 (project octave):

Looks like there has been some changes
Inline is obsolete.
vectorize anonymous function is possible


f = inline('x*x + y*y')
warning: inline is obsolete; use anonymous functions instead
f =

  <class inline>
g = @(x,y) x^2 + y^2
g =

@(x, y) x ^ 2 + y ^ 2
vectorize(f)
ans =

  <class inline>
vectorize(g)
warning: vectorize is unreliable; its use is strongly discouraged
ans =

@(x, y) x .^ 2 + y .^ 2


    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?42691>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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