You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In current master, I can't seem to get Buffer.plot to choose its maxval properly:
// This works fine:
((0..31) / 4).plot(maxval:nil)
// This does not respect the request to find its own maxval
q = Buffer.alloc(s, 32)
q.setn(0, (0..31) / 4)
q.plot(maxval:nil)