what does ellipsis mean in a Matlab function's argument list?

后端 未结 1 975
青春惊慌失措
青春惊慌失措 2020-12-12 03:58

What is the ellipsis for in this Matlab statement?

frame = insertObjectAnnotation(frame, \'rectangle\', ...
                bboxes, labels);
<
相关标签:
1条回答
  • 2020-12-12 04:13

    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;
    
    0 讨论(0)
提交回复
热议问题