coder.BLASCallback.getBLASIntTypeName
Class: coder.BLASCallback
Namespace: coder
Return name of integer data type used by CBLAS interface
Syntax
intTypeName = coder.BLASCallback.getBLASIntTypeName()
Description
returns the name of the integer data type that is used by the CBLAS interface to a specific
BLAS library.intTypeName
= coder.BLASCallback.getBLASIntTypeName()
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.
getBLASIntTypeName
is an abstract method. You must implement it in the
definition of your callback class that derives from coder.BLASCallback
.The
generated code uses the integer data type name to specify types of variables in the generated
code that produces BLAS calls.
Output Arguments
Examples
Version History
Introduced in R2018b