Mercurial > hg > octave-avbm
diff src/dassl.cc @ 628:aecbe369233b
[project @ 1994-08-19 13:27:51 by jwe]
author | jwe |
---|---|
date | Fri, 19 Aug 1994 13:37:34 +0000 (1994-08-19) |
parents | 14b2a186a5c0 |
children | fae2bd91c027 |
line wrap: on
line diff
--- a/src/dassl.cc +++ b/src/dassl.cc @@ -93,7 +93,7 @@ if (tmp.length () > 0 && tmp(0).is_defined ()) { - retval = tmp(0).to_vector (); + retval = tmp(0).vector_value (); if (retval.length () == 0) gripe_user_supplied_eval ("dassl"); @@ -130,14 +130,14 @@ if (! dassl_fcn || takes_correct_nargs (dassl_fcn, 4, "dassl", 1) != 1) return retval; - ColumnVector state = args(2).to_vector (); - ColumnVector deriv = args(3).to_vector (); - ColumnVector out_times = args(4).to_vector (); + ColumnVector state = args(2).vector_value (); + ColumnVector deriv = args(3).vector_value (); + ColumnVector out_times = args(4).vector_value (); ColumnVector crit_times; int crit_times_set = 0; if (nargin > 5) { - crit_times = args(5).to_vector (); + crit_times = args(5).vector_value (); crit_times_set = 1; }