Vscale   xtlang


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/contrib/gsl.xtm

Implementation

(bind-func Vscale
  (lambda (v1 s)
    (let ((v3 (Vcopy v1)))
      (gsl_vector_scale v3 s)
      v3)))


Back to Index