mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
/**
|
|
* math.js
|
|
* https://github.com/josdejong/mathjs
|
|
*
|
|
* Math.js is an extensive math library for JavaScript and Node.js,
|
|
* compatible with JavaScript's built-in Math library.
|
|
*
|
|
* Features:
|
|
* - A flexible expression parser
|
|
* - Support for numbers, complex numbers, units, strings, arrays*,
|
|
* and matrices*
|
|
* - A large set of built-in functions and constants
|
|
* - Easily extensible with new functions and constants
|
|
* - Powerful and easy to use
|
|
*
|
|
* * Note: arrays and matrices are to be implemented.
|
|
*
|
|
* @version @@version
|
|
* @date @@date
|
|
*
|
|
* @license
|
|
* Copyright (C) 2013 Jos de Jong <wjosdejong@gmail.com>
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
* use this file except in compliance with the License. You may obtain a copy
|
|
* of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations under
|
|
* the License.
|
|
*/
|