[julia-users] What does three vertical points [...] mean in anArray output?

2014-02-06 Thread Ismael VC
julia [5, test, 'c'] 3-element Array{Any,1}: 5 ⋮

Re: [julia-users] What does three vertical points [...] mean in anArray output?

2014-02-06 Thread Kevin Squire
Usually, this is printed when the contents of the array won't fit in the number of columns/rows available on screen. That shouldn't be the case, here, but I'm wondering 1) what version of julia are you running (what's the output of versioninfo()?) 2) what OS are you running on? 3) what kind of

Re: [julia-users] What does three vertical points [...] mean in anArray output?

2014-02-06 Thread Ismael VC
Thanks for your reply and sorry for posting 2 times the same question, I did not mean to do that. I am running Arch Linux, using Fish shell within Yakuake drop-down terminal. julia versioninfo() Julia Version 0.3.0-prerelease+1367 Commit 793d769* (2014-02-03 08:34 UTC) Platform Info: System:

Re: [julia-users] What does three vertical points [...] mean in anArray output?

2014-02-06 Thread Ismael VC
Ok I figured out! I was running Julia inside a small drop down window, thanks.

Re: [julia-users] What does three vertical points [...] mean in anArray output?

2014-02-06 Thread Steven G. Johnson
Set ENV[LINES] = 30 to change the number of lines that are displayed (this just sets the LINES environment variable). On Thursday, February 6, 2014 2:23:00 PM UTC-5, Ismael VC wrote: Ok, so to have all the rows printed in that example, I have to get out of the Julia session, rezise the

Re: [julia-users] What does three vertical points [...] mean in anArray output?

2014-02-06 Thread Steven G. Johnson
(Automatic resizing should be implemented in the future, once we finish the process of ripping out the current REPL code and replacing it. https://github.com/JuliaLang/julia/issues/4513)

Re: [julia-users] What does three vertical points [...] mean in anArray output?

2014-02-06 Thread Ismael VC
Thank's very much Steven! Ismael VC