diff options
author | andreas128 <Andreas> | 2017-09-27 17:45:12 +0200 |
---|---|---|
committer | andreas128 <Andreas> | 2017-09-27 17:45:12 +0200 |
commit | 09a9dcf3f857e912c099806bece452bcf96722cb (patch) | |
tree | 55afe62780e66b629a170ac1a6e330c886d57cde /dpd/src/Model_Poly.py | |
parent | 5db7642424ddb5c6c304899efd4e8f74a8351a65 (diff) | |
download | dabmod-09a9dcf3f857e912c099806bece452bcf96722cb.tar.gz dabmod-09a9dcf3f857e912c099806bece452bcf96722cb.tar.bz2 dabmod-09a9dcf3f857e912c099806bece452bcf96722cb.zip |
Cleanup
Diffstat (limited to 'dpd/src/Model_Poly.py')
-rw-r--r-- | dpd/src/Model_Poly.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dpd/src/Model_Poly.py b/dpd/src/Model_Poly.py index 6a74bea..78bab91 100644 --- a/dpd/src/Model_Poly.py +++ b/dpd/src/Model_Poly.py @@ -62,7 +62,11 @@ class Poly: return self.coefs_am, self.coefs_pm def train(self, tx_abs, rx_abs, phase_diff): - # type: (np.ndarray, np.ndarray, np.ndarray) -> (str, np.ndarray, np.ndarray) + """ + :type tx_abs: np.ndarray + :type rx_abs: np.ndarray + :type phase_diff: np.ndarray + """ _check_input_get_next_coefs(tx_abs, rx_abs, phase_diff) coefs_am_new = self.model_am.get_next_coefs(tx_abs, rx_abs, self.coefs_am) |