PINE LIBRARY

MathGaussFunction

Library "MathGaussFunction"
Implements multiple gauss methods.

f_1d(point_x, sigma) 1-D Gaussian function.
Parameters:
  • point_x: float, x value.
  • sigma: float, sigma value, default=1.0.

Returns: float, function's value at point_x.

f_2d(point_x, point_y, sigma) 2-D Gaussian function.
Parameters:
  • point_x: float, x value.
  • point_y: float, y value.
  • sigma: float, sigma value, default=1.0.

Returns: float, function's value at (point_x, point_y).

kernel_1d(size, sigma) 1-D Gaussian kernel.
Parameters:
  • size: int, Kernel size (should be odd), [3, 101].
  • sigma: float, sigma value, default=1.0.

Returns: float array, Returns 1-D Gaussian kernel of the specified size.

kernel_2d(size, sigma) 2-D Gaussian kernel.
Parameters:
  • size: int, Kernel size (should be odd), [3, 101].
  • sigma: float, sigma value, default=1.0.

Returns: float array, Returns 2-D Gaussian kernel of the specified size.
MATH

Biblioteca Pine

Siguiendo fielmente el espíritu TradingView, el autor ha publicado este código Pine como una biblioteca de código abierto, permitiendo que otros programadores de Pine en nuestra comunidad lo utilicen de nuevo. ¡Olé por el autor! Puede utilizar esta biblioteca de forma privada o en otras publicaciones de código abierto, pero tenga en cuenta que la reutilización de este código en una publicación se rige por las Normas internas.

Exención de responsabilidad