- String input is now converted to numbers by default for all functions.
- Adding two strings will no longer concatenate them, but will convert the strings to numbers and add them.
- Implemented support for fractions, powered by the library
fraction.js
. - Implemented matrix LU decomposition with partial pivoting and a LU based
linear equations solver (functions
lup
andlusolve
). Thanks @rjbaucells. - Implemented a new configuration option
predictable
, which can be set to true in order to ensure predictable function output types. - Implemented function
intersect
. Thanks @kv-kunalvyas. - Implemented support for adding
toTex
properties to custom functions. Thanks @FSMaxB. - Implemented util functions
isInteger
,isNegative
,isNumeric
,isPositive
, andisZero
. - Large internal refactoring, allowing to create custom bundles of math.js.
- Function
typeof
no longer returns lower case names, but now returns lower case names for primitives (likenumber
,boolean
,string
), and upper-camel-case for non-primitives (likeArray
,Complex
,Function
). - Function
import
now returns the imported objects. - Function
import
no longer supports a module name as argument. Instead, modules can be loaded using require:math.import(require('module-name'))
. - Function
import
has a new optionsilent
to ignore errors, and throws errors on duplicates by default. - Method
Node.compile()
no longer needsmath
to be passed as argument. - Function
sum
now returns zero when input is an empty array. Thanks @FSMAxB. - The size of Arrays is no longer validated. Matrices will validate this on creation.
- Implemented function
quantileSeq
andpartitionSelect
. Thanks @BigFav. - Implemented functions
stirlingS2
,bellNumbers
,composition
, andmultinomial
. Thanks @devanp92. - Improved the performance of
median
(see #373). Thanks @BigFav. - Extended the command line interface with a
mode
option to output either the expressions result, string representation, or tex representation. Thanks @FSMaxB. - Fixed #309: Function median mutating the input matrix. Thanks @FSMaxB.
- Fixed
Node.transform
not recursing over replaced parts of the node tree (see #349). - Fixed #381: issue in docs of
randomInt
.
- Improvements in
toTex
. Thanks @FSMaxB. - Fixed #328:
abs(0 + 0i)
evaluated toNaN
. - Fixed not being able to override lazy loaded constants.
- Fixed #313: parsed functions did not handle recursive calls correctly.
- Fixed #251: binary prefix and SI prefix incorrectly used for byte. Now
following SI standards (
1 KiB == 1024 B
,1 kB == 1000 B
). - Performance improvements in parsed functions.
- Fixed #316: a bug in rounding values when formatting.
- Fixed #317, #319: a bug in formatting negative values.
- Added unit
stone
(6.35 kg). - Implemented support for sparse matrices. Thanks @rjbaucells.
- Implemented BigNumber support for function
atan2
. Thanks @BigFav. - Implemented support for custom LaTeX representations. Thanks @FSMaxB.
- Improvements and bug fixes in outputting parentheses in
Node.toString
andNode.toTex
functions. Thanks @FSMaxB. - Fixed #291: function
format
sometimes returning exponential notation when it should return a fixed notation.
- Implemented trigonometric functions:
acosh
,acoth
,acsch
,asech
,asinh
,atanh
,acot
,acsc
,asec
. Thanks @BigFav. - Added BigNumber support for functions:
cot
,csc
,sec
,coth
,csch
,sech
. Thanks @BigFav. - Implemented support for serialization and deserialization of math.js data types.
- Fixed the calculation of
norm()
andabs()
for large complex numbers. Thanks @rjbaucells. - Fixed #281: improved formatting complex numbers. Round the real or imaginary part to zero when the difference is larger than the configured precision.
- Implemented BigNumber implementations of most trigonometric functions:
sin
,cos
,tan
,asin
,acos
,atan
,cosh
,sinh
,tanh
. Thanks @BigFav. - Implemented function
trace
. Thanks @pcorey. - Faster loading of BigNumber configuration with a high precision by lazy
loading constants like
pi
ande
. - Fixed constants
NaN
andInfinity
not being BigNumber objects when BigNumbers are configured. - Fixed missing parentheses in the
toTex
representation of functionpermutations
. - Some minor fixes in the docs. Thanks @KenanY.
- Support for bitwise operations
bitAnd
,bitNot
,bitOr
,bitXor
,leftShift
,rightArithShift
, andrightLogShift
. Thanks @BigFav. - Support for boolean operations
and
,not
,or
,xor
. Thanks @BigFav. - Support for
gamma
function. Thanks @BigFav. - Converting a unit without value will now result in a unit with value,
i.e.
inch in cm
will return2.54 cm
instead ofcm
. - Improved accuracy of
sinh
and complexcos
andsin
. Thanks @pavpanchekha. - Renamed function
select
tochain
. The old functionselect
will remain functional until math.js v2.0. - Upgraded to decimal.js v4.0.1 (BigNumber library).
- Fixed Unit divided by Number returning zero.
- Fixed BigNumber downgrading to Number for a negative base in
pow
. - Fixed some typos in error messaging (thanks @andy0130tw) and docs.
- Implemented functions
dot
(dot product),cross
(cross product), andnthRoot
. - Officially opened up the API of expression trees:
- Documented the API.
- Implemented recursive functions
clone
,map
,forEach
,traverse
,transform
, andfilter
for expression trees. - Parameter
index
in the callbacks ofmap
andforEach
are now cloned for every callback. - Some internal refactoring inside nodes to make the API consistent:
- Renamed
params
toargs
and vice versa to make things consistent. - Renamed
Block.nodes
toBlock.blocks
. FunctionNode
now has aname: string
instead of asymbol: SymbolNode
.- Changed constructor of
RangeNode
tonew RangeNode(start: Node, end: Node [, step: Node])
. - Nodes for a
BlockNode
must now be passed via the constructor instead of via a functionadd
.
- Renamed
- Fixed
2e
giving a syntax error instead of being parsed as2 * e
.
- Disabled array notation for ranges in a matrix index in the expression parser (it is confusing and redundant there).
- Fixed a regression in the build of function subset not being able to return a scalar.
- Fixed some missing docs and broken links in the docs.
- Implemented a function
filter(x, test)
. - Removed
math.distribution
for now, needs some rethinking. math.number
can convert units to numbers (requires a second argument)- Fixed some precedence issues with the range and conversion operators.
- Fixed an zero-based issue when getting a matrix subset using an index containing a matrix.
- Implemented functions
sort(x [, compare])
andflatten(x)
. - Implemented support for
null
in all functions. - Implemented support for "rawArgs" functions in the expression parser. Raw functions are invoked with unevaluated parameters (nodes).
- Expressions in the expression parser can now be spread over multiple lines, like '2 +\n3'.
- Changed default value of the option
wrap
of functionmath.import
to false. - Changed the default value for new entries in a resized matrix when to zero.
To leave new entries uninitialized, use the new constant
math.uninitialized
as default value. - Renamed transform property from
__transform__
totransform
, and documented the transform feature. - Fixed a bug in
math.import
not applying options when passing a module name. - A returned matrix subset is now only squeezed when the
index
consists of scalar values, and no longer for ranges resolving into a single value.
- A new instance of math.js can no longer be created like
math([options])
, to prevent side effects from math being a function instead of an object. Instead, use the functionmath.create([options])
to create a new instance. - Implemented
BigNumber
support for all constants:pi
,tau
,e
,phi
,E
,LN2
,LN10
,LOG2E
,LOG10E
,PI
,SQRT1_2
, andSQRT2
. - Implemented
BigNumber
support for functionsgcd
,xgcd
, andlcm
. - Fixed function
gxcd
returning an Array when math.js was configured as{matrix: 'matrix'}
. - Multi-line expressions now return a
ResultSet
instead of anArray
. - Implemented transforms (used right now to transform one-based indices to zero-based for expressions).
- When used inside the expression parser, functions
concat
,min
,max
, andmean
expect an one-based dimension number. - Functions
map
andforEach
invoke the callback with one-based indices when used from within the expression parser. - When adding or removing dimensions when resizing a matrix, the dimensions are added/removed from the inner side (right) instead of outer side (left).
- Improved index out of range errors.
- Fixed function
concat
not accepting aBigNumber
for parameterdim
. - Function
squeeze
now squeezes both inner and outer singleton dimensions. - Output of getting a matrix subset is not automatically squeezed anymore except for scalar output.
- Renamed
FunctionNode
toFunctionAssignmentNode
, and renamedParamsNode
toFunctionNode
for more clarity. - Fixed broken auto completion in CLI.
- Some minor fixes.
-
The library now immediately returns a default instance of mathjs, there is no need to instantiate math.js in a separate step unless one ones to set configuration options:
// instead of: var mathjs = require('mathjs'), // load math.js math = mathjs(); // create an instance // just do: var math = require('mathjs');
-
Implemented support for implicit multiplication, like
math.eval('2a', {a:3})
andmath.eval('(2+3)(1-3)')
. This changes behavior of matrix indexes as well: an expression like[...][...]
is not evaluated as taking a subset of the first matrix, but as an implicit multiplication of two matrices. -
Removed utility function
ifElse
. This function is redundant now the expression parser has a conditional operatora ? b : c
. -
Fixed a bug with multiplying a number with a temperature,
likemath.eval('10 * celsius')
. -
Fixed a bug with symbols having value
undefined
not being evaluated.
- Something went wrong with publishing on npm.
- Added constant
null
. - Functions
equal
andunequal
supportnull
andundefined
now. - Function
typeof
now recognizes regular expressions as well. - Objects
Complex
,Unit
, andHelp
now return their string representation when calling.valueOf()
. - Changed the default number of significant digits for BigNumbers from 20 to 64.
- Changed the behavior of the conditional operator (a ? b : c) to lazy evaluating.
- Fixed imported, wrapped functions not accepting
null
andundefined
as function arguments.
-
Renamed some functions (everything now has a logical, camel case name):
- Renamed functions
edivide
,emultiply
, andepow
todotDivide
,dotMultiply
, anddotPow
respectively. - Renamed functions
smallereq
andlargereq
tosmallerEq
andlargerEq
. - Renamed function
unary
tounaryMinus
and added support for strings.
- Renamed functions
-
end
is now a reserved keyword which cannot be used as function or symbol name in the expression parser, and is not allowed in the scope against which an expression is evaluated. -
Implemented function
unaryPlus
and unary plus operator. -
Implemented function
deepEqual
for matrix comparisons. -
Added constant
phi
, the golden ratio (phi = 1.618...
). -
Added constant
version
, returning the version number of math.js as string. -
Added unit
drop
(gtt
). -
Fixed not being able to load math.js using AMD/require.js.
-
Changed signature of
math.parse(expr, nodes)
tomath.parse(expr, options)
whereoptions: {nodes: Object.<String, Node>}
-
Removed matrix support from conditional function
ifElse
. -
Removed automatic assignment of expression results to variable
ans
. This functionality can be restored by pre- or postprocessing every evaluation, something like:function evalWithAns (expr, scope) { var ans = math.eval(expr, scope); if (scope) { scope.ans = ans; } return ans; }
- Implemented support to export expressions to LaTeX. Thanks Niels Heisterkamp (@nheisterkamp).
- Output of matrix multiplication is now consistently squeezed.
- Added reference documentation in the section /docs/reference.
- Fixed a bug in multiplying units without value with a number (like
5 * cm
). - Fixed a bug in multiplying two matrices containing vectors (worked fine for arrays).
- Fixed random functions not accepting Matrix as input, and always returning a Matrix as output.
- Removed
crypto
library from the bundle. - Deprecated functions
Parser.parse
andParser.compile
. Usemath.parse
andmath.compile
instead. - Fixed function
add
not adding strings and matrices element wise. - Fixed parser not being able to evaluate an exponent followed by a unary minus
like
2^-3
, and a transpose followed by an index like[3]'[1]
.
- Implemented trigonometric hyperbolic functions
cosh
,coth
,csch
,sech
,sinh
,tanh
. Thanks Rogelio J. Baucells (@rjbaucells). - Added property
type
to all expression nodes in an expression tree. - Fixed functions
log
,log10
,pow
, andsqrt
not supporting complex results from BigNumber input (likesqrt(bignumber(-4))
).
- Switched to module
decimal.js
for BigNumber support, instead ofbignumber.js
. - Implemented support for polar coordinates to the
Complex
datatype. Thanks Finn Pauls (@finnp). - Implemented BigNumber support for functions
exp
,log
, andlog10
. - Implemented conditional operator
a ? b : c
in expression parser. - Improved floating point comparison: the functions now check whether values
are nearly equal, against a configured maximum relative difference
epsilon
. Thanks Rogelio J. Baucells (@rjbaucells). - Implemented function
norm
. Thanks Rogelio J. Baucells (@rjbaucells). - Improved function
ifElse
, is now specified for special data types too. - Improved function
det
. Thanks Bryan Cuccioli (@bcuccioli). - Implemented
BigNumber
support for functionsdet
anddiag
. - Added unit alias
lbs
(pound mass). - Changed configuration option
decimals
toprecision
(applies to BigNumbers only). - Fixed support for element-wise comparisons between a string and a matrix.
- Fixed: expression parser now trows IndexErrors with one-based indices instead of zero-based.
- Minor bug fixes.
- Implemented functions
compare
,sum
,prod
,var
,std
,median
. - Implemented function
ifElse
Thanks @mtraynham. - Minor bug fixes.
- Added unit
feet
. - Implemented function
compile
(shortcut for parsing and then compiling). - Improved performance of function
pow
for matrices. Thanks @hamadu. - Fixed broken auto completion in the command line interface.
- Fixed an error in function
combinations
for large numbers, and improved performance of both functionscombinations
andpermutations
.
- Changed matrix index notation of expression parser from round brackets to
square brackets, for example
A[1, 1:3]
instead ofA(1, 1:3)
. - Removed need to use the
function
keyword for function assignments in the expression parser, you can define a function now likef(x) = x^2
. - Implemented a compilation step in the expression parser: expressions are compiled into JavaScript, giving much better performance (easily 10x as fast).
- Renamed unit conversion function and operator
in
toto
. Operatorin
is still available in the expression parser as an alias forto
. Added unitin
, an abbreviation forinch
. Thanks Elijah Insua (@tmpvar). - Added plurals and aliases for units.
- Implemented an argument
includeEnd
for functionrange
(false by default). - Ranges in the expression parser now support big numbers.
- Implemented functions
permutations
andcombinations
. Thanks Daniel Levin (@daniel-levin). - Added lower case abbreviation
l
for unit litre.
- Fixed a bug with negative temperatures.
- Fixed a bug with prefixes of units squared meter
m2
and cubic meterm3
.
- Renamed and flattened configuration settings:
number.defaultType
is nownumber
.number.precision
is nowdecimals
.matrix.defaultType
is nowmatrix
.
- Function
multiply
now consistently outputs a complex number on complex input. - Fixed
mod
andin
not working as function (only as operator). - Fixed support for old browsers (IE8 and older), compatible when using es5-shim.
- Fixed support for Java's ScriptEngine.
- Implemented BigNumber support for arbitrary precision calculations.
Added settings
number.defaultType
andnumber.precision
to configure big numbers. - Documentation is extended.
- Removed utility functions
isScalar
,toScalar
,isVector
,toVector
fromMatrix
andRange
. Usemath.squeeze
andmath.size
instead. - Implemented functions
get
andset
onMatrix
, for easier and faster retrieval/replacement of elements in a matrix. - Implemented function
resize
, handling matrices, scalars, and strings. - Functions
ones
andzeros
now return an empty matrix instead of a number 1 or 0 when no arguments are provided. - Implemented functions
min
andmax
forRange
andIndex
. - Resizing matrices now leaves new elements undefined by default instead of
filling them with zeros. Function
resize
now has an extra optional parameterdefaultValue
. - Range operator
:
in expression parser has been given a higher precedence. - Functions don't allow arguments of unknown type anymore.
- Options be set when constructing a math.js instance or using the new function
config(options
. Options are no longer accessible viamath.options
. - Renamed
scientific
notation toexponential
in functionformat
. - Function
format
outputs exponential notation with positive exponents now always with+
sign, so outputs2.1e+3
instead of2.1e3
. - Fixed function
squeeze
not being able squeeze into a scalar. - Some fixes and performance improvements in the
resize
andsubset
functions. - Function
size
now adheres to the optionmatrix.defaultType
for scalar input. - Minor bug fixes.
- Math.js must be instantiated now, static calls are no longer supported. Usage:
- node.js:
var math = require('mathjs')();
- browser:
var math = mathjs();
- node.js:
- Implemented support for multiplying vectors with matrices.
- Improved number formatting:
- Function
format
now support various options: precision, different notations (fixed
,scientific
,auto
), and more. - Numbers are no longer rounded to 5 digits by default when formatted.
- Implemented a function
format
forMatrix
,Complex
,Unit
,Range
, andSelector
to format using options. - Function
format
does only stringify values now, and has a new parameterprecision
to round to a specific number of digits. - Removed option
math.options.precision
, usemath.format(value [, precision])
instead. - Fixed formatting numbers as scientific notation in some cases returning a zero digit left from the decimal point. (like "0.33333e8" rather than "3.3333e7"). Thanks @husayt.
- Function
- Implemented a function
print
to interpolate values in a template string, this functionality was moved from the functionformat
. - Implemented statistics function
mean
. Thanks Guillermo Indalecio Fernandez (@guillermobox). - Extended and changed
max
andmin
for multi dimensional matrices: they now return the maximum and minimum of the flattened array. An optional second argumentdim
allows to calculate themax
ormin
for specified dimension. - Renamed option
math.options.matrix.default
tomath.options.matrix.defaultType
. - Removed support for comparing complex numbers in functions
smaller
,smallereq
,larger
,largereq
. Complex numbers cannot be ordered.
- Introduced an option
math.options.matrix.default
which can have valuesmatrix
(default) orarray
. This option is used by the functionseye
,ones
,range
, andzeros
, to determine the type of matrix output. - Getting a subset of a matrix will automatically squeeze the resulting subset, setting a subset of a matrix will automatically unsqueeze the given subset.
- Removed concatenation of nested arrays in the expression parser.
You can now input nested arrays like in JavaScript. Matrices can be
concatenated using the function
concat
. - The matrix syntax
[...]
in the expression parser now creates 1 dimensional matrices by default.math.eval('[1,2,3,4]')
returns a matrix with size[4]
,math.eval('[1,2;3,4]')
returns a matrix with size[2,2]
. - Documentation is restructured and extended.
- Fixed non working operator
mod
(modulus operator).
- Implemented support for booleans in all relevant functions.
- Implemented functions
map
andforEach
. Thanks Sebastien Piquemal (@sebpic). - All construction functions can be used to convert the type of variables, also element-wise for all elements in an Array or Matrix.
- Changed matrix indexes of the expression parser to one-based with the upper-bound included, similar to most math applications. Note that on a JavaScript level, math.js uses zero-based indexes with excluded upper-bound.
- Removed support for scalars in the function
subset
, it now only supports Array, Matrix, and String. - Removed the functions
get
andset
from a selector, they are a duplicate of the functionsubset
. - Replaced functions
get
andset
ofMatrix
with a single functionsubset
. - Some moving around with code and namespaces:
- Renamed namespace
math.expr
tomath.expression
(contains Scope, Parser, node objects). - Renamed namespace
math.docs
tomath.expression.docs
. - Moved
math.expr.Selector
tomath.chaining.Selector
.
- Renamed namespace
- Fixed some edge cases in functions
lcm
andxgcd
.
- Fixed outdated version of README.md.
- Fixed a broken unit test.
- Implemented functions
random([min, max])
,randomInt([min, max])
,pickRandom(array)
. Thanks Sebastien Piquemal (@sebpic). - Implemented function
distribution(name)
, generating a distribution object with functionsrandom
,randomInt
,pickRandom
for different distributions. Currently supportinguniform
andnormal
. - Changed the behavior of
range
to exclude the upper bound, sorange(1, 4)
now returns[1, 2, 3]
instead of[1, 2, 3, 4]
. - Changed the syntax of
range
, which is nowrange(start, end [, step])
instead ofrange(start, [step, ] end)
. - Changed the behavior of
ones
andzeros
to geometric dimensions, for exampleones(3)
returns a vector with length 3, filled with ones, andones(3,3)
returns a 2D array with size [3, 3]. - Changed the return type of
ones
andzeros
: they now return an Array when arguments are Numbers or an Array, and returns a Matrix when the argument is a Matrix. - Change matrix index notation in parser from round brackets to square brackets,
for example
A[0, 0:3]
. - Removed the feature introduced in v0.10.0 to automatically convert a complex value with an imaginary part equal to zero to a number.
- Fixed zeros being formatted as null. Thanks @TimKraft.
- Fixed missing development dependency
- Changed math.js from one-based to zero-based indexes.
- Getting and setting matrix subset is now zero-based.
- The dimension argument in function
concat
is now zero-based.
- Improvements in the string output of function help.
- Added constants
true
andfalse
. - Added constructor function
boolean
. - Fixed function
select
not accepting0
as input. Thanks Elijah Manor (@elijahmanor). - Parser now supports multiple unary minus operators after each other.
- Fixed not accepting empty matrices like
[[], []]
. - Some fixes in the end user documentation.
- For complex calculations, all functions now automatically replace results
having an imaginary part of zero with a Number. (
2i * 2i
now returns a Number-4
instead of a Complex-4 + 0i
). - Implemented support for injecting custom node handlers in the parser. Can be used for example to implement a node handler for plotting a graph.
- Implemented end user documentation and a new
help
function. - Functions
size
andsqueeze
now return a Matrix instead of an Array as output on Matrix input. - Added a constant tau (2 * pi). Thanks Zak Zibrat (@palimpsests).
- Renamed function
unaryminus
tounary
. - Fixed a bug in determining node dependencies in function assignments.
- Implemented element-wise functions and operators:
emultiply
(x .* y
),edivide
(x ./ y
),epow
(x .^ y
). - Added constants
Infinity
andNaN
. - Removed support for Workspace to keep the library focused on its core task.
- Fixed a bug in the Complex constructor, not accepting NaN values.
- Fixed division by zero in case of pure complex values.
- Fixed a bug in function multiply multiplying a pure complex value with Infinity.
- Implemented function
math.parse(expr [,scope])
. Optional parameter scope can be a plain JavaScript Object containing variables. - Extended function
math.expr(expr [, scope])
with an additional parameterscope
, similar toparse
. Example:math.eval('x^a', {x:3, a:2});
. - Implemented function
subset
, to get or set a subset from a matrix, string, or other data types. - Implemented construction functions number and string (mainly useful inside the parser).
- Improved function
det
. Thanks Bryan Cuccioli (@bcuccioli). - Moved the parse code from prototype math.expr.Parser to function math.parse, simplified Parser a little bit.
- Strongly simplified the code of Scope and Workspace.
- Fixed function mod for negative numerators, and added error messages in case of wrong input.
- Extended the import function and some other minor improvements.
- Fixed a bug in merging one dimensional vectors into a matrix.
- Fixed a bug in function subtract, when subtracting a complex number from a real number.
- Fixed an npm warning when installing mathjs globally.
- Implemented a command line interface. When math.js is installed globally via npm, the application is available on your system as 'mathjs'.
- Implemented
end
keyword for index operator, and added support for implicit start and end (expressions likea(2,:)
andb(2:end,3:end-1)
are supported now). - Function math.eval is more flexible now: it supports variables and multi-line expressions.
- Removed the read-only option from Parser and Scope.
- Fixed non-working unequal operator != in the parser.
- Fixed a bug in resizing matrices when replacing a subset.
- Fixed a bug in updating a subset of a non-existing variable.
- Minor bug fixes.
- Fixed method unequal, which was checking for equality instead of inequality. Thanks @FJS2.
- Improvements in the parser:
- Added support for chained arguments.
- Added support for chained variable assignments.
- Added a function remove(name) to remove a variable from the parsers scope.
- Renamed nodes for more consistency and to resolve naming conflicts.
- Improved stringification of an expression tree.
- Some simplifications in the code.
- Minor bug fixes.
- Fixed a bug in the parser, returning NaN instead of throwing an error for a
number with multiple decimal separators like
2.3.4
. - Fixed a bug in Workspace.insertAfter.
- Fixed: math.js now works on IE 6-8 too.
- Implemented method
math.eval
, which uses a readonly parser to evaluate expressions. - Implemented method
xgcd
(extended eucledian algorithm). Thanks Bart Kiers (@bkiers). - Improved math.format, which now rounds values to a maximum number of digits
instead of decimals (default is 5 digits, for example
math.format(math.pi)
returns3.1416
). - Added examples.
- Changed methods square and cube to evaluate matrices element wise (consistent with all other methods).
- Changed second parameter of method import to an object with options.
- Fixed method math.typeof on IE.
- Minor bug fixes and improvements.
- Implemented chained operations via method math.select(). For example
math.select(3).add(4).subtract(2).done()
will return5
. - Implemented methods gcd and lcm.
- Implemented method
Unit.in(unit)
, which creates a clone of the unit with a fixed representation. For examplemath.unit('5.08 cm').in('inch')
will return a unit which string representation always is in inch, thus2 inch
.Unit.in(unit)
is the same as methodmath.in(x, unit)
. - Implemented
Unit.toNumber(unit)
, which returns the value of the unit when represented with given unit. For examplemath.unit('5.08 cm').toNumber('inch')
returns the number2
, as the representation of the unit in inches has 2 as value. - Improved: method
math.in(x, unit)
now supports a string as second parameter, for examplemath.in(math.unit('5.08 cm'), 'inch')
. - Split the end user documentation of the parser functions from the source files.
- Removed function help and the built-in documentation from the core library.
- Fixed constant i being defined as -1i instead of 1i.
- Minor bug fixes.
- Implemented data types Matrix and Range.
- Implemented matrix methods clone, concat, det, diag, eye, inv, ones, size, squeeze, transpose, zeros.
- Implemented range operator
:
, and transpose operator'
in parser. - Changed: created construction methods for easy object creation for all data
types and for the parser. For example, a complex value is now created
with
math.complex(2, 3)
instead ofnew math.Complex(2, 3)
, and a parser is now created withmath.parser()
instead ofnew math.parser.Parser()
. - Changed: moved all data types under the namespace math.type, and moved the Parser, Workspace, etc. under the namespace math.expr.
- Changed: changed operator precedence of the power operator:
- it is now right associative instead of left associative like most scripting
languages. So
2^3^4
is now calculated as2^(3^4)
. - it has now higher precedence than unary minus most languages, thus
-3^2
is now calculated as-(3^2)
.
- it is now right associative instead of left associative like most scripting
languages. So
- Changed: renamed the parsers method 'put' into 'set'.
- Fixed: method 'in' did not check for units to have the same base.
- Implemented Array support for all methods.
- Implemented Array support in the Parser.
- Implemented method format.
- Implemented parser for units, math.Unit.parse(str).
- Improved parser for complex values math.Complex.parse(str);
- Improved method help: it now evaluates the examples.
- Fixed: a scoping issue with the Parser when defining functions.
- Fixed: method 'typeof' was not working well with minified and mangled code.
- Fixed: errors in determining the best prefix for a unit.
- Implemented Workspace
- Implemented methods cot, csc, sec.
- Implemented Array support for methods with one parameter.
- Parser, Scope, and expression tree with Nodes implemented.
- Implemented method import which makes it easy to extend math.js.
- Implemented methods arg, conj, cube, equal, factorial, im, largereq, log(x, base), log10, mod, re, sign, smallereq, square, unequal.
- Reached full compatibility with Javascripts built-in Math library.
- More functions implemented.
- Some bugfixes.
- All constants of Math implemented, plus the imaginary unit i.
- Data types Complex and Unit implemented.
- First set of functions implemented.
- First publish of the mathjs package. (package is still empty)