Skip to content

Commit

Permalink
[WP] Fix orthogonal_mp computation of M
Browse files Browse the repository at this point in the history
  • Loading branch information
GauthierGar committed Aug 9, 2021
1 parent 4c1cd9e commit d1865b8
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 38 deletions.
2 changes: 1 addition & 1 deletion SciDataTool/Methods/DataND/orthogonal_mp.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def orthogonal_mp(self, Time: Data1D, n_coefs: int=None):
[Angle] = self.get_axes(axes_name[0])
[Time_undersampled] = self.get_axes("time")

M = comp_undersampled_axe(Time_undersampled,Time)
M = comp_undersampled_axe(Time,Time_undersampled)

n = len(Time.values)

Expand Down
Loading

0 comments on commit d1865b8

Please sign in to comment.