-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
linting is error free #38
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For consistency, let's phrase it as "Test cases for the Adaptive module."
@@ -33,7 +33,7 @@ def test_gtor() -> None: | |||
|
|||
|
|||
def test_atog() -> None: | |||
|
|||
"""The m-file for the step-down recursion.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's not a matlabl file (m-file), this is a functional test for the step-down recursion.
@@ -45,6 +45,11 @@ def test_atog() -> None: | |||
|
|||
|
|||
def test_rtog() -> None: | |||
"""Companion m-file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not an m-file.
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
def test_pade() -> None: | ||
"""Pade Approximation.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Functional test for the Pade Approximation.
@@ -39,6 +40,7 @@ def test_pade() -> None: | |||
|
|||
|
|||
def test_prony(): | |||
"""Prony method.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Functional test for the...
@@ -1,10 +1,12 @@ | |||
"""""" | |||
"""Test optimal.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test cases for the Optimal module.
from ssp import optimal | ||
|
||
|
||
def test_kalman(): | ||
"""Discrete Kalman filter.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Functional test for the...
@@ -0,0 +1 @@ | |||
"""Spectrum.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test cases for the Spectrum module.
@@ -7,6 +7,7 @@ | |||
|
|||
|
|||
def test_convm(): | |||
"""Set up a convoluston matrix.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Functional test for the...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
spelling correction: "convolution".
Functional test for the Convolution matrix.
@@ -0,0 +1 @@ | |||
"""Discrete-time system.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test cases for the Discrete-Time Systems module.
No description provided.