According to the function documentation, those square brackets contain any output arguments. Because the square brackets you show in your question contain zero variables, that function has zero output arguments.
function [A,B,C,D] = myfun(...) % 4 output arguments
function [A,B,C] = myfun(...) % 3 output arguments
function [A,B] = myfun(...) % 2 output arguments
function [A] = myfun(...) % 1 output arguments
function [] = myfun(...) % 0 output arguments
For one or zero output arguments the square brackets can be omiited entirely:
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
0 Comments
Sign in to comment.