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

julia
CameronBieganek
CameronBieganek commented Feb 21, 2020

Do we expect the following syntax to work?

julia> [Int, Float64, String, Bool] .<: Union{Int, String}
ERROR: syntax: space not allowed after ":" used for quoting

It works if you call <: as a broadcasted function:

julia> (<:).([Int, Float64, String, Bool], Union{Int, String})
4-element BitArray{1}:
 1
 0
 1
 0

Version info:

Julia Versio
PyMap
PyMap commented Apr 13, 2020

Hi all!,

Just want to share with the team some details I've been experiencing while I executed notebooks from command line using a yaml file.

First, let me show my case. I've bee parametrizing different notebooks to isolate data wranlging processes. To do it, I needed to use lists of dictionaries to specifiy keys describing my data, such as area or paths where some files were stored. As all

ChrisRackauckas
ChrisRackauckas commented Jul 17, 2018

This issue will be used to track common interface option handling. This is a constant time factor so it's not the biggest deal, but I feel that we can improve some applications by reducing common latency here.

JuMP.jl
yordiak
yordiak commented Mar 5, 2020

The last few weeks I have to switched to JuMP in order to perform my (optimization) analysis. Having a look at the documentation related to "Query Solutions" I found that you can extract very useful information regarding the optimizations results.

Thus, I was thinking that it would be a nice all of this information to be presented in a table. I understand that not everything is useful for every

Lecrapouille
Lecrapouille commented Aug 30, 2019

Hi!

I understand how conv4 works and padding works (the website doc is beginner friendly) but I do not understand all parameters of the tuple.

  • Inside Julia ? conv4 only talks about padding=k but does not explain padding=(k,n).
  • On the webiste the following setence makes me confused `if padding=k, x will be assumed pa
pfitzseb
pfitzseb commented Jan 4, 2019
julia> using PyCall, PyPlot

julia> x= 1:10
1:10

julia> y= 1:10
1:10

julia> fig, ax = subplots()
(Figure(PyObject <Figure size 640x480 with 1 Axes>), PyObject <matplotlib.axes._subplots.AxesSubplot object at 0x7f898c872208>)

julia> ax[:plot](x,y)
1-element Array{PyObject,1}:
 PyObject <matplotlib.lines.Line2D object at 0x7f898012e3c8>

help?> ax
search: ax axis axes axvspan
melonedo
melonedo commented Apr 17, 2020

In the manual/backends section, the example

unicodeplots()
plot([sin cos])

could not run, Julia 1.4.0 errors:

ERROR: MethodError: no method matching unzip(::Array{Tuple{Array{Float64,1},Array{Float64,1}},2})

You might have used a 2d row vector where a 1d column vector was required.
Note the difference between 1d column vector [1,2,3] and 2d row vector [1 2 
davidanthoff
davidanthoff commented Feb 13, 2020

Right now we can create lcov files, but it is brittle. I think we should instead just create our own solution, with text decorations it doesn't look that difficult to me. We could just directly read the .cov files that Julia creates, then we also wouldn't need to do any conversions.

philtomson
philtomson commented Jun 28, 2018

was just watching the C++ Now presentation on Julia and C++ (https://www.youtube.com/watch?v=hvnxY3NjHQ4) and noticed in the section on Cxx.jl (around 48 minutes in) that there is a special assignment syntax in the REPL ":=" for assigning C++ results back to a Julia variable.

I don't see this documented anywhere here in the docs.

yuri-la-torre-ortiz
yuri-la-torre-ortiz commented Mar 2, 2019

Hi there. It's my first day coding & I really appreciate this resource and I find it more or less easy to follow. However, I would recommend either providing a link to a glossary or simply having a glossary available for absolute beginners to explain terminology such as those referring to the various data types & examples given. Just to make the language a bit more accessible.

I'm enjoying

jessebett
jessebett commented Oct 7, 2019

The following snippets included in a test.jmd with the build command. Note I'm using """ to indicate code blocks as Github intercepts the markdown.

weave(papersdir("test.jmd"), 
  out_path=:doc,
  doctype = "md2pdf"
  )

demonstrate the various ways Figures are not working.

"""julia
using Plots

plot(1:10)
"""

This works, as expected. The plot takes up

bug

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
You can’t perform that action at this time.