フィルターのクリア

Algorithm for an elimination matrix

7 ビュー (過去 30 日間)
Luciano Campos
Luciano Campos 2016 年 3 月 18 日
コメント済み: Luciano Campos 2016 年 3 月 18 日
Hi everybody, Can anybody help me to design a Matlab code function that creates an elimination matrix L of size (.5m(m+1),m^2) such that, for a (m,m) square matrix A:
vech(A)=L vec(A)
where the vech and vec operators are such that, for example, if:
Thanks for your help,
best,

採用された回答

James Tursa
James Tursa 2016 年 3 月 18 日
編集済み: James Tursa 2016 年 3 月 18 日
m = size(A,1); % Size of A
T = tril(ones(m)); % Lower triangle of 1's
f = find(T(:)); % Get linear indexes of 1's
k = m*(m+1)/2; % Row size of L
m2 = m*m; % Colunm size of L
L = zeros(m2,k); % Start with L'
x = f + m2*(0:k-1)'; % Linear indexes of the 1's within L'
L(x) = 1; % Put the 1's in place
L = L'; % Now transpose to actual L
  1 件のコメント
Luciano Campos
Luciano Campos 2016 年 3 月 18 日
Thanks James! It works perfectly!
really appreciate your help.
best,

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by