I used Julia’s repeat for the first part, but the reshape part is driving me crazy. I tried many combinations of reshape, vcat, reduce(vcat… and so on and I never ever had the wanted result.
I’m quite ashamed and I can’t end up pushing into empty arrays as usual when I’m stuck because I have a great need for performance as this block of code will run gazillions of times.
Since you’re not in Python anymore [sigh of relief] you can also just preallocate a matrix with the correct size and fill its coefficients within a for loop. Usually it is more explicit and not necessarily slower than the vectorized approach.
Thanks everyone.
Your answers made me realize that the Python code was too complex for this simple task, and as I was looking for a 1:1 algorithm I lost myself.
You’re totally right, this part of the Python code (not written by me) is quite ugly.
But for now I’m in the 1:1 part of the translation as I want to run an operational code ASAP. I’ll optimize later.
If you’re optimizing later, why are you worried about the performance of this piece of the computation? You’re almost certainly going to eliminate it completely later.
(There’s a good chance that line-by-line translation of Pythonic code will get slower in Julia. Don’t be discouraged by this — idiomatic Julia code has lots of ways to speed things up that are unavailable in Python, because loops in Julia are fast. A line-by-line translation may be useful for correctness checking, but eventually the code is likely to look completely different since you don’t have to bend over backwards to “vectorize” everything.)