Skip to content

Commit

Permalink
Merge pull request #44 from effigies/enh/nointerp
Browse files Browse the repository at this point in the history
ENH: Disable interpolation in design matrix
  • Loading branch information
matthew-brett authored Sep 17, 2023
2 parents 6f06c6c + 0b54e49 commit f06e7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model_one_voxel.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ regressor, and a column of ones:
N = len(convolved)
X = np.ones((N, 2))
X[:, 0] = convolved
plt.imshow(X, cmap='gray', aspect=0.1)
plt.imshow(X, cmap='gray', aspect=0.1, interpolation='none')
```

$\newcommand{\yvec}{\vec{y}}$
Expand Down

0 comments on commit f06e7a3

Please sign in to comment.