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
This code fails for count = 1, due to OT not being a matrix anymore.
Possible solution: if (count == 1) { OT <- matrix(EP[1:count, ], nrow=1, ncol=2) } else { OT <- EP[1:count, ] }
psymonitor/R/locate.R
Lines 48 to 49 in 153ea33
This code fails for count = 1, due to OT not being a matrix anymore.
Possible solution:
if (count == 1) {OT <- matrix(EP[1:count, ], nrow=1, ncol=2)} else {OT <- EP[1:count, ]}