package scipy

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val get_py : string -> Py.Object.t

Get an attribute of this module as a Py.Object.t. This is useful to pass a Python function to another function.

val convolve_z : ?overwrite_x:Py.Object.t -> x:Py.Object.t -> omega_real:Py.Object.t -> omega_imag:Py.Object.t -> unit -> Py.Object.t

y = convolve_z(x,omega_real,omega_imag,overwrite_x)

Wrapper for ``convolve_z``.

Parameters ---------- x : input rank-1 array('d') with bounds (n) omega_real : input rank-1 array('d') with bounds (n) omega_imag : input rank-1 array('d') with bounds (n)

Other Parameters ---------------- overwrite_x : input int, optional Default: 0

Returns ------- y : rank-1 array('d') with bounds (n) and x storage