Why [] appears after a function?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Carolina Silva
am 28 Nov. 2019
Bearbeitet: Stephen23
am 28 Nov. 2019
What does this means?
0 Kommentare
Akzeptierte Antwort
Stephen23
am 28 Nov. 2019
Bearbeitet: Stephen23
am 28 Nov. 2019
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:
function A = myfun(...) % 1 output arguments
function myfun(...) % 0 output arguments
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Motor Drives finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!