[julia-users] Re: Julia and notepad++

2016-02-27 Thread KK Sasa
Hi Massimo, What are the steps to install it? I cannot make notepad++ recognize it... Thanks! Best, Keith Massimo Corinaldesi於 2015年6月5日星期五 UTC+8上午1時26分56秒寫道: > > Starting from "Notepad++_2_Julia.ahk" and "Julia_Notepad++.xml" i have > written a modified version of autohotkey script and a ne

[julia-users] Re: 0.3.0 Release Candidate 4 released

2014-08-14 Thread KK Sasa
A very basic question: How to update without losing packages? Just re-install?

Re: [julia-users] function like read.clipboard?

2014-08-10 Thread KK Sasa
I have tried this. The clipboard is more basic than Xclipboard. If, for example, I copy a data matrix from excel, julia should have one function to store the same data matrix. Maybe I should write a script on my own all the time?

[julia-users] function like read.clipboard?

2014-08-09 Thread KK Sasa
Hi all, Are there functions like R's functions "read.clipboard", "read.clipboard.csv", or "read.clipboard.tab"? I noted there is a similar function "XClipboard.jl", but it seems not working on my Julia 0.3.0rc2... Thanks.

[julia-users] turn off warnings?

2014-08-06 Thread KK Sasa
How to turn off warnings that I know, e.g., `Warning: redefining constant x`. It is somewhat nagging when I am repeatedly testing my code. Thanks!

Re: [julia-users] How can Julia find JAGS?

2014-08-02 Thread KK Sasa
Got it. Thank you. JAGS' command "exit" can go back to Julia REPL. Jameson於 2014年8月3日星期日UTC+8下午2時01分49秒寫道: > > disclaimer: I know *nothing* about JAGS > > if you exit the JAGS terminal, it should drop back to the Julia REPL > console > > if you want deeper integration, you may want to see what J

Re: [julia-users] How can Julia find JAGS?

2014-08-02 Thread KK Sasa
s.bat sets a few environment > variables you would probably need to duplicate if you decide to go this > route (e.g. ENV["VAR"] = "VALUE") > > > On Sun, Aug 3, 2014 at 1:18 AM, KK Sasa > > wrote: > >> Hi Jameson, >> >> 1) run(`cmd jags

Re: [julia-users] How can Julia find JAGS?

2014-08-02 Thread KK Sasa
Hi Jameson, 1) run(`cmd jags`) lets Julia go into command prompt, and then input jags will go into JAGS mode. Can it come back to Julia again? 2) run(`jags-terminal`) seems find JAGS but fails to load JAGS' modules, it says "module could not be found". Any suggestions? Thank you. Jameson於 20

[julia-users] How can Julia find JAGS?

2014-08-02 Thread KK Sasa
When the JAGS had been installed and added a path "C:\Program Files\JAGS\JAGS-3.4.0\x64\bin" to system variable on WIndows 7 x64, I turn Julia's REPL to shell mode and then command run(`jags`). But, it return error like "Error: could not spawn `jags`: no such file or directory (ENOENT)". I h

Re: [julia-users] How to run a DOS command?

2014-07-31 Thread KK Sasa
It should be more helpful. :) John Myles White於 2014年8月1日星期五UTC+8下午12時13分29秒寫道: > > Maybe we should put a quoted backtick in that sentence right after the > word backtick first occurs? > > — John > > >

Re: [julia-users] How to run a DOS command?

2014-07-31 Thread KK Sasa
Thanks for pointing out this. My English is not good, so I didn't know this word backticks and where it is on the keyboard. John Myles White於 2014年8月1日星期五UTC+8下午12時05分03秒寫道: > > The very first sentence of the section you referenced is the following: > > "Julia borrows backtick notation for com

Re: [julia-users] How to run a DOS command?

2014-07-31 Thread KK Sasa
Thank you, John. The problem is that I use「'」 rather than 「`」, maybe the document should indicate this clearly. John Myles White於 2014年8月1日星期五UTC+8上午11時55分33秒寫道: > > run(`XXX.bat`) > > — John > > On Jul 31, 2014, at 8:54 PM, KK Sasa > > wrote: > >

[julia-users] How to run a DOS command?

2014-07-31 Thread KK Sasa
Is there command like R's command 「system」 system("XXX.bat") or Matlab's 「dos」in Julia? dos('XXX.bat','-echo'); I have checked http://julia.readthedocs.org/en/latest/manual/running-external-programs/, but still don't understand how to call DOS. Thanks.