필터 지우기
필터 지우기

Problem with lscov for sparse input matrix with specified covariance vector

조회 수: 4 (최근 30일)
I am using lscov to solve a system of multiple small linear least squares problems set up as a block diagonal sparse matrix as follows:
blks = cell([1 size(X,2)]);
for i=1:size(X,2)
blks{i} = sparse([ones(size(X(:,i))) X(:,i)]);
end
A = blkdiag(blks{:});
Y = Y(:);
wY = wY(:);
[p,u] = lscov(A,Y); % this works for both normal and sparse A
%[p,u] = lscov(A,Y,wY); % this works when A is passed as full(A), fails when A is sparse, giving zero values for p
Wondering if anyone has thoughts on this?
Thanks,
Matthias

답변 (0개)

카테고리

Help CenterFile Exchange에서 Operating on Diagonal Matrices에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by