Mercurial > hg > octave-lyh
diff liboctave/dColVector.cc @ 1253:bb67a902760b
[project @ 1995-04-11 16:35:23 by jwe]
author | jwe |
---|---|
date | Tue, 11 Apr 1995 16:35:23 +0000 |
parents | 97eac19837dc |
children | f93b7fa5e113 |
line wrap: on
line diff
--- a/liboctave/dColVector.cc +++ b/liboctave/dColVector.cc @@ -38,10 +38,11 @@ extern "C" { - int F77_FCN (dgemv) (const char*, const int&, const int&, - const double&, const double*, const int&, - const double*, const int&, const double&, - double*, const int&, long); + int F77_FCN (dgemv, DGEMV) (const char*, const int&, const int&, + const double&, const double*, + const int&, const double*, const int&, + const double&, double*, const int&, + long); } /* @@ -225,8 +226,8 @@ double *y = new double [nr]; - F77_FCN (dgemv) ("N", nr, nc, 1.0, m.data (), ld, a.data (), 1, 0.0, - y, 1, 1L); + F77_FCN (dgemv, DGEMV) ("N", nr, nc, 1.0, m.data (), ld, a.data (), + 1, 0.0, y, 1, 1L); return ColumnVector (y, nr); }