Storing input variables x in a persistent variable called buffer

조회 수: 5 (최근 30일)
Hi there,
I am trying yo create a function which input x as a scalar and stores in a persistent variable called buffer. and it calculates the average of input every time I input a new x. The function uses a “buffer” to hold previous inputs, and the buffer can hold a maximum of 25 inputs. I want to know how I can add input to the buffer which is a persistent variable and see the inputs stored in the buffer? Thanks

채택된 답변

Jan
Jan 2015년 5월 2일
The description sounds clean and clear enough to allow for a straight forward implementation. What should happen if the function is called the 26th time? Should the buffer wrap around in a first-in-first-out style?
What have you tried so far? Usually it is more efficient to posr, what you have written and ask specific questions. But it is saturday and I try it:
function YourAccumulator(x)
persistent buffer bufferIndex
if isempty(buffer) % Called the first time
bufferIndex = 0;
end
bufferIndex = bufferIndex + 1
buffer(bufferIndex) = x;
if bufferIndex == 25
bufferIndex = 1;
end
M = mean(buffer);
disp(M);
The mod() operator would help to remove the if part.
  댓글 수: 1
yashar khatib shahidi
yashar khatib shahidi 2015년 5월 4일
편집: yashar khatib shahidi 2015년 5월 4일
Hi, Thanks for your reply. I have created a function that approximates pi and Instead of going to infinity, the function stops at the smallest k for which the approximation differs from pi (i.e., the value returned MATLAB’s built-in function) by no more than the positive scalar delta, which is the only input argument. The first output of the function is the approximate value of π, while the second is k. There is something wrong with this when I enter any delta it goes into infinite loop. Here is my code:
function [approx, k] = approximate_pi(delta)
approx = sqrt(12);
k = 0;
while abs(approx - pi) > 1e-2*delta
k = k + 1;
approx = approx + sqrt(12)*(((-3)^(-k))/(2*k+1))
end

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 C Matrix API에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by