Mercurial > hg > camir-ismir2012
comparison toolboxes/FullBNT-1.0.7/KPMtools/setdiag.m @ 0:cc4b1211e677 tip
initial commit to HG from
Changeset:
646 (e263d8a21543) added further path and more save "camirversion.m"
author | Daniel Wolff |
---|---|
date | Fri, 19 Aug 2016 13:07:06 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:cc4b1211e677 |
---|---|
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 |