-
Notifications
You must be signed in to change notification settings - Fork 20
new mono drivingfunction handling #125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
e16d181
bcc8239
9a7b091
da37636
23c4f8e
3779e59
0615628
0c86e4d
aed7ab7
b227cbb
1a726e2
74687a7
7424338
fad204d
5eeaecc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,20 +9,38 @@ | |
wfs | ||
|
||
source | ||
mgeier marked this conversation as resolved.
Show resolved
Hide resolved
|
||
soundfigure | ||
|
||
""" | ||
from . import source as _source | ||
mgeier marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
|
||
def secondary_source_point(omega, c): | ||
"""Create a point source for use in `sfs.mono.synthesize()`.""" | ||
|
||
def secondary_source(position, _, grid): | ||
return _source.point(omega, position, grid, c) | ||
fs446 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
return secondary_source | ||
|
||
|
||
def secondary_source_line(omega, c): | ||
"""Create a line source for use in `sfs.mono.synthesize()`.""" | ||
|
||
def secondary_source(position, _, grid): | ||
return _source.line(omega, position, grid, c) | ||
mgeier marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
return secondary_source | ||
|
||
|
||
import numpy as _np | ||
mgeier marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
from . import source | ||
|
||
from . import esaedge | ||
from . import nfchoa | ||
from . import sdm | ||
from . import wfs | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You could move those 4 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ordering seems to make a difference def below the imports not. |
||
|
||
from . import source | ||
from . import soundfigure | ||
|
||
from .. import array as _array | ||
mgeier marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.