coder.BLASCallback.getHeaderFilename
Class: coder.BLASCallback
Namespace: coder
Return the file name of CBLAS header file
Syntax
headerName = coder.BLASCallback.getHeaderFilename()
Description
returns the name of the CBLAS header file that defines the C interface to a specific BLAS
library.headerName
= coder.BLASCallback.getHeaderFilename()
coder.BLASCallback
is an abstract class for defining a
BLAS callback class. A BLAS callback class specifies the BLAS library and CBLAS header and
data type information to use for BLAS calls in code generated from MATLAB® code. At code generation time, if you specify a BLAS callback class, for certain
vector and matrix function calls, the code generator produces BLAS calls in standalone
code.
getHeaderFilename
is an abstract method. You must implement it in the
definition of your callback class that derives from coder.BLASCallback
. The
code generator uses the CBLAS header file name returned by
getHeaderFilename
to produce a #include
statement in
the generated code.
Output Arguments
Examples
Version History
Introduced in R2018b