I have this function in Matlab
cn = reshape(repmat(sn, n_rep, 1), 1,[]);
In Python I have the following code:
import numpy as np
from numpy.random import randint
M=2
N=2*10**8 ### valor de Dados
n_rep = 3 ## numero de repetições
sn = ran...
asked by
07.10.2017 / 00:27