[julia-users] Re: Problem with atom-julia-client with 0.5.0-rc2

2016-08-14 Thread Arch Call
I get about the same EOF error. I believe the authors of the package are currently updating it to be compatible with Version 5.0 of Julia. Check on the Atom - Julia forums for latest discussion on the updates...Archie On Sunday, August 14, 2016 at 6:09:30 PM UTC-4, Chris Stook wrote: > > I swi

[julia-users] Re: Juno IDE

2016-02-02 Thread Arch Call
David, I am on Windows 10 64 bit. I run Juno and LightTable as my IDE. It is a fairly good IDE, although nowhere as comprehensive as RStudio for the R language. Question #1) When LT prompts for new version just download and install. After the installation everything should be just fine. Ques

[julia-users] Re: (Yet another) tutorial

2015-11-05 Thread Arch Call
This has been extremely helpful to me in understanding Julia. Your writing style in gradually building up each new concept with simple examples hits to the very core of Julia. Thanks again... On Thursday, November 5, 2015 at 4:47:10 AM UTC-5, Daan Huybrechs wrote: > > I have recently given a J

[julia-users] Re: META: What are the chances of moving this forum?

2015-09-09 Thread Arch Call
I like the Juno forum also but: - it looks like the Juno forum has slight moderation. Maybe some of the suggestions are from a human forcing the question into a category. (this is a guess only!) - the Google "julia-users" forum has way more activity and the subject range is far

[julia-users] Re: a floating point test for other's environments

2015-09-09 Thread Arch Call
You have made some changes to the script and I now get! The numerics tested work properly. The version you are using does not support fma. I am running 3.11 on Windows 10 with 64 bit...Arch On Wednesday, September 9, 2015 at 1:04:34 AM UTC-4, Jeffrey Sarnoff wrote: > >

[julia-users] Re: a floating point test for other's environments

2015-09-08 Thread Arch Call
I am getting fma not defined! It is probably related to line 22. On Wednesday, September 9, 2015 at 1:04:34 AM UTC-4, Jeffrey Sarnoff wrote: > > I wrote this FloatTest >

[julia-users] Re: Memory leak in function

2015-09-04 Thread Arch Call
Sorry, I meant allocation not leak. On Friday, September 4, 2015 at 9:56:48 AM UTC-4, Arch Call wrote: > > I am have difficulty in firguring out why WhyMemoryLeak() leaks memory, > and NoMemoryLeak() does not!! > They are both identical except for the line in the for loop. > >

[julia-users] Memory leak in function

2015-09-04 Thread Arch Call
I am have difficulty in firguring out why WhyMemoryLeak() leaks memory, and NoMemoryLeak() does not!! They are both identical except for the line in the for loop. It is driving me nuts! I am running Julia 3.11 and Windows 10. This happens in Juno and in the REPL. Does anyone have any ideas?

[julia-users] Re: IDE for Julia

2015-08-27 Thread Arch Call
Deb, I use Juno all the time. It works good for me on Windows 10, and Julia version 3.11 I have used R-Studio extensively in R and it is a great IDE. Juno is nowhere near as powerful, but Julia is a speed demon -- way faster than R. ...Archie On Wednesday, August 26, 2015 at 11:12:22 PM UTC

Re: [julia-users] Juno couldn't connect Julia on Windows 10

2015-07-31 Thread Arch Call
I had the same error after upgrading to Windows 10. Uninstall Julia and afterwards go into file explorer and physically delete the .Julia folder and all its contents. I also deleted the .julia_history file. Next reinstall Julia and you should be good to go...Arch On Friday, July 31, 2015 at 7

[julia-users] Quantitative Economics with Julia (great PDF doc)

2015-02-10 Thread Arch Call
Quantitative Economics with Julia Check out the PDF file in the link above. It has 396 pages of excellent documentation in the use of Julia in economics. The file is dated Feb 10, 2015 and is developed by Thomas Sargent & John Stachurski.

[julia-users] Re: SLOW sortrows?

2015-01-17 Thread Arch Call
Give alg=MergeSort a whirl. The doc says this is slower than alg=QuickSort for numeric arrays, but who knows until you try. On Saturday, January 17, 2015 at 4:57:20 PM UTC-5, Petr Krysl wrote: > > Hi guys, > > This one has me scratching my head. > > Matlab code: > > function Out =myunique(A)

[julia-users] Re: Why does the following give an error: p = 1; 2p+1 ??

2015-01-05 Thread Arch Call
On Julia version 3.4, the variable "P" also yields the same kind of error. On Monday, January 5, 2015 2:44:38 AM UTC-5, Ronald L. Rivest wrote: > > I'm using Julia 0.3.4 command line. > Entering > p = 1; 2p+1 > gives an error: > > *julia> p = 1; 2p+1* > > *ERROR: syntax: malformed exp

[julia-users] Re: Debug printing a “value” and its “symbol”

2015-01-04 Thread Arch Call
Thanks Mike, I have used show before, but not @show...Arch On Sunday, January 4, 2015 5:48:27 AM UTC-5, Arch Call wrote: > > I frequently find myself writing Julia snippet scripts like this: > > > vara = 33 > > varb = vara * 14 > > varc = varb * 77 > > printl

