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

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

[Octave-bug-tracker] [bug #60130] Loading ranges stored in "-binary" for


From: Markus Mützel
Subject: [Octave-bug-tracker] [bug #60130] Loading ranges stored in "-binary" format fails
Date: Sat, 27 Feb 2021 07:26:52 -0500 (EST)
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36 Edg/88.0.705.81

Update of bug #60130 (project octave):

                Category:                Plotting => Interpreter            
                 Summary: hgload on dev does not reproduce a figure correctly
saved with 6.2 => Loading ranges stored in "-binary" format fails

    _______________________________________________________

Follow-up Comment #3:

Simpler steps to reproduce this bug with Octave 7.0.0:

t = 1:5;
save("t.mat", "-binary", "t")
clear t
load("t.mat")


After the last step only the first element is recovered (t=1).

Different result if the range doesn't start at 1:

>> t = 2:5;
>> save("t.mat", "-binary", "t")
>> clear t
>> load("t.mat")
>> size(t)
ans =

   0   0


Re-titling report to describe the root of the original issue.

    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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