Adelsbach/VSIPL
Core Programming Reference Guide
DD-00016-015
Core

This manual is preliminary and incomplete.
While our Core implementation implements all functions given in the standard we are still working on completing this documentation.

Please refer to the VSIPL standard for a complete function reference of the Core profile until we have completed work on this documentation.

4.3.17 vsip_dvmmul_p - Vector-Matrix Multiplication

void vsip_vmmul_f(const vsip_vview_f *a, const vsip_mview_f *b, 
                 vsip_major major, const vsip_mview_f *r); 
 
void vsip_cvmmul_f(const vsip_cvview_f *a, const vsip_cmview_f *b, 
                  vsip_major major, const vsip_cmview_f *r);
Description

This function performs a vector-matrix multiplication. The operation performs either:

for all i from 0 to m -1 and j from 0 to n-1, where m is the number of rows and n is the number of columns in the matrix.

Parameters
Notes