Main Content
getName
Class: coder.make.BuildTool
Namespace: coder.make
Get build tool name
Syntax
toolname = h.getName
Input Arguments
Output Arguments
Examples
Using the getName and setName Methods Interactively
Starting from the Add Custom Toolchains to MATLAB® Coder™ Build Process example, enter the following lines:
tc = coder.make.ToolchainInfo;
tool = tc.getBuildTool('C Compiler');
tool.getName
ans = C Compiler
tool.setName('X Compiler')
tool.getName
ans = X Compiler
Version History
Introduced in R2013a