diff --git a/notes/sections/7.md b/notes/sections/7.md index 138c125..b6ef97b 100644 --- a/notes/sections/7.md +++ b/notes/sections/7.md @@ -35,7 +35,12 @@ In the code, default settings are $N_s = 800$ points for the signal and $N_n = samples were handled as matrices of dimension $n$ x 2, where $n$ is the number of points in the sample. The library `gsl_matrix` provided by GSL was employed for this purpose and the function `gsl_ran_bivariate_gaussian()` was used for -generating the points. +generating the points. +An example of the two samples is shown in @fig:fisher_points. + +{#fig:fisher_points} Assuming not to know how the points were generated, a model of classification must then be implemented in order to assign each point to the right class @@ -185,8 +190,25 @@ $$ $$ The projection of the points was accomplished by the use of the function -`gsl_blas_ddot`, which computed a dot product between two vectors, which in +`gsl_blas_ddot()`, which computed a dot product between two vectors, which in this case were the weight vector and the position of the point to be projected. +