how to full fill the diagonal of a matrix by a vector

29 ビュー (過去 30 日間)
Kamel
Kamel 2019 年 5 月 8 日
回答済み: Matt J 2019 年 5 月 10 日
hello
how can i full fill a matrix (17*9) by a vector by length 9
for example i have the vector d=[1 2 3 ] and the matrix zeros(5*5) and i want to make the output matrix like this
1 0 0 3 2
2 1 0 0 3
3 2 1 0 0
0 3 2 1 0
0 0 3 2 1
thanks

採用された回答

Adam Danz
Adam Danz 2019 年 5 月 8 日
This approach uses circshift() to circularly shift the columns of matrix.
m = zeros(5,5);
v = [1,2,3];
% Loop through each column of m
for i = 1:size(m,2)
m(1:length(v),i) = v;
m(:,i) = circshift(m(:,1), i-1);
end
Result:
m =
1 0 0 3 2
2 1 0 0 3
3 2 1 0 0
0 3 2 1 0
0 0 3 2 1
  2 件のコメント
Kamel
Kamel 2019 年 5 月 8 日
thank you very much
Adam Danz
Adam Danz 2019 年 5 月 10 日
Glad I could help!

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

その他の回答 (3 件)

Geoff Hayes
Geoff Hayes 2019 年 5 月 8 日
Ahmed - try using
a = [1 2 3 0 0]';
A = cell2mat(arrayfun(@(x)circshift(a,x-1),1:length(a), 'UniformOutput', false));
We use arrayfun and circshift to apply an anonymous function that shifts the a down by one element (less one) for each of the five columns in your output matrix. We use cell2mat to conver the cell array output to a matrix.
  2 件のコメント
Adam Danz
Adam Danz 2019 年 5 月 8 日
Nice! Simultaneous solutions with the same approach!
Kamel
Kamel 2019 年 5 月 8 日
編集済み: Kamel 2019 年 5 月 8 日
ok, thank you

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


Jan
Jan 2019 年 5 月 10 日
編集済み: Jan 2019 年 5 月 10 日
m = zeros(5,5);
v = [1,2,3,4];
n = numel(v);
index = 1:n;
for i = 1:size(m,2)
m(mod(i-1:i+n-2, 5)+1, i) = v;
end

Matt J
Matt J 2019 年 5 月 10 日
>> full(interpMatrix([1,2,3],1,5,1,'circ'))
ans =
1 0 0 3 2
2 1 0 0 3
3 2 1 0 0
0 3 2 1 0
0 0 3 2 1

カテゴリ

Help Center および File ExchangeOperating on Diagonal Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by