Reputation: 161
I am trying to multiply two matrices using the vDSP_mmul function, but I get an error "No matching function for call to 'mmul'".
import done as:
#import <Accelerate/Accelerate.h>
Function call:
vDSP_mmul(colorArray, 1, rgbArray, 1, concatArray, 1, 4, 4, 4);
colorArray , rgbArray are the two matrices and concatArray is the result Matrice.
Upvotes: 0
Views: 976