Import: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 11: | Line 11: | ||
== Parameters == | == Parameters == | ||
; Import | |||
: Takes the import line as input e.g. import math | |||
== Example Flowgraph == | == Example Flowgraph == | ||
== Source Files == | == Source Files == |
Revision as of 06:46, 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 line as input e.g. import math