SmtC: Show me the Code
Ole Peter Smith
Instituto de Matemática e Estatística
Universidade Federal de Goiás
http://www.olesmith.com.br

Introduction
Deus não se preocupe das nossas dificuldades matemáticas.
Ele integra empiricamente.
Einstein.
< Functions | Python | Vectors >
  • Free Software
  • http://www.python.org
  • Perl like... heheheh
  • Everything is a class!
    list1=[0.0,0.0] list2=[1.0,1.0] print list1+list2 print list1.__class__.__name__

    [0.0,0.0,1.0,1.0] list
  • Operator Overloading
  • Adding vectors:
    v1=[1.0,2.0] v2=[3.0,4.0] v=[0.0,0.0] for i in range( len(v1) ): v[i]= v1[i]+2v[i]
< Functions | Python | Vectors >
Messages:
0 secs.