Paste
Copy
Cut
Options
  • Pregunta: i need 3 series fourier exponential, trigonometry Polar with this periodic signal x (t) i want SOLUTION handwritting I DONT WANT ANY CODE SOLUTION ONLY HANDWRITTING or Maths proceeds in paper please procediment step by step with this graphic python Use this code like reference import numpy as npimport matplotlib.pyplot as plt# Definir una función

     i need 3 series fourier exponential, trigonometry Polar with this periodic signal x (t) i want SOLUTION handwritting I DONT WANT ANY CODE SOLUTION ONLY HANDWRITTING or Maths proceeds in paper please procediment step by step with this graphic python Use this code like reference import numpy as np
    import matplotlib.pyplot as plt
    # Definir una función escalonada que representa la señal
    def step_function(t, height, start, end):
     return np.where((t >= start) & (t < end), height, 0)
    # Definir bloques de escalones y espacios
    def escalones(t):
     return (
     step_function(t, 2, 4, 5) + step_function(t, 1, 3, 4) + step_function(t, 0, 2, 3) +
     step_function(t, 2, 1, 2) + step_function(t, 1, 0, 1) + step_function(t, 0, -1, 0) +
     step_function(t, 2, -2, -1) + step_function(t, 1, -3, -2) + step_function(t, 0, -4, -3) +
     step_function(t, 2, -5, -4) + step_function(t, 1, -6, -5) + step_function(t, 0, -7, -6)
     )
    # Crear un rango de t
    t = np.arange(-7, 7, 0.01)
    # Graficar la señal para un rango de t
    plt.plot(t, escalones(t), color='blue', linewidth=5)
    plt.xlabel('t')
    plt.ylabel('Amplitud')
    plt.title('Gráfico de la función escalonada')
    plt.xlim(-7, 7)
    plt.ylim(-0.5, 2.5)
    plt.grid(True)
    plt.show()
  • Chegg Logo
    Esta pregunta aún no se resolvió!
    ¿No es lo que buscas?
    Envía tu pregunta a un experto en la materia.