I would like to figure out how i can create this array without putting every single value in per hand.
Is there a way how i can use the information that every value is the doubled value of its predecessor, except for the first?
My Code is as follows:
import numpy as np
Matrix = np.array([1,2,4,8,16,32,64,128,256]).reshape (3,3)
print(Matrix)