vsmul   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/core/math.xtm

Implementation

(bind-func vsmul
  (lambda (v1:double* s:double len:i64 result:double*)
    (let ((i 0))
      (dotimes (i len)
        (pset! result i (* s (pref v1 i))))
      void)))


Back to Index

Similar Entries