Skip to content

Commit e1335bf

Browse files
committed
Matplotlib tiny fixes
1 parent 870d542 commit e1335bf

File tree

3 files changed

+89
-23757
lines changed

3 files changed

+89
-23757
lines changed

09 Numeric Arrays and Data Visualization/1 NumPy: numeric arrays and calculations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ numpy.add(a, numpy.multiply(b, c))
345345

346346
Of course, object and infix notation is used everywhere in Python, but it's worth mentioning that NumPy does not deviate from it. Nevertheless, NumPy departs from the Python interpretation of some actions. In Python, operations such as multiplying lists are derived from string operations. In numerical computation, operations on elements are the basis, so in NumPy all operators default to individual pairs of elements.
347347

348-
The third reason, and perhaps the most important, is the *library of numeric functions*. Moving away from data objectivity allows you to export values ​​and communicate with libraries written in completely different programming languages. For example, SciPy can use the LAPACK library (Linear Algebra PACKage, written in Fortran 77). The fact that functions written in different languages ​​can exchange data in memory without complicated data translation is due to the fact that, as described in the previous section, all numbers are ultimately in a processor-accepted format.
348+
The third reason, and perhaps the most important, is the *library of numeric functions*. Moving away from data objectivity allows you to export values and communicate with libraries written in completely different programming languages. For example, SciPy can use the LAPACK library (Linear Algebra PACKage, written in Fortran 77). The fact that functions written in different languages can exchange data in memory without complicated data translation is due to the fact that, as described in the previous section, all numbers are ultimately in a processor-accepted format.
349349

350350
The ability to use code written in C or Fortran allows the use of old, optimized, proven solutions.
351351

0 commit comments

Comments
 (0)