What is the ellipsis for in this Matlab statement?
frame = insertObjectAnnotation(frame, 'rectangle', ... bboxes, labels);
...I could not find in their online doc.
http://www.mathworks.com/help/matlab/matlab_prog/continue-long-statements-on-multiple-lines.html
Continue Long Statements on Multiple Lines This example shows how to continue a statement to the next line using ellipsis (...). s = 1 - 1/2 + 1/3 - 1/4 + 1/5 ... - 1/6 + 1/7 - 1/8 + 1/9;
Continue Long Statements on Multiple Lines
This example shows how to continue a statement to the next line using ellipsis (...).
s = 1 - 1/2 + 1/3 - 1/4 + 1/5 ... - 1/6 + 1/7 - 1/8 + 1/9;
2.1m questions
2.1m answers
60 comments
57.0k users