Hi everyone,

I am new to Julia and just upgraded from 0.2.1 to 0.3.0 and found the 
following issue :
find function is no longer working on sparse matrices. For example
A=speye(Bool,10)
find(x->x==true,A)
->0-element Array{Int64,1}

find(x->x==true,full(A))
->10-element Array{Int64,1}:
   1
  12
  23
  34
  45
  56
  67
  78
  89
 100

Is this normal ?

Thank you for your help,

Ilias

Reply via email to