-
Notifications
You must be signed in to change notification settings - Fork 46
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
rldvec relies on being given correctly-sized but padded vectors ndarray #460
Comments
@mohawk2 I'm not sure I understand the question... I looked over the Maybe you're referring to the (hack-y)
Probably not.
Comparing the type signature of |
Thank you for the quick reply! I think the same logic applies wherever there is a |
The linked commit executes this, so closing. Thank you for the help! |
I was just re-reading the code for
rldvec
, and its Pars are:indx a(N); b(M,N); [o]c(M,N)
.@moocow-the-bovine The output 2nd dim of
N
looks to me like it relies on the inputs having the right size, including a number of zeroes on the end ofa
. Am I missing something? If I'm right, then I think the outputN
needs to be another dim (perhapsN2
), and it might as well be calculated by aRedoDimsCode
rather than with Perl code.The text was updated successfully, but these errors were encountered: