about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/graph/mk_adjmat_chain.m
blob: d206b272245ee0d0debb0094449e66141ebd3484 (plain)
1
2
3
4
5
6
7
8
function G = mk_adjmat_chain(T)
% MK_DAG_CHAIN Make adjacency matrix for bi-directional Markov chain of  T nodes
% function G = mk_dag_chain(T)
%
% G(t,t+1) = 1 for all t<T

G = diag(ones(1,T-1),1) + diag(ones(1,T-1),-1);