LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
matlab
lib
kpctoolbox
aph
aph_convseq.m
1
function [alpha,T] = aph_convseq(s)
2
% perform convolution on sequential with any number of elements
3
if
length(s) == 2
4
alpha = s{1};
5
T = s{2};
6
else
7
[alpha,T] = aph_simplify(s{1},s{2},s{3},s{4},1,1,1);
8
for
i = 1:1:(length(s)/2)-2
9
[alpha,T] = aph_simplify(alpha,T,s{3+2*i},s{4+2*i},1,1,1);
10
end
11
end
12
end
Generated by
1.9.8