ex-7: fixed some errors

This commit is contained in:
Giù Marcer 2020-05-28 14:59:11 +02:00 committed by rnhmjoj
parent 59fba30c12
commit e3fcd83f37

View File

@ -95,7 +95,7 @@ int main(int argc, char **argv) {
* dataset to get an approximate * dataset to get an approximate
* solution in `iter` iterations. * solution in `iter` iterations.
*/ */
// fputs("# Perceptron \n\n", stderr); fputs("# Perceptron \n\n", stderr);
w = percep_train(signal, noise, opts.iter, &cut); w = percep_train(signal, noise, opts.iter, &cut);
} }
else { else {
@ -107,7 +107,6 @@ int main(int argc, char **argv) {
/* Print the results of the method /* Print the results of the method
* selected: weights and threshold. * selected: weights and threshold.
*/ */
fprintf(stderr, "\n* i: %d\n", opts.iter);
fprintf(stderr, "* w: [%.3f, %.3f]\n", fprintf(stderr, "* w: [%.3f, %.3f]\n",
gsl_vector_get(w, 0), gsl_vector_get(w, 0),
gsl_vector_get(w, 1)); gsl_vector_get(w, 1));