Personal tools

Difference between revisions of "Comandos útiles de Python y BASH"

From hpcwiki

Jump to: navigation, search
(Python)
(Python)
Line 2: Line 2:
 
== Python  ==
 
== Python  ==
  
 +
'''Arreglos al estilo matlab:'''
 
Es posible introducir un arreglo en numpy usando la sintaxis the matlab:
 
Es posible introducir un arreglo en numpy usando la sintaxis the matlab:
  
Line 9: Line 10:
  
 
<code> A = np.matrix([1,2],[2,3],[3,4]]  </code>.
 
<code> A = np.matrix([1,2],[2,3],[3,4]]  </code>.
 +
 +
'''Álgebra lineal:'''
 +
 +
Solución de sistemas lineales:
 +
 +
<code>from numpy.linalg import solve <br>
 +
solve(A,b)</code>
 +
 +
Autovalores y autovectores:
 +
 +
<code>from numpy.linalg import eig<br>eig(A) </code>

Revision as of 18:16, 15 April 2014

Python

Arreglos al estilo matlab: Es posible introducir un arreglo en numpy usando la sintaxis the matlab:

A = np.matrix("1.,2;3,4;5,6")

utilizando la clase np.matrix:

A = np.matrix([1,2],[2,3],[3,4]] .

Álgebra lineal:

Solución de sistemas lineales:

from numpy.linalg import solve
solve(A,b)

Autovalores y autovectores:

from numpy.linalg import eig
eig(A)