Wiki » History » Version 8
Thomas Capricelli, 11/19/2009 12:52 AM
1 | 7 | Thomas Capricelli | {{toc}} |
---|---|---|---|
2 | |||
3 | h1. Description |
||
4 | |||
5 | 1 | Thomas Capricelli | Symia is a piece of software that helps programmers to perform "symbolic computation":http://en.wikipedia.org/wiki/Symbolic_computation, also known as *symbolic calculs*. The main characteristics are |
6 | * Symia is a library : the target audience is programmers. |
||
7 | * Symia is written in C++. |
||
8 | * Symia is released under the "GNU Lesser General Public License":http://en.wikipedia.org/wiki/LGPL, so that even close-source software can make use of it. |
||
9 | 2 | Thomas Capricelli | * Symia uses "unit tests":http://en.wikipedia.org/wiki/Unit_testing as a mean to prevent regression, to ensure robustness, and to provide working examples that the user can rely on. |
10 | 1 | Thomas Capricelli | |
11 | The only other C++ library we are aware of is "Ginac":http://en.wikipedia.org/wiki/GiNaC, which is released under the "GNU General Public License":http://en.wikipedia.org/wiki/Gpl, which prevent it from being used in the industry. |
||
12 | |||
13 | 2 | Thomas Capricelli | Symia is far from being able to do as much as, say, Maple or Ginac, but if your needs are basic, you can rely on the robust and "tested":http://en.wikipedia.org/wiki/Unit_testing Symia library. |
14 | 1 | Thomas Capricelli | |
15 | 2 | Thomas Capricelli | Symia is released by "Sylphide Consulting":http://www.sylphide-consulting.com. If you need some more features in Symia, you can either abandon the idea of using Symia, implement the missing features by yourself (and provide the code back, as the "GNU LGPL":http://en.wikipedia.org/wiki/LGPL says), or pay someone to do the job. Of course, *Sylphide Consulting* is an obvious choice for such a task, and we would be delighted if you "contact us":http://www.sylphide-consulting.com/contact about it. |
16 | 3 | Thomas Capricelli | |
17 | |||
18 | h1. Design |
||
19 | |||
20 | Quite simple and classical, see the "class diagram":http://labs.freehackers.org/embedded/symia/inherits.html |
||
21 | |||
22 | h1. Examples |
||
23 | |||
24 | 4 | Thomas Capricelli | The following code highlights the most important features of Symia. |
25 | 3 | Thomas Capricelli | |
26 | <pre><code class="c"> |
||
27 | { |
||
28 | Expression x("x"), y("y"), a("a"), b("b"), c("c"); // create symbols |
||
29 | |||
30 | // Operators and most classical functions are overloaded, so you can construct |
||
31 | 6 | Thomas Capricelli | // complex expressions the way you expect to. |
32 | 3 | Thomas Capricelli | Expression e = a*x+b*x*x*exp(-c*(x+1)/(x*x)); |
33 | |||
34 | 1 | Thomas Capricelli | // Helpers are provided to display an expression |
35 | 3 | Thomas Capricelli | QString e_as_text = e.toString(); |
36 | 6 | Thomas Capricelli | // now e_as_text is "a*x+b*x*x*exp(-c*(x+1)/(x*x))" |
37 | 3 | Thomas Capricelli | |
38 | // You can substitute an whole expression to any symbol |
||
39 | 5 | Thomas Capricelli | e = e.replace(x, b+log(c)) |
40 | 3 | Thomas Capricelli | // e now is "a*(b+log(c))+b*(b+log(c))*(b+log(c))*exp(-c*(b+log(c)+1)/((b+log(c))*(b+log(c))))" |
41 | // yes, this is ugly, and this is the reason what you are happy a computer handles that for you. |
||
42 | |||
43 | // Evaluation is about using replace() as well |
||
44 | e = e.replace(a,-3).replace(c,1).replace(b,.78); |
||
45 | // e now is "-2.31455" |
||
46 | } |
||
47 | </code></pre> |
||
48 | 7 | Thomas Capricelli | |
49 | |||
50 | h1. Frequently Asked Questions |
||
51 | |||
52 | 8 | Thomas Capricelli | Where does the name come from ? This is short for *symbolia*, which has already too much hits in google. |