This was originally posted in the "software development" forum but I might aswell make use of the cool new services provided by <dream.in.code/>
Hello, my first major C++ project is this console based calculator. It has over 50 different operations and functions which are all documented in "documentation.rtf".
Some of it's functions are:
Standard Deviation:
stddev{1,5,1,2,4,9,1,2,100,0.6,-4}
Pearson's Moment Correlation Coefficient (Will be in next version):
{1,5,1,2,4,9,1,2,100,0.6,-4}pmcc{1,5,1,2,4,9,1,2,100,0.6,-4}
Angle between vectors:
[1,2,3]angle[76,1,3]
Dot product:
[1,2,3]dot[76,1,3]
Cross Product
[1,2,3]cross[76,1,3]
Triple Scalar product:
[8,21,3]dot[1,2,3]cross[76,1,3]
Greatest Common Divisor:
12gcd18
And really theres far too many good functions to list here so I'll stop there and you can look in the documentation if you want to see them.
An example executing a calculation:
5+2/10+sin80-([1,5]angle[6,1]+2log8)
The source is also avaliable on my website for members if you want to learn from that.
If you download please give feedback so I can continue this great project
Link to my website with downloads