Re: [julia-users] [ANN]: Deoplete-Julia: Fairly decent syntax completions in Neovim

2016-09-25 Thread El suisse
Cool!!! Thanks for sharing!!! 2016-09-25 12:15 GMT-03:00 Lyndon White : > Ok, I've had this kicking around for months. > It has taken me until now to get around to actually packaging it up so > that anyone could use it. > > Check it out:

Re: [julia-users] Re: Cell array of images like Matlab

2016-09-09 Thread El suisse
julia version??? julia>versioninfo() ​ 2016-09-09 21:19 GMT-03:00 Drew Mahedy : > In Julia, if I try and concatenate two images together of type: > > Array{ColorTypes.Gray{FixedPointNumbers.UFixed{UInt8,8}},2} via > > cat( 3, img, img ), > > I get the following error: > >

Re: [julia-users] b images

2016-09-06 Thread El suisse
yeah sorry for the noise read fast your question . If you want a Binary Image given a thresold value: img_bin = img_gray .<= value ​ 2016-09-06 13:12 GMT-03:00 Emerson Vitor Castelani <emersonvi...@gmail.com>: > Hi El suisse ! Thank you for your help. I already tried that. But in

Re: [julia-users] b images

2016-09-06 Thread El suisse
I think with: img = load("path/to/your/image") img_bw = convert(Image{ColorTypes.Gray}, img) ​ 2016-09-06 9:46 GMT-03:00 Emerson Vitor Castelani : > Is there any way to convert a jpg (or png) image in b using Images.jl? > > Thanks >

Re: [julia-users] Re: ComplexPhasePortrait

2016-06-19 Thread El suisse
I write a small script for a Nonlinear systems course which calculate a phase portrait and the trayectories whith initial condition set with mouse: the dependencies are: PyPlot, scipy in your system(I use Conda.jl for install it) https://gist.github.com/elsuizo/0c32a6331935938d8ce1974804426162

Re: [julia-users] random number generation

2016-06-01 Thread El suisse
I think like this: `rand(1:14, 6)` 2016-06-01 15:24 GMT-03:00 Michela Di Lullo : > How can I do to generate 6 *different* integer random numbers between 1 > and 14? > > Thanks in advance to who will answer, > > M. > > ___ >

Re: [julia-users] Re: custom ctags for Julia

2016-04-09 Thread El suisse
s-ctags-with-git.html > It also addresses your question about one way to call ctags (which works > for me at least). > > > On 2016-04-09 04:33, El suisse wrote: > > Sorry for the noise, which it is the right way to generate the file tags? > in .julia/ ? > with the comman

Re: [julia-users] Re: custom ctags for Julia

2016-04-08 Thread El suisse
Sorry for the noise, which it is the right way to generate the file tags? in .julia/ ? with the command: `ctags -R .` 2016-03-16 10:38 GMT-03:00 Christof Stocker : > Makes sense. I don't use C-], I use the CtrlP plugin to jump around in a > project. I included the

Re: [julia-users] Hello World.jl

2015-12-03 Thread El suisse
run the script from REPL: julia>include("path/to/hello.jl") for more information about workflow: http://docs.julialang.org/en/release-0.4/manual/workflow-tips/ ​ 2015-12-03 14:30 GMT-03:00 Mark Kugel : > > > Hi, I'm just starting to work with JULIA, and I have a couple of

Re: [julia-users] Re: What's your favourite editor?

2015-09-21 Thread El suisse
Vim ☺ ​ 2015-09-21 17:54 GMT-03:00 Christoph Ortner : > I'd be grateful to hear from other emacs users regarding your workflows > for Julia development, e.g. if you want to write a Julia package what emacs > packages, setup and workflow help you to be the most

Re: [julia-users] mouse event

2015-07-21 Thread El suisse
Hi I got the following example related with this thread https://gist.github.com/elsuizo/5338605a6a5c7ab54730 but fail in https://gist.github.com/elsuizo/5338605a6a5c7ab54730#file-phase_portrait_mouse_event-jl-L114 and I do not know why This is the python code which comes:

Re: [julia-users] Passing an array element from an image to PyPlot.plot.hist()

2015-07-20 Thread El suisse
Hi i think you need to unpack the vector of frequencies _, counts = hist(vec(img_gld_gs), -1:255) PyPlot.plot(counts) 2015-07-20 14:26 GMT-03:00 Paul Wagner wagne...@gmail.com: Hello, I'm new to Julia and have been reading all the documentation I can. Using Images.jl and PyPlot, I'm trying

