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

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

[Octave-bug-tracker] [bug #62682] ezplot() gets different results betwee


From: Markus Mützel
Subject: [Octave-bug-tracker] [bug #62682] ezplot() gets different results between inline function and anonymous function
Date: Thu, 30 Jun 2022 01:46:46 -0400 (EDT)

Follow-up Comment #12, bug #62682 (project octave):

Matrix operations and element-wise operations involving scalars "incidentally"
have the same result. But in general, those operations aren't the same.
E.g.:


>> A = [1 2; 3 4];
>> A*A
ans =

    7   10
   15   22

>> A.*A
ans =

    1    4
    9   16



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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