Den ons. 18. nov. 2020 kl. 14.15 skrev Tim Meehan <[email protected]>:
> Is there a way to use Racket vectors similarly to how one might use NumPy? > (Or are vectors even the right thing to use?) > If you are after numerical calculations for mxn matrices, then look at `flomat` which uses the same underlying C/Fortran library that NumPy uses. https://docs.racket-lang.org/manual-flomat/index.html If you need rrays with more dimensions than 2 use `math/array`. If you need simple computation of 1-dimensional data, you can use standard Racket vectors (or flomats or arrays). /Jens Axel -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/racket-users/CABefVgxpKzJQj2HuSNDhYVrBPy2E%2BhUW7u4b%2BeC%2BkJhc4JoC9Q%40mail.gmail.com.

