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 3,761 public repositories matching this topic...
In recent versions (can't say from exactly when), there seems to be an off-by-one error in dcc.DatePickerRange. I set max_date_allowed = datetime.today().date(), but in the calendar, yesterday is the maximum date allowed. I see it in my apps, and it is also present in the first example on the DatePickerRange documentation page.
E
Hello,
Pluto doesn't precise when there is a conflict between 2 modules namespaces. For example if I use both Plots.jl and Luxor.jl, I have this error message:
The critical explanation that it is because of a conflict be
-
Updated
Nov 12, 2021 - Julia
A common request when teaching LP101-type classes is for sensitivity reports similar to Excel solver.
Here is a suggestion from someone who teaches these types of classes:
It would be nice to support adding arrow annotations to plots, similar to pyplot.arrow (from #245).
-
Updated
Nov 24, 2021 - Jupyter Notebook
-
Updated
Nov 24, 2021 - Julia
From here: http://makie.juliaplots.org/stable/plotting_functions/heatmap.html#MakieCore.heatmap there is really no info, e.g. how to choose colormap, how to set color range.
-
Updated
Nov 26, 2021 - Julia
-
Updated
Oct 28, 2021 - 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
Nov 11, 2021 - Julia
-
Updated
Nov 28, 2021 - CSS
-
Updated
Nov 24, 2021 - TypeScript
In order to profile and optimize the current inference server architecture and best tune its hyper-parameters for various applications, it would be very useful for AlphaZero.jl to have a mode where it outputs a debugging timeline in which it is possible to easily visualize when each worker submits an inference request, when it gets an answer, and when inference concretely runs on the GPU (along wi
-
Updated
Nov 8, 2021 - Julia
-
Updated
Aug 17, 2021 - Julia
typo
In Exercises 10.1, the outer product in Take the outer product of a vector v with itself and assign it to variable cross_v should be cross product.
The basics of DiscreteSystem exists now, but the little details around it need to be finished.
-
Updated
Aug 2, 2021 - Julia
-
Updated
Jul 22, 2020 - C++
-
Updated
Nov 29, 2021 - Julia
Created by Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman
Released February 14, 2012
- Organization
- JuliaLang
- Website
- julialang.org
- Wikipedia
- Wikipedia



We have both
SymbolandIntgetindexfor aNamedTuple, but onlySymbolsetindex.Is there a reason for this? its seems like we should have both in both cases.