diff -ur statist-0.14/CHANGES statist-0.14.1/CHANGES --- statist-0.14/CHANGES Tue Aug 18 11:19:58 1998 +++ statist-0.14.1/CHANGES Fri Feb 12 19:15:04 1999 @@ -1,3 +1,14 @@ +Changes up to v0.14.1: +Sat Feb 13 01:04:49 UTC 1999 Bernhard Reiter + One error message improved. + + * data.c + The string, which cannot be read as data value from a file + is now given in the error message. Thanks to Carsten Schulze. + + * Makefile + Added (simple) compiler flags for DEC's cc. + Changes up to v0.14: Tue Aug 18 16:10:03 UTC 1998 Bernhard Reiter Only cosmetic changes and documentation improvements. diff -ur statist-0.14/Makefile statist-0.14.1/Makefile --- statist-0.14/Makefile Tue Aug 18 10:39:33 1998 +++ statist-0.14.1/Makefile Fri Feb 12 19:13:22 1999 @@ -4,19 +4,28 @@ # See the file COPYING for details. # # (c) 1997 Dirk Melcher -# Doerper Damm 4 -# 49134 Wallenhorst # GERMANY -# Tel. 05407/7636 -# email: Dirk.Melcher@usf.Uni-Osnabrueck.DE -# -#*************************************************************/ +# old email address: Dirk.Melcher@usf.Uni-Osnabrueck.DE +# +# some changes by Bernhard Reiter: http://www.usf.Uni-Osnabrueck.DE/~breiter/ +# $Id: Makefile,v 1.2 1999/02/13 01:12:29 bernhard Exp $ +#*****************************************************************************/ -# Makefile fuer UNIX-Version kompiliert mit gcc und gnuplot-Graphik +# Makefile fuer UNIX-Version mit gnuplot-Graphik +# für systeme mit gcc oder egcs als compiler CC = gcc -CFLAGS = -c -Wall -g +CFLAGS = -c -Wall +#CFLAGS = -c -Wall -g #CFLAGS = -c -Wall -g -DDEBUG + +# für DEC's cc +#CC = cc +#CFLAGS= -c +##CFLAGS= -g -c + + +# LIBS = -lm LFLAGS = -g -o #MAIN = $(HOME)/tools/statist @@ -46,4 +55,4 @@ clean: - rm $(OBJECTS) $(MAIN) *.log *.aux + -rm $(OBJECTS) $(MAIN) *.log *.aux diff -ur statist-0.14/README statist-0.14.1/README --- statist-0.14/README Tue Aug 18 11:29:07 1998 +++ statist-0.14.1/README Fri Feb 12 19:22:32 1999 @@ -1,8 +1,14 @@ Dies ist eine dreivierteloffizielle Ausgabe von "statist". -Die Versionsnumber lautet: 0.14. +Die Versionsnumber lautet: 0.14.1 Webseite: http://www.usf.Uni-Osnabrueck.DE/~breiter/tools/statist/ -(Siehe unten für eine kurze Beschreibung von statist.) +(Am Ende dieser Datei befindet sich eine Kurzbeschreibung von statist.) + +Installation +================= +Siehe Dokumentation. +Für Unix einfach in das "Makefile" schauen und "make" sagen. + Was bringt v0.14? ================= @@ -22,7 +28,9 @@ Danach habe ich die Version v0.11.b010 erhausgegeben, welche meine Fehlerverbesserungen und Erweiterungen enthielt. Dirk ließ mir am 13.2.1998 seine neuesten Quellen zukommen. -Sie wurden in v0.12 eingearbeitet. Siehe "Changes". +Sie wurden in v0.12 eingearbeitet. + +Siehe "CHANGES". Wichtigste Änderungen auf statist-0.14: * Wenn die Namen der Spalten im Datenfile angegeben werden sollen, @@ -113,4 +121,4 @@ * Kreuz-Validierung linearer Modelle -18.8.1998 Bernhard Reiter +12.2.1999 Bernhard Reiter diff -ur statist-0.14/data.c statist-0.14.1/data.c --- statist-0.14/data.c Tue Aug 18 11:01:31 1998 +++ statist-0.14.1/data.c Fri Feb 12 19:31:03 1999 @@ -11,7 +11,7 @@ ** email: Dirk.Melcher@usf.Uni-Osnabrueck.DE ** ** some changes by Bernhard Reiter http://www.usf.Uni-Osnabrueck.DE/~breiter -** $Id: data.c,v 1.2 1998/02/16 18:27:56 breiter Exp $ +** $Id: data.c,v 1.3 1999/02/13 01:30:14 bernhard Exp $ ***************************************************************/ /* data.c fuer STATIST */ @@ -190,8 +190,10 @@ /* ttempfile[ncol] = myfopen(makefilename(ncol, filename),"wb"); */ } else { - out_err(FAT, ERR_FILE, ERR_LINE, "Ungueltiges Eingabeformat in Zeile %i!\n\ - Datei %s konnte nicht eingelesen werden!", lread, sourcename); + out_err(FAT, ERR_FILE, ERR_LINE, + "Ungueltiges Eingabeformat des Wertes \"%s\" in Zeile %i!\n" + "Datei %s konnte nicht eingelesen werden!\n", + token, lread, sourcename); return; } newcol ++ ; @@ -248,7 +250,8 @@ } else { out_err(FAT, ERR_FILE, ERR_LINE, - "Ungueltiges Eingabeformat in Zeile %i!", lread); + "Ungueltiges Eingabeformat des Wertes \"%s\" in Zeile %i!", + token, lread); } j++; } @@ -256,8 +259,9 @@ lread ++; if (colread != newcol) { - out_err(FAT, ERR_FILE, ERR_LINE, "Zeile %i enthaelt nur %i statt %i Spalten!", - (lread-1), colread, newcol); + out_err(FAT, ERR_FILE, ERR_LINE, + "Zeile %i enthaelt nur %i statt %i Spalten!", + (lread-1), colread, newcol); } } while (fgets(aline, 512, source) != NULL); @@ -469,7 +473,8 @@ for (i=0; i