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 4,171 public repositories matching this topic...
Describe your context
Please provide us your environment, so we can easily reproduce the issue.
- replace the result of
pip list | grep dash
below
dash 2.0.0
dash-bootstrap-components 1.0.0
-
if frontend related, tell us your Browser, Version and OS
- OS: [e.g. iOS] Windows
- Browser [e.g. chrome, safari]: Chrome 96.0x, Edge 96.0x, Firefox
I believe the error itself is unrelated to Pluto, but it's causing the notebook to hang (working animations running). Pluto v0.19.0, Julia 1.8.0-beta3
It seems to be happening when I try to add using Profile
. The only way to get out of it is to edit the notebook manually to remove that line, then restart the notebook.
From worker 17: ERROR: LoadError: ccall method definition:
-
Updated
Jan 11, 2022 - Julia
-
Updated
Apr 23, 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:
Details
This shouldn't happen
using Plots
plot(rand(4,4), layout = 2, series_annotations = [1 2; 3 4])
Error showing value of type Plots.Plot{Plots.GRBackend}:
ERROR: type Array has no field baseshape
Stacktrace:
[1] getproperty(x::Vector{Plots.SeriesAnnotations}, f::Symbol)
@ Base ./Base.jl:42
[2] serie
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 :)
Unlike all the existing charts that graph a string (most likely) against a number, this graphs numbers on both axises. So in addition to the configuration changes needed for passing the right field to chartjs, the PR for this should also change the "preferred type" to "number" for the x axis when the chart type is scatter plot.
-
Updated
Apr 22, 2022 - TeX
-
Updated
Apr 21, 2022 - Julia
-
Updated
Apr 16, 2022 - Jupyter Notebook
-
Updated
Apr 15, 2022 - Julia
We have ZygoteRuleConfig
for this, so there should be no major technical limitations. rrule
s generally have far better UX than @adjoint
s (as anyone who has had to read a stacktrace from Zygote can attest). The ultimate end goal would be to get rid of ZygoteRules entirely.
-
Updated
Apr 19, 2022 - Julia
-
Updated
Apr 23, 2022 - CSS
-
Updated
Feb 25, 2022 - Julia
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
If I run the copy&paste examples, such as https://mtk.sciml.ai/stable/tutorials/acausal_components/ :
using ModelingToolkit, Plots, DifferentialEquations
@variables t
@connector function Pin(;name)
sts = @variables v(t)=1.0 i(t)=1.0 [connect = Flow]
ODESystem(Equation[], t, sts, []; name=name)
end
function Ground(;name)
@named g = Pin()
eqs = [g.v ~ 0]
-
Updated
Apr 23, 2022 - TypeScript
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
Aug 17, 2021 - Julia
-
Updated
Jul 22, 2020 - C++
Created by Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman
Released February 14, 2012
- Organization
- JuliaLang
- Website
- julialang.org
- Wikipedia
- Wikipedia
Currently, this is defined only for arrays, but it seems like we should have
(I just came across this when trying to implement this algorithm for random unitary matrices, which is basically
Q * Diagonal(normalize.(diag(R))
, but I discovered thatnormalize
didn't work.)