gmwm
gmwm copied to clipboard
Weights from the OMEGA-matrix
Hello,
The OMEGA-matrix gives me the weights on the different scales, that is ok. Normally, all the scales are considered with a specific weight.
Is there some way to modify the values of the matrix for a specific scale? Let's say: I do not want the GMWM to take the first scale into account (for whatever reasons: esthetic, physical principles not conisdered, other unknown noises...). the original is:
my_gmwm = gmwm(my_personal_model, my_data)
This would become (if I had 6 scales, which I will change the weight to zero for the first and the last scale, the others are untouched):
my_gmwm = gmwm(my_personal_model, my_data, weights = [0 1 1 1 1 0])
Thanks