フィルターのクリア

In the following script, shifting the % symbols to the line below where they are shown givies different results. The version shown below gives the correct result. The versison with the % signs moved gives an incorrect result. Any ideas?

1 回表示 (過去 30 日間)
% trajetory 1
clf
xx=1:10;y=[1 0 0 0 0 0 0 0 1 0];stem(xx,y)
hold on
m = .1;
xz(1) = 11;
y(1) = 1.1;
for i = 1:10
%xz(i) = xz(1) - i;
xz(i) = 11 - i;
%y(i) = y(1) - m*xz(i);
y(i) = 1.1 - m*xz(i);
end
plot(xz,y)
  1 件のコメント
Image Analyst
Image Analyst 2013 年 9 月 27 日
Again? A third post on the same question? This tells me that a reply to Fred is a complete waste of time.

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

採用された回答

Walter Roberson
Walter Roberson 2013 年 9 月 27 日
The commented out code modifies xz(1) when "i" is 1, so when "i" is 2 or more, xz(1) is no longer the same as what it started out as.

その他の回答 (0 件)

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by