matlabdomain
matlabdomain copied to clipboard
Autodocument arguments blocks
It would be helpful to auto-document the argument blocks of a function, and show the argument types, validations, and comments. For example, the following argument block in MATLAB
arguments
var string %It is a string
end
can be converted to a docstring
:param string var: It is a string