Skip to content
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

Possible bug on bss_eval_global #34

Open
tensorfreitas opened this issue May 15, 2019 · 0 comments
Open

Possible bug on bss_eval_global #34

tensorfreitas opened this issue May 15, 2019 · 0 comments

Comments

@tensorfreitas
Copy link

Hi,

First of thanks for sharing the code and all the insights. I was playing around with your code and noticed a possible issue on eval.py, more specifically on bss_eval_global.

When debugging in this function I noticed that when you define gnsdr = gsir = gsar = np.zeros(2), you are linking all those variables to the same array. Therefore, every time gnsdr is changed, gsir and gsar are also changed accordingly. I suppose this is not what was intended, and correcting it to

gnsdr = np.zeros(2)
gsir = np.zeros(2)
gsar = np.zeros(2)

Would solve this problem.

Best Regards

@tensorfreitas tensorfreitas changed the title Possivle bug on bss_eval_global Possible bug on bss_eval_global May 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant