Lines Matching refs:somme
96 real somme; in aat_product() local
99 somme=0.0; in aat_product()
103 somme+=A[k][i]*A[k][j]; in aat_product()
105 X[j][i]=somme; in aat_product()
114 real somme; in matrix_matrix_product() local
117 somme=0.0; in matrix_matrix_product()
119 somme+=A[k][i]*B[j][k]; in matrix_matrix_product()
120 X[j][i]=somme; in matrix_matrix_product()
127 real somme; in matrix_vector_product() local
129 somme=0.0; in matrix_vector_product()
131 somme+=A[j][i]*B[j]; in matrix_vector_product()
132 X[i]=somme; in matrix_vector_product()
173 real somme; in atv_product() local
175 somme = 0.0; in atv_product()
177 somme += A[i][j]*B[j]; in atv_product()
178 X[i] = somme; in atv_product()
206 real somme=0.0; in norm_diff() local
211 somme+=diff*diff; in norm_diff()
214 return somme/somme2; in norm_diff()
220 real somme=0.0; in norm_diff() local
226 somme += diff*diff; in norm_diff()
231 return somme/somme2; in norm_diff()