The Julia Language
Julia is a high-level dynamic programming language designed to address the needs of high-performance numerical analysis and computational science. It provides a sophisticated compiler, distributed parallel execution, numerical accuracy, and an extensive mathematical function library.
Here are 2,494 public repositories matching this topic...
-
Updated
Aug 16, 2020 - Julia
We could add a method that does not require Float64 and does the conversion to:
https://github.com/jump-dev/JuMP.jl/blob/b92ba1b7d7208f3ac06417527780528d93cfb574/src/callbacks.jl#L59
See https://discourse.julialang.org/t/how-to-define-a-heuristic-callback-using-jump/43322/2
-
Updated
Aug 19, 2020 - Jupyter Notebook
Only relevant to pyplot with most recent matplotlib
plot(1:10)
sys:1: MatplotlibDeprecationWarning: Passing the fontdict parameter of _set_ticklabels() positionally is deprecated since Matplotlib 3.3; the parameter will become keyword-only two minor releases later.
sys:1: UserWarning: FixedFormatter should only be used together with FixedLocator
sys:1: MatplotlibDeprecationWarning: Case-i
-
Updated
Jun 29, 2020 - Julia
-
Updated
Aug 3, 2020 - Julia
-
Updated
Aug 19, 2020 - TypeScript
-
Updated
Aug 20, 2020 - Julia
I found that function mod2pi is not implemented yet, but mod works. Is there any list of implemented functions? Minimal working example is:
using Zygote
# This is working
gradient(x -> mod(x, 2pi), 1.)
# This is not
gradient(x -> mod2pi(x), 1.)
-
Updated
Aug 19, 2020 - Jupyter Notebook
-
Updated
Mar 2, 2020 - Julia
-
Updated
Aug 9, 2020 - Julia
Hi there,
I use Jupyter (specifically Jupyter Lab) to make project reports every 3 months or so. As a result, the reports get quite large. I structure them in detail with markdown headers and sections. Jupyter provides an excellent extension, called simply "table of contents" that does two things:
- Enables a table of contents sidebar that is clickable and brings you to the markdown hea
-
Updated
Aug 17, 2020 - TypeScript
So that other people (like me) can help development of the interactive API. At the moment it is something alien that I Can just use through example. This is not the proper way forward...
(finally found Mouse in interaction/iodevices.jl...)
-
Updated
Jul 27, 2020 - Makefile
-
Updated
Jul 22, 2020 - C++
-
Updated
Aug 19, 2020 - Julia
-
Updated
Aug 20, 2020 - Julia
It would be handy for all edge operations to have both f(g, e) and f(g, src(e), dst(e)) defined by default on abstract graphs
Hi there. It's my first day coding & I really appreciate this resource and I find it more or less easy to follow. However, I would recommend either providing a link to a glossary or simply having a glossary available for absolute beginners to explain terminology such as those referring to the various data types & examples given. Just to make the language a bit more accessible.
I'm enjoying
typo
Created by Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman
Released February 14, 2012
- Organization
- JuliaLang
- Website
- julialang.org
- Wikipedia
- Wikipedia


I just noticed the
Randomstdlib has anUnsafeViewtype for filling arrays. With the new layout optimizations, this should no longer be necessary. We should try using the normal SubArray type for this. If it's still too slow/complex, then at least the type can be made safe by holding the underlying array directly instead of aPtr.