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

Fix matrix multiplication in FilterRLS (#3). #4

Merged
merged 1 commit into from
Mar 9, 2018

Conversation

ashleybaer
Copy link
Contributor

Fix an issue related to matrix multiplication in FilterRLS. Specifically, since x is a 1d array, which has shape (n,), x.T is not really the transpose, and x.T has shape (n,) as well. The fix is to create a 2d array which is equivalent to x with shape (n,1), so that the x.T is really the transpose and has shape (1,n).

@matousc89 matousc89 merged commit fa8f887 into matousc89:master Mar 9, 2018
matousc89 added a commit that referenced this pull request Mar 26, 2018
This reverts commit fa8f887, reversing
changes made to 106a5bd.
@Prabal1998 Prabal1998 mentioned this pull request Jun 11, 2024
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

Successfully merging this pull request may close these issues.

2 participants