Mercurial > hg > camir-aes2014
comparison toolboxes/FullBNT-1.0.7/KPMtools/setdiag.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e9a9cd732c1e |
---|---|
1 function M = setdiag(M, v) | |
2 % SETDIAG Set the diagonal of a matrix to a specified scalar/vector. | |
3 % M = set_diag(M, v) | |
4 | |
5 n = length(M); | |
6 if length(v)==1 | |
7 v = repmat(v, 1, n); | |
8 end | |
9 | |
10 % e.g., for 3x3 matrix, elements are numbered | |
11 % 1 4 7 | |
12 % 2 5 8 | |
13 % 3 6 9 | |
14 % so diagnoal = [1 5 9] | |
15 | |
16 | |
17 J = 1:n+1:n^2; | |
18 M(J) = v; | |
19 | |
20 %M = triu(M,1) + tril(M,-1) + diag(v); | |
21 |