Passing Variable Number of Arrays to a function with varargin

1 回表示 (過去 30 日間)
Douglas Anderson
Douglas Anderson 2013 年 6 月 20 日
Hello,
I would like to have a function that will take either one array or a number of them merged into one array within the function, which will then be plotted. The beginning of it is as follows:
function temp_array = fft100v(first_array,varargin)
% Plots the first 100 frequencies in in_array
% This assumes that sample interval is 1000 samples per second
% If length of array is shorter or longer than 1000, pad or cut it as
% appropriate
len_orig = length(first_array);
if nargin > 1
for n = 2:nargin
temp = varargin{n};
if length(temp) ~= len_orig
error('Arrays not of equal length');
end
end
end
The program craps out at the line "temp = varargin{n}" for more than one input with "Index exceeds matrix dimensions". It DOES have the curly braces on the "n". Guess I don't know enough about cell arrays.
Thanks.
Doug Anderson

採用された回答

random09983492
random09983492 2013 年 6 月 20 日
Hi Doug,
varargin starts at index 1, not index 2. That should fix it up.
  1 件のコメント
Douglas Anderson
Douglas Anderson 2013 年 6 月 20 日
Thanks!
I had to figure out how nargin relates also.
if nargin > 1
for n = 1:nargin-1
temp = varargin{n};
if length(temp) ~= len_orig
error('Arrays not of equal length');
end
end
end
The loop can't go to the total nargin value, since the first one is also counted in the nargin!
Much appreciated.
Doug

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDigital Filter Analysis についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by