EttusResearch / gr-doa

Direction-of-Arrival (DoA) Demo for GNU Radio (OOT) with the USRP™ X-Series and TwinRX™
GNU General Public License v3.0
102 stars 52 forks source link

Fix ValueError in oct2py calls #20

Open AsriFox opened 1 month ago

AsriFox commented 1 month ago

When calling Octave functions through oct2py, by default only the first output value (ans) is returned. To return more than one value, the nout optional argument must be set, e.g. nout=3 for a 3-element tuple.

These changes should allow unit tests to pass.

AsriFox commented 1 month ago

Fixes this for newer versions of oct2py