Created by Viacheslav N. Mezentsev (viacheslavmezentsev@ya.ru) in the scope of SMath project. Published by Вячеслав Мезенцев.
This is Open Source project. Sources shared under MIT Licence and available in public SVN repository.

Features of Biquaternion

Version 0.1.8037.2733

Functions

Additional components that add new mathematical functions to the SMath Studio program, necessary for solving problems from various fields.

  1. bqabs("matrix")
    (x) calculate |x|.
  2. bqacos("matrix")
    (x) calculate acos(x).
  3. bqadd("1:number", "2:number")
    (a,b) returns a + b.
  4. bqasin("matrix")
    (x) calculate asin(x).
  5. bqcos("matrix")
    (x) calculate cos(x).
  6. bqcosh("matrix")
    (x) calculate cosh(x).
  7. bqctan("matrix")
    (x) calculate ctan(x).
  8. bqdiv("1:number", "2:number")
    (a,b) returns a / b.
  9. bqexp("matrix")
    (x) calculate exp(x).
  10. bqfrm2("matrix")
    (x) converts complex matrix 2x2 to one-row biquaternion.
  11. bqlog("matrix")
    (x) calculate log(x).
  12. bqmul("1:number", "2:number")
    (a,b) returns a * b.
  13. bqneg("matrix")
    (x) calculate x^(-1).
  14. bqnew(...)
    (p0-p7) creates quaternion using components.
  15. bqsin("matrix")
    (x) calculate sin(x).
  16. bqsinh("matrix")
    (x) calculate sinh(x).
  17. bqsqrt("matrix")
    (x) calculate sqrt(x).
  18. bqsub("1:number", "2:number")
    (a,b) returns a - b.
  19. bqtan("matrix")
    (x) calculate tan(x).
  20. bqtanh("matrix")
    (x) calculate tanh(x).
  21. bqtom2("matrix")
    (x) converts one-row biquaternion to complex matrix 2x2.