Je veux stocker numpy tableau dans un autre tableau numpy
J'utilise np.concatenate
C'est mon code
x=np.concatenate(x,s_x)
Ce sont le type et la forme de x and s_x
Type of s_x: <class 'numpy.ndarray'>, Shape of s_x: (173,)
Type of x: <class 'numpy.ndarray'> (0,), Shape of x: (0,)
C'est l'erreur affichée
TypeError: only integer scalar arrays can be converted to a scalar index
Vous devez passer les tableaux en tant qu’itération (un tuple ou une liste), la syntaxe correcte est donc la suivante:
x=np.concatenate((x, s_x))