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
There seems to a problem with the substraction of a Datetime object from an Array{Datetime}:
t1 =datetime(2000, 11, 1)
t_array = [datetime(2001, 11, 1) :month(7) :datetime(2005, 11, 1)]
## --- works as expected
t_array[1] - t1
t1 .- t_array
t1 - t_array
## --- however:
t_array - t1
## ERROR: i not defined## in - at C:\Users\scheidan\.julia\Datetime\src\Datetime.jl:358## WARNING: backtraces on your platform are often misleading or partially incorrect
t_array .- t1
## ERROR: i not defined## in .- at operators.jl:83## WARNING: backtraces on your platform are often misleading or partially incorrect
I'm using Julia 0.2.0-RC4, 64bit on Windows 7.
Hope that helps.
The text was updated successfully, but these errors were encountered:
Sorry for the delay on this. Yeah, there must be some kind of bug. I have a few reworks in progress, so I'll try to work it into those branches to push.
There seems to a problem with the substraction of a
Datetime
object from anArray{Datetime}
:I'm using Julia 0.2.0-RC4, 64bit on Windows 7.
Hope that helps.
The text was updated successfully, but these errors were encountered: