I am computing an expression which I know has dimensions of (200,200)
in one case hence I can initialize the array with
p = np.zeros((200,200))
what if I did not know the dimensions - is there any way to create such array without specifying the dimensions? Something like a list in java which can grow dynamically.