EricDarve / numerical_linear_algebra

Julia code for the book Numerical Linear Algebra
110 stars 40 forks source link

Linspace deprecated in Julia 1.0 #203

Closed aefreeman closed 4 years ago

aefreeman commented 4 years ago

In the norm ball example (p. 14, figure 3.1), the example code uses linspace which has been deprecated in Julia 1.0 in favor of range. Replacing linspace(x,y,z) with range(x, stop = y, length = z) returns the desired results

EricDarve commented 4 years ago

I guess you are referring to the Julia code in Chap3/ ? I updated all the Julia code in that folder. This code goes back 3-4 years! Hopefully, everything is in order now.