I'm aware that JIT requires statically shaped arrays, which prevents using np.arange in some cases. However, I seem to have stumbled across a case that does have static shapes and still raises an ...
x= np.arange(0,2*np.pi, 0.01) linea1 = ax [0].plot(x, amplitud*np.sin(faseInicial+x*2*np.pi/longOnda+faseInicial)) linea2 = ax [1].plot(x, amplitud*np.sin(faseInicial ...