某些MATLAB代码中...
的含义是什么?
例如;请考虑以下代码(从
[tform, inlierBoxPoints, inlierScenePoints] = ...
estimateGeometricTransform(matchedBoxPoints, matchedScenePoints, 'affine');
Display the matching point pairs with the outliers removed
figure;
showMatchedFeatures(boxImage, sceneImage, inlierBoxPoints, ...
inlierScenePoints, 'montage');
title('Matched Points (Inliers Only)');
boxPolygon = [1, 1;...
size(boxImage, 2), 1;...
size(boxImage, 2), size(boxImage, 1);...
1, size(boxImage, 1);...
1, 1];
如果我不使用...
会怎样?我在没有使用这些...
的情况下运行我的程序,我认为没有区别!
答案 0 :(得分:1)
省略号(...)用于表示在下一行中继续表达式。当表达式很长时,文本编辑器无法一次显示整行。我们使用省略号,以便一次显示所有内容(无需向右滚动)
答案 1 :(得分:0)
...
将长字符串传输到下一行。