Import: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
Line 12: Line 12:
== Parameters ==
== Parameters ==
; Import
; Import
: Takes the import line as input e.g. import math
: Takes the import string as input e.g. (import math)


== Example Flowgraph ==
== Example Flowgraph ==


== Source Files ==
== Source Files ==

Revision as of 06:47, 21 January 2022

Import additional python modules into the namespace.

Examples:

from gnuradio.filter import firdes

import math,cmath

from math import pi

Parameters

Import
Takes the import string as input e.g. (import math)

Example Flowgraph

Source Files