Re: [julia-users] Errors while trying to install Cxx Package

2015-07-10 Thread El suisse
, then something went wrong in the build. On Fri, Jul 10, 2015 at 10:40 AM, El suisse elsu...@gmail.com wrote: from the README..md Once it is built, you can run the julia executable using its full path in the directory created above (the julia directory), or, to run it from anywhere, either

Re: [julia-users] Errors while trying to install Cxx Package

2015-07-10 Thread El suisse
from the README..md Once it is built, you can run the julia executable using its full path in the directory created above (the julia directory), or, to run it from anywhere, either - add a soft link to the julia executable in the julia directory to /usr/local/bin (or any suitable

Re: [julia-users] How rotate a cube f1 to its edges are parallel to another cube (f2) ?

2015-07-06 Thread El suisse
I think with the Rodrigues formula(if I understand correctly) : https://en.wikipedia.org/wiki/Rodrigues'_rotation_formula 2015-07-05 7:24 GMT-03:00 paul analyst paul.anal...@mail.com: How rotate a cube f1 to its edges are parallel to another cube (f2) ? I have two 3 dimensional orthogonal

Re: [julia-users] Unicode underscore t invalid

2015-07-01 Thread El suisse
I got the same error with the `\_s` in 0.3.9 2015-07-01 14:02 GMT-03:00 Tim Wheeler timwheeleronl...@gmail.com: Hello Julia Users, I ran into a weird issue where unicode u+0209c, `ₜ`, is not being treated correctly. I am using Julia Version 0.3.10 on x86_64-linux-gnu. The other unicode I

Re: [julia-users] Re: best way to traverse a binary tree

2015-05-20 Thread El suisse
Hi Steven thanks for reply and your time¡¡¡ yes i use the built-in PriorityQueue, but not very well. As you mentioned I will try encoded on the fly(like the python code) Regards 2015-05-19 22:22 GMT-03:00 Steven G. Johnson stevenj@gmail.com: For this particular coding problem, I would

Re: [julia-users] Winston package problem

2015-05-20 Thread El suisse
Hi Massimo is only a warning or the plot does not appear?¿ Regards 2015-05-20 11:28 GMT-03:00 cameyo massimo.corinald...@regione.marche.it: Hi all, i have the following problem with REPL (Julia 0.3.8 - windows 7 64 bit): using Winston Warning: could not import Base.Text on Tk Can you

[julia-users] best way to traverse a binary tree

2015-05-19 Thread El suisse
Hi friends, I’m trying to make a hufmann code like this: http://rosettacode.org/wiki/Huffman_codes what I do is: http://nbviewer.ipython.org/gist/elsuizo/b91af4600e34a0463e71 but not how to do the last part: *Traverse the constructed binary tree from root to leaves assigning and accumulating

Re: [julia-users] Re: Problem with plot in Julia

2015-05-17 Thread El suisse
The following posts are related with your code: https://groups.google.com/forum/#!searchin/julia-users/$20Equivalent$20of$20MATLAB$27s$20nargout$20in$20Julia And maybe is a good idea encapsulate the convergence history in a type, like in this package:

Re: [julia-users] Help performance for loop

2014-04-17 Thread El suisse
2014-04-17 11:22 GMT-03:00 Stefan Karpinski ste...@karpinski.org: First off, try putting it inside of a function instead of in global scope: http://julia.readthedocs.org/en/latest/manual/performance-tips/#avoid-global-variables On Thu, Apr 17, 2014 at 10:15 AM, El suisse elsuiz...@gmail.com

Re: [julia-users] Help performance for loop

2014-04-17 Thread El suisse
GMT-03:00 Steven G. Johnson stevenj@gmail.com: On Thursday, April 17, 2014 11:24:44 AM UTC-4, El suisse wrote: function k_vector(s :: Array{Float64,1}, z :: Array{Float64,1}) n = length(s) k = Int64[sum(s . z[i]) for i = 2:n-1] This allocates a temporary array (to hold s . z

[julia-users] Re: Julia and Emacs shell-mode

2014-04-10 Thread El suisse
Hi, sorry for the newbie question: in https://github.com/emacs-ess/ESS/wiki/Julia Instalation (setq inferior-julia-program-name /path/to/julia/julia-release-basic) wath path is this? /path/to/julia/julia-release-basic I run Julia in Ubuntu 12.04 64bits thanks in advance El viernes,