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,735 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
When passing a model as argument to solve a problem in-place, it would be handy to know if a model is empty or not, thus to implement MOI.is_empty for JuMP models or define a JuMP function if a different meaning must be attached.
Itt could make sense to have:
MOI.is_empty(model)
<=> model is empty (some optimizer attributes can have been set)
JuMP.is_empty(model)
<=> model is empty and no
It would be nice to support adding arrow annotations to plots, similar to pyplot.arrow
(from #245).
-
Updated
Nov 4, 2021 - Jupyter Notebook
-
Updated
Nov 15, 2021 - Julia
-
Updated
Nov 21, 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
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 19, 2021 - CSS
-
Updated
Nov 21, 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 21, 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
Symbol
andInt
getindex
for aNamedTuple
, but onlySymbol
setindex
.Is there a reason for this? its seems like we should have both in both cases.