I have the following code in Python:
import numpy as np
from math import pi
t = np.linspace(-2*pi,2*pi,16300) #Creo un vector de 16300 puntos de -2*pi a 2*pi
x = np.sinc(t)
print(x)
I want to algebraically add all the points of x and add that data to the end of a new arrangement.
Therefore, the new arrangement will have 16301 points.