how to store values in an array in a loop ??
이전 댓글 표시
i want to store values in an array in a loop , n then take its average , continously delete them as well after 10 frames of a video..........
답변 (1개)
Victor
2011년 5월 21일
Dear Arooj,
I have written a simple code for you, you can adopt it to yours.
clc;clear;
array = [];
for i=1:1:5
array2=i;
array=[array; array2];
end
b=numel(array);
c=sum(array)/b
% for deleting after 10 frames you can put it in another loop
Good luck
카테고리
도움말 센터 및 File Exchange에서 Video Formats and Interfaces에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!