Releases: Proektsoftbg/Calcpad
Releases · Proektsoftbg/Calcpad
Calcpad VM 7.6.2
What's new in Calcpad VM 7.6.2:
- Fixed #const variable rewriting bug, issue #763
- Root-finding was updated with the new faster and more precise ModAB algorithm.
Calcpad VM 7.6.1
What's new in Calcpad VM version 7.6.1:
- All variables, created inside $repeat block with "
=" operator are made local for consistency with other blocks. If an eponymous variable exists outside, its value will remain unchanged. - A new operator "
←" was added with shortcut "<*". Instead of creating a new local variable in a block, it searches for an existing variable from the outer scope or global one and modifies. In case of several nested blocks, it finds the innermost variable with the closest level. - A new keyword "
#const" is introduced for defining constant (readonly) variables and functions:
#const# a = 2
#const# f(x) = x^2
Once created with "#const", any attempt to assign a new value or expression to them further will throw an error message.
For best results, uninstall the old version completely before installing this one.
Calcpad VM 7.6.0
What's new in Calcpad VM 7.6.0:
- Fast matrix multiplication was improved further.
- Made zero preserving functions (like sin(x) or random(x)) to preserve the matrix structure as well (diagonal, triangular, etc.)
- Improved auto-complete of functions.
- Fixed some more nasty little bugs.
- Added VS Code extension.
Calcpad VM 7.5.9
What's new in Calcpad VM version 7.5.9:
- Added matmul(A; B) function for fast matrix multiplication.
- Fixed minor bugs.
Calcpad VM 7.5.8
Calcpad VM 7.5.7
Calcpad VM 7.5.6
Calcpad VM 7.5.5
What's new in this version:
- Cholesky decomposition for hp matrices was parallelized and thus its performance was improved upto several times.
- Multiplication of upper to lower triangular matrices was fixed.
Calcpad VM 7.5.4
Calcpad VM 7.5.3
What's new in version 7.5.3:
- Ported to .NET 10.0.
- Added $while expression block.
- Fixed issue #690