-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
bsxfun now only visible as Base.bsxfun() #3218
Comments
|
Ah, okay then... I'll just use broadcast instead. Thanks! |
We should either reinstate |
I realized that I removed the export for |
I've reexported |
In the latest OS X binary, Julia-0.2-pre.dmg (13 hours old), the visibility of bsxfun has changed. See:
julia> a = rand(10);
julia> bsxfun(+,a,a)
ERROR: bsxfun not defined
julia> Base.bsxfun(+,a,a)
10-element Float64 Array:
1.55557
1.03718
1.84706
1.73098
0.498599
1.81505
1.16691
0.697623
0.486571
0.558718
This cannot be intended?
The text was updated successfully, but these errors were encountered: