フィルターのクリア

How for loop Store all average values in single values

1 回表示 (過去 30 日間)
SAMEER ahamed
SAMEER ahamed 2014 年 1 月 21 日
コメント済み: Walter Roberson 2014 年 1 月 22 日
I have to store single average value from input 15 frames video file? below code i have tried but i cannot get any idea ?
if true
% code
k1_stored = zeros(1,nFrames);
for k=1:nFrames
avg= mean([X;Y]); %here x and y are array coordinates values .
k1_stored(round(avg)) = round(avg);
end
end
resultant = k1_stored(k1_stored~=0);
disp(resultant);
output: Columns 1 through 13
23 26 28 29 30 31 32 33 34 35 36 37 38
Columns 14 through 26
39 40 41 51 52 53 54 55 57 58 60 62 64
Columns 27 through 39
69 70 72 73 75 76 77 78 79 81 82 83 84
Columns 40 through 42
86 91 92

採用された回答

Image Analyst
Image Analyst 2014 年 1 月 21 日
Let's hope that is pseudocode because X and Y are not changing in your loop. So to store the mean as a function of frame number, do this in the loop
k1_stored(k) = avg; % Store average for k'th frame in k'th element of k1_stored array.
  1 件のコメント
SAMEER ahamed
SAMEER ahamed 2014 年 1 月 21 日
when i have tried like error i got it .
if true
% code
k1_stored(k) = avg;
end
In an assignment A(I) = B, the number of elements in B and I must be the
same

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

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2014 年 1 月 21 日
k1_stored(k) = round(avg);
  6 件のコメント
SAMEER ahamed
SAMEER ahamed 2014 年 1 月 22 日
Thank's reply to me . i have tried but i got error like ? subscripted assignment dimension mismatch .so i need to store for looping all values in single variable any idea?
Walter Roberson
Walter Roberson 2014 年 1 月 22 日
Okay, so for the moment use
k1_stored{k} = avg;
notice the curly bracket instead of round bracket.
After the loop you could try
cell2mat(k1_stored)
if you get an error in doing that then there was some "avg" that was not the same length as the others.

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

カテゴリ

Help Center および File ExchangeParticle & Nuclear Physics についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by