comparison src/gripes.cc @ 5275:23b37da9fd5b

[project @ 2005-04-08 16:07:35 by jwe]
author jwe
date Fri, 08 Apr 2005 16:07:37 +0000
parents f3c21a1d1c62
children 4c8a2e4e0717
comparison
equal deleted inserted replaced
5274:eae7b40388e9 5275:23b37da9fd5b
51 { 51 {
52 error ("nonconformant matrices"); 52 error ("nonconformant matrices");
53 } 53 }
54 54
55 void 55 void
56 gripe_nonconformant (int r1, int c1, int r2, int c2) 56 gripe_nonconformant (octave_idx_type r1, octave_idx_type c1, octave_idx_type r2, octave_idx_type c2)
57 { 57 {
58 error ("nonconformant matrices (op1 is %dx%d, op2 is %dx%d)", 58 error ("nonconformant matrices (op1 is %dx%d, op2 is %dx%d)",
59 r1, c1, r2, c2); 59 r1, c1, r2, c2);
60 } 60 }
61 61