Problem with variable size

3 次查看(过去 30 天)
Hello, I am trying to do a customize buffer but it says that my output has a variable size and I don't wont it.
Can someone help me to resolve it ? I put my code below ( u is a vector of 8 double and FFTLength is a size of the buffer)
function data = custom_buffer( FFTLength, u)
%#codegen
persistent buffer next_index
% Define initial values
if isempty(buffer)
buffer = zeros(FFTLength,1);
next_index = 1;
end
% Populate the buffer
for k = 1 :8
buffer(next_index) = u(k);
end
% Increment the location to write to at the next time
if next_index < FFTLength
next_index = next_index + 9;
else
next_index = 1;
end
data = buffer;
end
  4 个评论
Catteau Ophélie
Catteau Ophélie 2021-3-24
OK, thank you I forgot this, I change it but it doesn't solve my problem about the variable size of data.
function data = custom_buffer( FFTLength, u)
%#codegen
persistent buffer next_index
% Define initial values
if isempty(buffer)
buffer = zeros(FFTLength,1);
next_index = 1;
end
% Populate the buffer
for k = 1 :8
buffer(next_index) = u(k);
next_index = next_index +1;
end
% Increment the location to write to at the next time
if next_index < FFTLength
next_index = next_index + 1;
else
next_index = 1;
end
data = buffer;
end
Walter Roberson
Walter Roberson 2021-3-24
No, that way of coding can expand the array.
Suppose that we have reached next_index = FFTLength - 1. Then buffer(next_index)=u(1) puts u(1) into second last location, increment next_index to FFTLength - 0. u(2) is put there, increment next_index to FFTLength + 1. u(3) is put there... Ooops, we expanded the array!

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2021-3-24
function data = custom_buffer( FFTLength, u)
%#codegen
persistent buffer next_index
% Define initial values
if isempty(buffer)
buffer = zeros(FFTLength,1);
next_index = 1;
end
% Populate the buffer
for k = 1 : 8
buffer(next_index) = u(k);
next_index = mod(next_index, FFTLength) + 1;
end
data = buffer;
end
  2 个评论
Catteau Ophélie
Catteau Ophélie 2021-3-24
I corrected like to write but there is always the variable size 's issue...
Walter Roberson
Walter Roberson 2021-3-24
Is your FFTLength input defined as a Constant block? If there is any chance that the value could change between function calls, then the block is variable length.
The typical work-around for this is to define a maximum length using coder.varsize() or to
buffer = zeros(maximum_FFTLength,1);
and
assert(FFTLength <= maximum_FFTLength)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by