matlab里lp2vec是什么函数
发布网友
发布时间:2022-05-24 18:31
我来回答
共2个回答
热心网友
时间:2023-10-25 07:11
lp2vec是自定义函数,是自行编写有关将LP输出成矢量形式方面的函数。
function [c, s] = lp2vec(y)
% LP2VEC Convert the output of the LP into a vector form
% [c, s] = lp2vec(y)
% Input:
% y: an output of LPD
% Output:
% c: a column vector that contains all LP coefficients
% s: size vectors of each LP output layer, one per row
% See also: LPD, VEC2LP
n = length(y);
s = zeros(n, ndims(y{1}));
% Save the sizes of cells of y into s
for l = 1:n
s(l, :) = size(y{l});
end
% Flatten each layer of the LP into a vector and concatenate them
ind = 0;
c = zeros(sum(prod(s, 2)), 1);
for l = 1:n
nc = prod(size(y{l}));
c(ind+1:ind+nc) = y{l}(:);
ind = ind + nc;
end
热心网友
时间:2023-10-25 07:12
MATLAB 信号处理常用函数 波形产生 函数名 功能 sawtooth 产生锯齿波或三角波 Sinc 产生sinc或函数sin(pi*t)/(pi*t) Square 产生方波 Diric 产生Dirichlet或周期sinc函数 滤波器分析和实现 函数名 功能 Abs 求绝对值(幅值) Freqs 模拟滤波器频...