I understand that in simulation, inverse transform sampling means that I first generate a uniformly distributed value $u$ and then use $F^{-1}(u)$ to get a value according to the distribution $F$. If I need a sample size of 1000, then I repeat the above process 1000 times (i.e., 1000 iterations). I am wondering whether the following approach works.
Instead of generating uniformly distributed random values in the 1000 iterations, I get 1000 values equally spaced between 0 and 1, i.e., $0,0.001,0.002,...,0.999,1$ and use each of these values in each iteration. In this case, I get the most "representative" uniformly distributed value and the corresponding $F^{-1}()$ of these values has a histogram that perfectly matches the theoretical PDF. Is this method valid? If not, what are the issues? Thanks.