Skip to content

Commit

Permalink
feat(redundancy agent): adds redundancy agent class to metrological_a…
Browse files Browse the repository at this point in the history
…gents.py
  • Loading branch information
anupam-prasad committed Jun 4, 2021
1 parent e68c262 commit 7fbe934
Show file tree
Hide file tree
Showing 7 changed files with 866 additions and 1,071 deletions.
19 changes: 19 additions & 0 deletions agentMET4FOF/exceptions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
class SensorsNotLinearlyIndependentError(Exception):
"""
Custom exception to handle the case when sensor results are not linearly independent
"""
pass


class SystemMatrixNotReducibleError(Exception):
"""
Custom exception to handle the case when the system matrix *A* is not reducible
"""
pass


class ColumnNotZeroError(Exception):
"""
Custom exception to handle the case when a redundant column has not been reduced to zero
"""
pass
Loading

0 comments on commit 7fbe934

Please sign in to comment.