Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

what does `...` do in matlab?

I am new to Matlab but I thought ... is used for expressing array. Following lines of code, however, proved that I had no idea what that does. Could anybody give me a clue?

 str = sprintf('%s: sometext %d of %d, sometext %d [%d-other text %d]',...
            GROUP(ID).Name,...
            GROUP(ID).TurnNumber+1,...
            GROUP(ID).MaxTurns,...
            GROUP(ID).SetNumber,...
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It's the line continuation string; basically, it means treat the end of line character you're about to encounter as if it didn't exist.

Invalid because of the line break:

str = sprintf('%s foo',
           'foo');

Valid because you tell Matlab to keep reading:

str = sprintf('%s foo', ...
           'foo');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...