Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 618 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 618 Bytes

Signal Processing

Description

Developed a script in MATLAB to perform numerical integration of any given signal using Trapezoidal and Simpson's rule

Algorithms

Functions implemented:

  • f(t) = (heaviside(t) - heaviside(t-2))^2

    • lower_limit = -2
    • upper_limit = 4
  • f(t) = (heaviside(t)- 2.heaviside(t-1) + heaviside(t-2))^2

    • lower_limit = -2
    • upper_limit = 4
  • f(t) = (2.heaviside(t) - 2.heaviside(t-1))^2

    • lower_limit = -2
    • upper_limit = 4