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,901 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
Jan 11, 2022 - 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:
-
Updated
Jan 14, 2022 - Julia
It would be nice to support adding arrow annotations to plots, similar to pyplot.arrow (from #245).
-
Updated
Jan 9, 2022 - Jupyter Notebook
Compare https://github.com/JuliaPlots/Makie.jl/blob/master/src/stats/boxplot.jl#L31-L64 with http://makie.juliaplots.org/stable/plotting_functions/boxplot.html#Makie.boxplot
This should be a good beginner issue :)
-
Updated
Jan 10, 2022 - Julia
-
Updated
Jan 13, 2022 - Julia
-
Updated
Oct 28, 2021 - Julia
-
Updated
Jan 11, 2022 - 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
Jan 13, 2022 - CSS
-
Updated
Jan 14, 2022 - 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
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 17, 2021 - Julia
-
Updated
Jul 22, 2020 - C++
-
Updated
Aug 2, 2021 - 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
How to Attract non code contributions to your Open Source project
January 19, 2022 • Virtual



i was in need to define my own type <:
AbstractSparseMatrixCSC(basically i needed the indexing behaviour of aSparseMatrixCSC, but with another storage type). The (not written in the docs) interface for anAbstractSparseMatrixCSCrequires:getcolptrrowvalsnonzerossizethe problem is that an internal function
_checkbuffersis required, mainly for the display machin