Skip to content

Releases: Proektsoftbg/Calcpad

Calcpad VM 7.6.2

04 Mar 12:25

Choose a tag to compare

What's new in Calcpad VM 7.6.2:

  1. Fixed #const variable rewriting bug, issue #763
  2. Root-finding was updated with the new faster and more precise ModAB algorithm.

Calcpad VM 7.6.1

07 Feb 10:33

Choose a tag to compare

What's new in Calcpad VM version 7.6.1:

  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.
  2. 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.
  3. 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

21 Jan 14:53

Choose a tag to compare

What's new in Calcpad VM 7.6.0:

  1. Fast matrix multiplication was improved further.
  2. Made zero preserving functions (like sin(x) or random(x)) to preserve the matrix structure as well (diagonal, triangular, etc.)
  3. Improved auto-complete of functions.
  4. Fixed some more nasty little bugs.
  5. Added VS Code extension.

Calcpad VM 7.5.9

19 Jan 17:38

Choose a tag to compare

What's new in Calcpad VM version 7.5.9:

  1. Added matmul(A; B) function for fast matrix multiplication.
  2. Fixed minor bugs.

Calcpad VM 7.5.8

05 Jan 17:25

Choose a tag to compare

What's new in Calcpad VM version 7.5.8:

  1. Fixed issue #724.
  2. Fixed local image paths in #include.
  3. Fixed issue #728.
  4. Added complex step integration ($Derivative).
  5. Performed more matrix/vector tests and fixed rare matrix bugs.
  6. Fixed UI stability issues

Calcpad VM 7.5.7

08 Dec 16:05

Choose a tag to compare

What's new in version Calcpad VM 7.5.7:

  1. Fixed issues #711 (vector indexes) and #712 (custom formatting with units).
  2. Fixed issues #716 and #718 with Linux packages.
  3. Improved OpenXml equation formatting for MS Word.
  4. Added Chinese version.
  5. Fixed issue #724.

Calcpad VM 7.5.6

28 Nov 13:14

Choose a tag to compare

  1. Fixed vector arithmetic bug #702.
  2. Allowed for German µ symbol in units #699.

Calcpad VM 7.5.5

26 Nov 13:08

Choose a tag to compare

What's new in this version:

  1. Cholesky decomposition for hp matrices was parallelized and thus its performance was improved upto several times.
  2. Multiplication of upper to lower triangular matrices was fixed.

Calcpad VM 7.5.4

19 Nov 11:54

Choose a tag to compare

What's new in this version:

  1. Fixed issue #695 in indexing function arguments
  2. Fixed issue #687 in inline division.
  3. Improved inline division and composite units formatting.

Calcpad VM 7.5.3

12 Nov 12:46

Choose a tag to compare

What's new in version 7.5.3:

  1. Ported to .NET 10.0.
  2. Added $while expression block.
  3. Fixed issue #690