Mercurial > hg > octave-lyh
changeset 177:198c555813f0
[project @ 1993-10-22 20:51:51 by jwe]
author | jwe |
---|---|
date | Fri, 22 Oct 1993 20:51:51 +0000 |
parents | 86fe57141743 |
children | 8a750c9ad116 |
files | scripts/control/dare.m |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/control/dare.m +++ b/scripts/control/dare.m @@ -53,13 +53,13 @@ endif if (is_controllable (a, b) == 0) - fprintf ("warning: dare: a,b are not controllable"); + fprintf (stderr, "warning: dare: a,b are not controllable"); endif # Check a,c compatibility. if (is_observable (a, c) == 0) - fprintf (stderr "warning: dare: a,c are not observable"); + fprintf (stderr, "warning: dare: a,c are not observable"); endif if ((p = is_square (c)) == 0) @@ -74,7 +74,7 @@ # Check r dimensions. if ((m1 = is_square (r)) == 0) - fprintf("warning: dare: r is not square"); + fprintf(stderr, "warning: dare: r is not square"); elseif (m1 != m) fprintf(stderr, "warning: b,r are not conformable"); endif