You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the most recents versions of swe_cp_wb, all F-scores are computed using a for loop over all voxels. This seems needed for F-contrasts of rank > 1 because we need to use the right-matrix division (/) at every voxel to compute the scores (and I do not know how we could vectorise this operation). However, this can be avoided when the F-contrast is a vector as the matrix at the right of the right-matrix division is a scalar. In this case, we can remove the for-loop over all voxels and use right-array division (./) to compute the scores. This strategy is currently used for computing the T-scores and was also used in older versions of swe_cp_wb for F-contrast of rank 1 (by computing the t-scores and then squaring them).
The text was updated successfully, but these errors were encountered:
In the most recents versions of swe_cp_wb, all F-scores are computed using a for loop over all voxels. This seems needed for F-contrasts of rank > 1 because we need to use the right-matrix division (/) at every voxel to compute the scores (and I do not know how we could vectorise this operation). However, this can be avoided when the F-contrast is a vector as the matrix at the right of the right-matrix division is a scalar. In this case, we can remove the for-loop over all voxels and use right-array division (./) to compute the scores. This strategy is currently used for computing the T-scores and was also used in older versions of swe_cp_wb for F-contrast of rank 1 (by computing the t-scores and then squaring them).
The text was updated successfully, but these errors were encountered: