matlab - 省略号在 Matlab 函数的参数列表中是什么意思?

标签 matlab

这个 Matlab 语句中的省略号是什么?

frame = insertObjectAnnotation(frame, 'rectangle', ...
                bboxes, labels);

...我在他们的在线文档中找不到。

最佳答案

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;

关于matlab - 省略号在 Matlab 函数的参数列表中是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30988821/

相关文章:

string - 如何通过单个字符串内的匹配来排序和打印字符串单元格内容,Matlab?

java - MATLAB + JNI = 错误?

performance - MATLAB/ Octave : cut a lot of circles from a image

matlab - 使用一组开始和结束索引索引数组

matlab arctanh 函数

Matlab:如何计算函数在多个极限上的定积分?

performance - Matlab:数组在循环内增长 - 那又怎样?

matlab - 有一个 hdf5 [600000,1,7,256] 的数据 blob。如何在matlab中使用Caffe进行均值减法?

matlab - 是否有将任何数据结构转换为字符串的 Matlab 函数?

心脏跳动的Matlab视频处理。代码补充