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 696 public repositories matching this topic...
-
Updated
Jul 23, 2021 - Julia
Ankit Shah and I are trying to use Gen to support a project and would love the addition of a dirichlet distribution
Details
(This is related to JuliaPlots/Plots.jl#1706)
For example scatter(skipmissing([1.0, 2.0, missing, 1.0])) fails with Cannot convert Base.SkipMissing{Vector{Union{Missing, Float64}}} to series data for plotting.
Generally skipmissing is not required but it seems odd to see this fail.
Also I stumbled on this while trying to make a histogram, e.g.
-
Updated
Aug 5, 2021 - Julia
-
Updated
Aug 6, 2021 - Julia
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
Aug 6, 2021 - CSS
-
Updated
Mar 22, 2021 - Julia
-
Updated
Jul 15, 2021 - Makefile
-
Updated
Jul 22, 2021 - Julia
API documentation
-
Updated
Aug 21, 2020
-
Updated
Aug 3, 2021 - Julia
-
Updated
Aug 6, 2021 - Julia
I am not sure that this is documented
fh = jldopen(FileName,"r")
println(keys(fh))
close(fh)
If it actually is, where do I find it? If not, is a PR of the readme welcomed?
-
Updated
Jul 26, 2021 - Julia
-
Updated
Mar 28, 2021 - Kotlin
-
Updated
Aug 4, 2021
-
Updated
Aug 6, 2021 - Julia
-
Updated
Jun 2, 2021 - Python
-
Updated
Dec 18, 2020 - Julia
add_element!(mesh, elid, eltype, connectivity)
Add an element into the mesh. ´elid´ is the element id, ´eltype´ is the type of the element and ´connectivity´ is the connectivity of the element.
At least eltype needs to be defined more precisely. I guess it's a symbol :Seg2, :Tri3 and so on.
-
Updated
Mar 25, 2021 - Shell
-
Updated
Mar 1, 2021 - Julia
-
Updated
Jul 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

Defining
propertynamesfor 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 followingisstructtypecheck: https://github.com/JuliaLang/julia/blob/c95448fb988441