FunctionSignature.json
is a file used by Matlab to provide information about the input and output arguments of a Matlab function.
To use FunctionSignature.json
:
toolbox
in the root directory of your project.toolbox
folder, create a subfolder called local
.FunctionSignature.json
file inside the local
folder.FunctionSignature.json
file using the loadHelpData
function:main.m63 chars2 lines
After loading the file, you can use the built-in Matlab doc
function to display the help information for a function, including the input and output argument information.
main.m17 chars2 lines
Make sure to replace functionName
with the name of the function that you want to get the help information for.
Note: FunctionSignature.json
is automatically generated by Matlab and is not meant to be edited manually. It is used by Matlab's code analyzer to improve its understanding of the code, making it better at providing code completions and other type of assistance.
gistlibby LogSnag