Revision 704037
Go back to digest for 26th August 2007Features in Educational
Aleix Pol Gonzalez committed changes in /trunk/KDE/kdeedu/kalgebra/src:
Piecewise working on evaluation and simplification.
Yey! KAlgebra can calculate the fibonacci sequence (don't give him numbers too high, please!)
Here you have it :P fib:=n->piecewise { eq(n,0)?0, eq(n,1)?1, ?fib(n-1)+fib(n-2) }
File Changes
Modified 13 files
- /trunk/KDE/kdeedu/kalgebra/src
- /dictionary.cpp
- /expressionedit.cpp
- /operatorsmodel.cpp
- /operatorsmodel.h
- /analitza/analitza.cpp
- /analitza/analitza.h
- /analitza/container.cpp
- /analitza/exp.cpp
- /analitza/object.cpp
- /analitza/object.h
- /analitza/operator.cpp
- /analitza/operator.h
- /analitza/variables.cpp
13 files changed in total