Fixed "compatability" typo

This commit is contained in:
mp4096 2016-07-03 16:20:56 +02:00 committed by Mikhail Pak
parent 863538fe79
commit d5cb4f1e73
7 changed files with 9 additions and 9 deletions

View File

@ -148,7 +148,7 @@
2012-11-03 Richard Murray <murray@altura.local>
* src/rlocus.py (_RLSortRoots): convert output of range() to
explicit list for python 3 compatability
explicit list for python 3 compatibility
* tests/modelsimp_test.py, tests/slycot_convert_test.py,
tests/mateqn_test.py, tests/statefbk_test.py: updated test suites to
@ -604,7 +604,7 @@
initial_response, impulse_response and step_response.
* src/rlocus.py: changed RootLocus to root_locus for better
compatability with PEP 8. Also updated unit tests and examples.
compatibility with PEP 8. Also updated unit tests and examples.
2011-07-25 Richard Murray <murray@malabar.local>
@ -994,7 +994,7 @@
2010-09-02 Richard Murray <murray@sumatra.local>
* src/statefbk.py (place): Use np.size() instead of len() for
finding length of placed_eigs for better compatability with
finding length of placed_eigs for better compatibility with
different python versions [courtesy of Roberto Bucher]
* src/delay.py (pade): New file for delay-based computations +

View File

@ -8,7 +8,7 @@ margin.stability_margins
margin.phase_crossover_frequencies
"""
# Python 3 compatability (needs to go here)
# Python 3 compatibility (needs to go here)
from __future__ import print_function
"""Copyright (c) 2011 by California Institute of Technology

View File

@ -5,7 +5,7 @@ Matrix equation solvers (Lyapunov, Riccati)
Implementation of the functions lyap, dlyap, care and dare
for solution of Lyapunov and Riccati equations. """
# Python 3 compatability (needs to go here)
# Python 3 compatibility (needs to go here)
from __future__ import print_function
"""Copyright (c) 2011, All rights reserved.

View File

@ -40,7 +40,7 @@
#
# $Id$
# Python 3 compatability
# Python 3 compatibility
from __future__ import print_function
# External packages and modules

View File

@ -34,7 +34,7 @@
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# Python 3 compatability
# Python 3 compatibility
from __future__ import print_function
import numpy as np

View File

@ -8,7 +8,7 @@ python-control library.
"""
# Python 3 compatability (needs to go here)
# Python 3 compatibility (needs to go here)
from __future__ import print_function
"""Copyright (c) 2010 by California Institute of Technology

View File

@ -7,7 +7,7 @@ that operate on transfer functions. This is the primary representation
for the python-control library.
"""
# Python 3 compatability (needs to go here)
# Python 3 compatibility (needs to go here)
from __future__ import print_function
from __future__ import division