From 9c3f64c6cc52a3b41e10a4da02b8df24f689700e Mon Sep 17 00:00:00 2001 From: Matthew Webster <mwebster@fmrib.ox.ac.uk> Date: Thu, 3 Apr 2008 11:58:37 +0000 Subject: [PATCH] Identity to IdentityMatrix --- streamlines.cc | 2 +- streamlines.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/streamlines.cc b/streamlines.cc index 16d0caf..40fc92f 100644 --- a/streamlines.cc +++ b/streamlines.cc @@ -67,7 +67,7 @@ namespace TRACT{ m_Seeds_to_DTI = read_ascii_matrix(opts.seeds_to_dti.value()); } else{ - m_Seeds_to_DTI=Identity(4); + m_Seeds_to_DTI=IdentityMatrix(4); } vols.initialise(opts.basename.value()); m_path.reserve(opts.nparticles.value()); diff --git a/streamlines.h b/streamlines.h index 8f4548e..6f00b69 100644 --- a/streamlines.h +++ b/streamlines.h @@ -130,7 +130,7 @@ namespace TRACT{ m_beenhere.reinitialize(m_seeds.xsize(),m_seeds.ysize(),m_seeds.zsize()); m_seedsdim.ReSize(3); m_seedsdim << m_seeds.xdim() <<m_seeds.ydim() <<m_seeds.zdim(); - m_I=Identity(4); + m_I=IdentityMatrix(4); } -- GitLab