I have a vector y
with size, for example, (1,64). I create a vector in python as follows:
vec = np.pi * np.sqrt(-1) * range(len(y))
I get the output values of the vector vec
are all nan
or the majority of them are nan
.
What i'm trying to accomplish with range(len(y))
in the above code, is to create a vector including 0, 2, 3, ... with the length of y
.
How can I solve that issue, please?