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,359 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
Reproduce: add using Git_jll
cell to the notebook, execute it. The package doesn't get added, and errors appear in the console:
┌ Warning: PlutoPkg: Failed to add/remove packages! Resetting package environment...
│ PLUTO_VERSION = v"0.15.1"
│ VERSION = v"1.6.1"
│ old_packages =
│ 1-element Vector{String}:
│ "Git_jll"
│ new_packages =
│ 1-element Vector{String}:
│
-
Updated
Jul 5, 2021 - Julia
The solution_summary
code doesn't handle infeasible solutions correctly:
https://github.com/jump-dev/JuMP.jl/blob/6901e8f98bf24242a141e003e42530fa90f33c3c/src/print.jl#L463-L482
objective_value
and solve_time
should probably be wrapped in _try_get
, and default fallbacks provided for things like solver_name
and raw_status
.
Details
Backends
This bug occurs on ( insert x
below )
Backend | yes | no | untested |
---|---|---|---|
gr (default) | x | ||
pyplot | x | ||
plotly | x | ||
plotlyjs | x | ||
pgfplotsx | x | ||
inspectdr | x |
-
Updated
Jul 23, 2021 - Jupyter Notebook
-
Updated
Jul 11, 2021 - Julia
-
Updated
Jul 21, 2021 - Julia
-
Updated
Jul 24, 2021 - Julia
-
Updated
Jul 9, 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
Jul 25, 2021 - TypeScript
The following code gives a segfault with Makie 0.15 and Julia 1.6.1 (also reproduced with 1.7-beta2):
using Makie
xs = range(150, 160, length=100)
ys = range(7, 9, length=100)
points = [(x, y, 0.0) for x in xs for y in ys]
x, y, z = map(i -> getindex.(points, i), 1:3)
flags = (153 .< x .< 153.5) .& (7 .< y .< 7.3)
surface(y[flags], x[flags], z[flags]);
Starting Julia
-
Updated
Jul 24, 2021 - CSS
-
Updated
Jul 21, 2021 - Julia
-
Updated
Apr 1, 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
.
-
Updated
Jul 22, 2020 - C++
-
Updated
Jun 17, 2021 - Julia
-
Updated
Jul 22, 2021 - Julia
-
Updated
Mar 22, 2021 - Julia
Created by Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman
Released February 14, 2012
- Organization
- JuliaLang
- Website
- julialang.org
- Wikipedia
- Wikipedia
Defining
propertynames
for non-struct types is not enough to enable tab completion in the REPL, as is being done withCptr
(analytech-solutions/CBinding.jl#77) and eventually withPtr
(JuliaInterop/Clang.jl#316). It appears to be prevented because of the followingisstructtype
check: https://github.com/JuliaLang/julia/blob/c95448fb988441