diff liboctave/dSparse.cc @ 6823:9fddcc586065

[project @ 2007-08-24 08:27:27 by dbateman]
author dbateman
date Fri, 24 Aug 2007 08:27:29 +0000
parents 7e958a1532c6
children 2f17d5556756
line wrap: on
line diff
--- a/liboctave/dSparse.cc	Thu Aug 23 19:43:08 2007 +0000
+++ b/liboctave/dSparse.cc	Fri Aug 24 08:27:29 2007 +0000
@@ -216,6 +216,13 @@
   return *this;
 }
 
+SparseMatrix&
+SparseMatrix::insert (const SparseMatrix& a, const Array<octave_idx_type>& indx)
+{
+  MSparse<double>::insert (a, indx);
+  return *this;
+}
+
 SparseMatrix
 SparseMatrix::max (int dim) const
 {