Results 11 comments of Sascha Spors

Thanks for the suggestion! I tried with CoolTerm connected to the `Bluetooth-Incoming-Port` with its default settings (Baudrate etc.). I couldn't see any data coming through the port :-(

There is no other port besides the BT port. Perhaps this is due to the FTDI driver issue mentioned above?I tried it on a different computer with OS X 10.x...

I was able to get the BT connection running under BigSur by - Allowing the terminal to access BT in the Security Settings - Modifying the code related to the...

I came across the same problem. A quick and dirty solution was to filter out the Nan scores: ``` def get_best_models(tuner, num_models=1): best_trials = tuner.oracle.get_best_trials(num_models) models = [tuner.load_model(trial) for trial...

One of the benefits of inner1d was parallel processing. This might not be the case for the replacements.

Since the filter is specific to 2.5-dimensional synthesis I would expect 25D in the function name.

`get_wfs_25d_fir_prefilter` would be in line with the naming scheme of the driving functions we used so far.

The function `sfs.plot.soundfield()` plots the real value of a complex field. It is hence useful in the context of frequency-domain simulations. But I also used it for other fields (e.g....

I have fixed the issue regarding the gap and the region of active secondary sources: ``` import numpy as np import sfs import matplotlib.pyplot as plt xs = [5, 0,...

> > I see two options: > > ```python > > import math > > Nc = math.ceil(2 * k * max(r) * alpha/np.pi) > > ``` > > >...