4

math.js ( http://mathjs.org/docs/reference/functions/inv.html ) を使用しようとしていますが、それを HTML ファイルに含める方法がわかりません。

これをファイルに追加することで含めることができると読みました:

var math = require('mathjs');

しかし、それは私にはうまくいきませんでした

これは本当にばかげた質問のように聞こえますが、自分で理解しようとしましたが、うまくいきませんでした。

私の質問に答えるには、math.js を正常に使用する完全な HTML ファイル (コードの一部だけでなく) を表示するだけです。

ありがとう

Alexander O'Maraが提案したことを試してみたところ、次のようになりました。

/** * Math.js can easily be extended with functions and variables using the * `import` function. The function `import` accepts a module name or an object * containing functions and variables. */ // load math.js (using node.js) var math = require('../index'); /** * Define new functions and variables */ math.import({ myConstant: 42, hello: function (name) { return 'hello, ' + name + '!'; } }); // defined methods can be used in both JavaScript as well as the parser print(math.myConstant * 2); // 84 print(math.hello('user')); // 'hello, user!' print(math.eval('myConstant + 10')); // 52 print(math.eval('hello("user")')); // 'hello, user!' /** * Import the math library numbers.js, https://github.com/sjkaliski/numbers.js * The library must be installed first using npm: * npm install numbers */ try { // load the numbers.js library var numbers = require('numbers'); // import the numbers.js library into math.js math.import(numbers, {wrap: true, silent: true}); if (math.fibonacci) { // calculate fibonacci print(math.fibonacci(7)); // 13 print(math.eval('fibonacci(7)')); // 13 } } catch (err) { console.log('Warning: To import numbers.js, the library must ' + 'be installed first via `npm install numbers`.'); } /** * Import the math library numeric.js, http://numericjs.com/ * The library must be installed first using npm: * npm install numeric */ try { // load the numeric.js library var numeric = require('numeric'); // import the numeric.js library into math.js math.import(numeric, {wrap: true, silent: true}); if (math.eig) { // calculate eigenvalues of a matrix print(math.eval('eig([1, 2; 4, 3])').lambda.x); // [5, -1]; // solve AX = b var A = math.eval('[1, 2, 3; 2, -1, 1; 3, 0, -1]'); var b = [9, 8, 3]; print(math.solve(A, b)); // [2, -1, 3] } } catch (err) { console.log('Warning: To import numeric.js, the library must ' + 'be installed first via `npm install numeric`.'); } /** * By default, the function import does not allow overriding existing functions. * Existing functions can be overridden by specifying option `override: true` */ math.import({ pi: 3.14 }, { override: true }); print(math.pi); // returns 3.14 instead of 3.141592653589793 /** * Helper function to output a value in the console. Value will be formatted. * @param {*} value */ function print (value) { var precision = 14; console.log(math.format(value, precision)); }
4

4 に答える 4

6

ブラウザで require を使用しないでください。次のようなことを試してみてください。

<!DOCTYPE HTML>
<html>
<head>
  <script src="math.js" type="text/javascript"></script>
</head>
<body>
  <script type="text/javascript">
    // use math.js
    math.sqrt(-4); // 2i
  </script>
</body>
</html>

ドキュメントを確認してください: http://mathjs.org/docs/getting_started.html

于 2016-07-16T23:17:55.333 に答える
2

http://api.mathjs.orgという安らかな API を使用できます。または、ここからプロダクションをダウンロードして、それを JS に含めることができるはずです。

あなたの頭のタグで:

<script src="math.js" type="text/javascript"></script>
于 2016-07-16T23:16:58.273 に答える