electricpy.math

Description

Common Mathematic Functions for Electrical Engineering.

>>> from electricpy import math as epmath

Focussed on simplifying common mathematic formulas for electrical engineering, this module exposes a few common functions like convolution, step-functions, etc.

Built to support operations similar to Numpy and Scipy, this package is designed to aid in scientific calculations.

Functions

convolve(tuple)

Filter Convolution Function.

funcrms(func, T)

Root-Mean-Square (RMS) Evaluator for Callable Functions.

gausdist(x[, mu, sigma])

Gaussian Distribution Function.

gaussian(x[, mu, sigma])

Gaussian Function.

probdensity(func, x[, x0, scale])

Probability Density Function.

rfft(arr[, dt, absolute, resample])

RFFT Function.

step(t)

Step Function [ u(t) ].