julialang
Here are 226 public repositories matching this topic...
-
Updated
Jun 8, 2020 - Makefile
I was trying to use the Julia: Execute Code Cell Command, but I didn't know what was the delimiter for a cell. Finally, I found it, but It would be nice to have a comment about it :).
-
Updated
Jun 22, 2020
Improving the logo
The current logo is acyclic. I think that using small, invisible nudges along the trajectory it might possible to move it into to a cyclic orbit.
If you find that interesting, could you provide me with the code that a generated the original animation?
The error I get when I click on a URL in the documentation:
Couldn't resolve URL @ref
Configuring paths to API docs in project settings might help
External documentation for Array
I had my Clion shortcut in C:\JuliaPro-1.1.1.1 folder.
. Unfortunately, I don't know enough about the internals to update the documentation myself and make a PR, all I can tell is that the current documentation seems o
Would be really nice if julia-mode provided ability to edit docstrings using
markdown-mode. Not an elisp guy, and still a relatively new emacs user, so I'm
not sure exactly how this would work, but I thought I'd throw the suggestion out
there.
Maybe if I get some time, I'll take a look at how org-mode does it with src
blocks and see if I can duplicate that in julia-mode.
-
Updated
May 8, 2020 - Julia
Test case:
# LATex in Documenter strings
doc"""$\pi$"""
# ^^^^^^^^^^^^^^ string.quoted.other
Patch:
strings:
...
# Documenter string, tripple-quoted. Has special escaping and no string interpolation.
- match: '\bdoc"""'
push:
- meta_scope: string.quoted.other.julia
- match: (\\"|\\\\)
scope: constant.character.escape.j
Tooks me a second to figure out how how to run the tests as this is currently posted at the end of the linked documentation. Might be good to include that section in the README.md / index.md page?
https://invenia.github.io/LibPQ.jl/dev/pages/faq/#How-do-I-test-LibPQ.jl-on-my-own-computer?-1
-
Updated
Jun 4, 2020 - Julia
-
Updated
Jun 6, 2020 - Julia
Named rules
We should be able to attach names to rules, so that normalization steps (and error messages?) can be better understood by users. For example:
normalize(@term(diff(x + y, x)))
- @term(diff(x,x) + diff(y,x)) by sum rule in differentiation
- @term(one(x) + diff(y, x)) by linear rule of differentiation
- @term(1 + diff(y, x)) by multiplicative identity of a number
- @term(1 + zero(x))
-
Updated
May 26, 2020 - Julia
In this arXiv paper: https://arxiv.org/abs/1904.05663 the authors discuss corrected transmission and refraction formulas for light and curved boundaries.
Even though in this package we don't have light rays (although we may have in the future, see #178 ) it still may be worth it to implement these laws as a function similar to [law_of_refraction
](https://juliadynamics.github.io/DynamicalBil
-
Updated
Feb 8, 2020 - Julia
-
Updated
Aug 1, 2019 - Julia
Add chart types
Completed:
- sunburst http://echarts.baidu.com/examples/editor.html?c=sunburst-simple
- tree http://echarts.baidu.com/examples/editor.html?c=tree-basic
- treemap http://echarts.baidu.com/examples/editor.html?c=treemap-simple
To do:
- force-directed graph http://echarts.baidu.com/examples/editor.html?c=graph-force
- arc diagram
- maps (bubbles on map, choropleths, e
-
Updated
Mar 25, 2020 - CoffeeScript
-
Updated
Mar 14, 2018 - Julia
-
Updated
Jun 1, 2020 - Julia
-
Updated
May 5, 2020 - Julia
Here is a snippet of code
using KernelAbstractions, Test, CUDAapi
if CUDAapi.has_cuda_gpu()
using CuArrays
CuArrays.allowscalar(false)
end
@kernel function localmem_check!(a, @Const(TDIM))
T = eltype(a)
#i = @index(Global)
# Fails when waiting on event
# tile = @localmem(T, (TDIM+1, TDIM))
# succeeds
tile = @localmem(Float32, (TDIM+1, TDIM))
-
Updated
Jun 25, 2020
-
Updated
Feb 8, 2020 - Julia
-
Updated
Feb 28, 2020 - Julia
Improve this page
Add a description, image, and links to the julialang topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the julialang topic, visit your repo's landing page and select "manage topics."
From the readme, section on Package status:
I don't know how to do this, please add a link, or small tutorial. I'd like to do it.