No, Racket's vector is an array from Java's perspective(int [] for instance), not a custom data structure, Array is not a builtin datatype in Racket.
If working with math-lib, you already have linear algebra supported. the array in math/array is a custom data structure with vector in heart. On Fri, Sep 16, 2016 at 9:39 AM, Lawrence Bottorff <[email protected]> wrote: > I'm trying out some of the math capabilities of Racket and I'm guessing > the linear algebra concept of a vector is actually an Array type in Racket, > not a Vector. Is this correct? Racket's Vector is a data (as with Java's > Vector) structure, right? > > -- > You received this message because you are subscribed to the Google Groups > "Racket Users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.

