The Wayback Machine - https://web.archive.org/web/20210823091747/https://github.com/topics/julia
Skip to content
#

The Julia Language

julia logo

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,438 public repositories matching this topic...

julia
aramirezreyes
aramirezreyes commented Aug 9, 2021

Looking for ";" in the help REPL shows a docstring that describes its use as the end of statement and as output suppressor but it doesn't mention its use as a separator between positional and keyword arguments in function definitions and calls, nor about its role for building arrays or about its usage to access the shell REPL mode.
This is the same in v1.6 and master (August 8 2021).

hel
dash
Pluto.jl
JuMP.jl
odow
odow commented Aug 11, 2021

The same user as #2662 asked for ways to solve a collection of problems over a set of parameters. We don't have a good way of doing this in JuMP (we have @NLparameter, but not @parameter), but it could be scripted using the modification API (or even just rebuilding the problem).

We should write a tutorial with the different approaches. Here's their suggestion:

![image](https://user-image

knuesel
knuesel commented Jul 22, 2021

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

Created by Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman

Released February 14, 2012

Organization
JuliaLang
Website
julialang.org
Wikipedia
Wikipedia

Related Topics

language