フィルターのクリア

What does '...' mean in MATLAB?

69 ビュー (過去 30 日間)
Douglas Alves
Douglas Alves 2014 年 5 月 13 日
コメント済み: Douglas Alves 2014 年 5 月 13 日
I came across this script and I've seen h = ... what does it mean?
axis(1.2*[-1 1 -1 1])
axis square
box on
hold on
x = 0;
y = 1;
h = ...
n = 2*pi/h;
plot(x,y,.)
for k = 1:n
x = x + h*y;
y = y - h*x;
plot(x,y,.)

採用された回答

Benjamin Avants
Benjamin Avants 2014 年 5 月 13 日
The three dots '...' tell matlab that the code on a given line continues on the next line.
It is used so that command lines don't stretch out too long to print or read easily.
ex.
set(1,'Position',[0,0,1,1],'Tag','MyTag','Color', ...
[.94,.94,.94]);
This code is interpreted as a single set command with multiple parameters.
In the script you posted, the line in question would actually be interpreted like this:
h = n = 2*pi/h;
which should cause an error.
Whoever wrote the script must be using it as a place holder for something else.
  1 件のコメント
Douglas Alves
Douglas Alves 2014 年 5 月 13 日
Yes! There's an error. I was wondering why. Thank you Benjamin

サインインしてコメントする。

その他の回答 (1 件)

per isakson
per isakson 2014 年 5 月 13 日
編集済み: per isakson 2014 年 5 月 13 日
doc on Special Characters says
Continuation. Three or more periods [...] at the end of a line continue the current function on the next line. Three or more periods before the end of a line cause the MATLAB® software to ignore the remaining text on the current line and continue the function on the next line. This effectively makes a comment out of anything on the current line that follows the three periods. For an example, see Continue Long Statements on Multiple Lines.
  1 件のコメント
Douglas Alves
Douglas Alves 2014 年 5 月 13 日
Thank you Isakson, I didn't know the command for that. Thanks

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeWhos についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by