currentStep
shape is (1, 20, 1)
like in this picture, I want to insert temp value in currentStep
last position and remove first position (where 20 corresponding part)
how can I'm to put the value of temp at the end of the currentStep
To express... [:, I want to put temp value in end of here, and remove first position :]
I tried
currentStep = currentStep[:,1:,:]
currentStep[:,-1:,:] = temp
this code is remove last element I want insert temp element