[julia-users] Re: Debug printing a “value” and its “symbol”

2015-01-04 Thread Arch Call
Thanks so much Lex .. That works ... Arch On Sunday, January 4, 2015 5:48:27 AM UTC-5, Arch Call wrote: > > I frequently find myself writing Julia snippet scripts like this: > > > vara = 33 > > varb = vara * 14 > > varc = varb * 77 > > println(“varb = “, varb)

[julia-users] Debug printing a “value” and its “symbol”

2015-01-04 Thread Arch Call
I frequently find myself writing Julia snippet scripts like this: vara = 33 varb = vara * 14 varc = varb * 77 println(“varb = “, varb) #--debug print println(“varc = “, varc) #--debug print I would like to eliminate having to enter the variable name twice in the debug print lines by us

[julia-users] Re: home page content

2014-12-09 Thread Arch Call
The Python web site: "Python.org" is pretty well organized. It has quite a few pull down menus that give good feedback to the user community. Sometimes a fresh look to the web site generates new interest. Most of these flashy web sites are driven on the back end by something like Drupal...A

[julia-users] Thanks to the Julia developers

2014-11-27 Thread Arch Call
As the colonists gave thanks 393 years ago for their one year survival in the Plymouth Colony, I give thanks to all those Julia Developers who have created, or are nurturing this wonderful scientific programming language called - Julia. Here is a short list of major contributors to the Julia co

[julia-users] Re: Solving a Bellman equation with Julia through function iteration: what I do wrong?

2014-11-23 Thread Arch Call
Use [] to index instead of (). On Sunday, November 23, 2014 6:39:49 PM UTC-5, Pileas wrote: > > OK, I have the following model in which I try to solve the Bellman > equation through function iteration. However somewhere I am wrong. > > This is the code: > >

[julia-users] Re: @printf with comma for thousands separator

2014-11-21 Thread Arch Call
code. Best regards...Archie On Saturday, November 8, 2014 6:05:08 AM UTC-5, Arch Call wrote: > > How would I use a @printf macro to use commas for thousands separators in > integers? > > @printf "%d \n" 12345678 > > This outputs: 12345678 > > I would like

[julia-users] Re: Significant rounding error in Julia: N * (1/1) == N + 1

2014-11-20 Thread Arch Call
Requested screen print is attached. On Wednesday, November 19, 2014 2:47:20 PM UTC-5, Intrinsic Audio wrote: > > I've found an interesting issue in Julia that, though it seems trivial in > the application I've given, is really messing up my code and my ability to > guarantee its performance. >

[julia-users] Re: Significant rounding error in Julia: N * (1/1) == N + 1

2014-11-20 Thread Arch Call
As Hissam Assi states this is strictly an issue with how Juno displays the Eval of a specific Julia statement. If you use println() to show the statement in the Output panel everything is OK. See the attached screen print which shows the difference between Eval and println(). On Wednesday, N

[julia-users] @printf with comma for thousands separator

2014-11-08 Thread Arch Call
How would I use a @printf macro to use commas for thousands separators in integers? @printf "%d \n" 12345678 This outputs: 12345678 I would like the output to be: 12,345,678 Thanks...Archie

[julia-users] Re: linreg(X,Y) not working.

2014-11-04 Thread Arch Call
It works fine for me. I am on Julia 3.2 using Windows 7 with 64 bit hardware. On Tuesday, November 4, 2014 5:12:52 PM UTC-5, Karel Zapfe wrote: > > Hi fellas: > > I am starting the Julia Tutorial at: > http://forio.com/labs/julia-studio/tutorials > > There is an example for linear regression in

[julia-users] Re: Removing history from REPL

2014-10-25 Thread Arch Call
Thanks...I found the .julia_history file in "c:\\users\\owner" and deleted it from there. On Saturday, October 25, 2014 9:10:06 AM UTC-4, Arch Call wrote: > > How can I remove the history of previous commands typed in the REPL? > > I am on Windows 7, and version 0.3.2+2 of Julia. >

[julia-users] Removing history from REPL

2014-10-25 Thread Arch Call
How can I remove the history of previous commands typed in the REPL? I am on Windows 7, and version 0.3.2+2 of Julia.

[julia-users] Re: Use of constant "pi" in rad2deg function causes convert error!

2014-10-22 Thread Arch Call
Thanks. I will probably just use 1pi when needed...Archie On Wednesday, October 22, 2014 4:27:21 PM UTC-4, Arch Call wrote: > > Notice how the constant "pi" causes an error in rad2deg(). > > I would think that this is a common use case for this function. > Also notice ho

[julia-users] Use of constant "pi" in rad2deg function causes convert error!

2014-10-22 Thread Arch Call
Notice how the constant "pi" causes an error in rad2deg(). I would think that this is a common use case for this function. Also notice how if it was multiplied by 1.0 and error did not happen. This is happening in in Version 0.3.1. ...Archie julia> pi π = 3.1415926535897... julia> rad2deg(pi)

[julia-users] circshift

2014-10-16 Thread Arch Call
I am trying to use this function little luck. manual definition circshift(A, shifts) Circularly shift the data in an array. The second argument is a vector giving the amount to shift in each dimension == Sample script with test data =