Updated but is the same error:
I have the "bad vector", is to big to save on groups disk. When save them ?
               _
   _       _ _(_)_     |  A fresh approach to technical computing
  (_)     | (_) (_)    |  Documentation: http://docs.julialang.org
   _ _   _| |_  __ _   |  Type "help()" for help.
  | | | | | | |/ _` |  |
  | | |_| | | | (_| |  |  Version 0.3.0 (2014-08-20 20:43 UTC)
 _/ |\__'_|_|_|\__'_|  |  Official http://julialang.org/ build
|__/                   |  x86_64-w64-mingw32

julia> test=readcsv("test.txt")
5932868x1 Array{Float64,2}:
  0.272328
  0.0156202
 -0.000132047
  ?
  0.145189
  0.302531
  0.282558

julia> sortperm(test)
ERROR: `sortperm` has no method matching sortperm(::Array{Float64,2})

julia> sortperm(vec(test))
ERROR: stack overflow

julia> sortperm(float16(vec(test)));

julia>


W dniu niedziela, 31 sierpnia 2014 20:23:51 UTC+2 użytkownik Iain Dunning 
napisał:
>
> Maybe upgrade to 0.3.0 release?
>
> On Sunday, August 31, 2014 5:35:32 AM UTC-4, paul analyst wrote:
>>
>>  soryy but vector is lost ...
>> My version: 
>>                _
>>    _       _ _(_)_     |  A fresh approach to technical computing
>>   (_)     | (_) (_)    |  Documentation: http://docs.julialang.org
>>    _ _   _| |_  __ _   |  Type "help()" to list help topics
>>   | | | | | | |/ _` |  |
>>   | | |_| | | | (_| |  |  Version 0.3.0-prerelease+3687 (2014-06-16 00:19 
>> UTC)
>>  _/ |\__'_|_|_|\__'_|  |  Commit 9381e34 (76 days old master)
>> |__/                   |  x86_64-w64-mingw32
>>
>> julia> using HDF5
>> Warning: using HDF5.parent in module Main conflicts with an existing 
>> identifier.
>> Warning: using HDF5.has in module Main conflicts with an existing 
>> identifier.
>>
>> julia>
>>
>> Paul
>>
>> W dniu 2014-08-30 16:35, Viral Shah pisze:
>>  
>> Could you file this as an issue? Which version of Julia are you using and 
>> what platform? It doesn't fail for me. 
>>
>>  -viral
>>
>> On Friday, August 29, 2014 11:54:16 PM UTC+5:30, paul analyst wrote: 
>>>
>>> julia> F
>>> 5932868x1 Array{Float64,2}:
>>>   0.00168482
>>>  -0.00408837
>>>  -0.00408837
>>>  -0.109945
>>>  -0.00408837
>>>  -0.00408837
>>>  -0.00408837
>>>  -0.148809
>>>  -0.00782675
>>>  -0.00408837
>>>   ?
>>>  -0.00408837
>>>  -0.00408837
>>>   0.498521
>>>  -0.00297856
>>>  -0.0859596
>>>  -0.0760184
>>>  -0.0706045
>>>   0.420753
>>>   0.299376
>>>   0.00371405
>>>
>>> julia> p=sortperm(vec(F),rev=true)
>>> ERROR: stack overflow
>>>  
>>   
>> 

Reply via email to