Package Exports
- @cpp.js/sample-lib-prebuilt-matrix/cppjs.config.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@cpp.js/sample-lib-prebuilt-matrix) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@cpp.js/sample-lib-prebuilt-matrix
Simple matrix multiplier
Integration
Start by installing these package with the following command:
npm install @cpp.js/sample-lib-prebuilt-matrix
To enable the library, modify the cppjs.config.js file as shown below.
+import matrix from '@cpp.js/sample-lib-prebuilt-matrix/cppjs.config.js';
export default {
dependencies: [
+ matrix
]
paths: {
config: import.meta.url,
},
};
Usage
Below are the steps to use the Simple Matrix Multiplier in your C++ or JavaScript code.
Usage in C++ Code
+#include <Matrix.h>
std::string Native::sample() {
+ auto firstMatrix = std::make_shared<Matrix>(9, 1);
+ auto secondMatrix = std::make_shared<Matrix>(9, 2);
+ auto resultStr = std::to_string(firstMatrix->multiple(secondMatrix)->get(0));
+ return "Jā * (2*Jā) = " + resultStr + "*Jā";
}
Usage in JavaScript Code (web, with plugin)
import { initCppJs, Matrix } from '@cpp.js/sample-lib-prebuilt-matrix/Matrix.h';
await initCppJs();
const a = new Matrix(1210000, 1);
const b = new Matrix(1210000, 2);
const result = a.multiple(b);
console.log(result.get(0));
Usage in JavaScript Code (web, without plugin)
import 'node_modules/@cpp.js/sample-lib-prebuilt-matrix/dist/cppjs-sample-lib-prebuilt-matrix.browser.js';
initCppJs({ path: 'node_modules/@cpp.js/sample-lib-prebuilt-matrix/dist' }).then(({ Matrix }) => {
const a = new Matrix(1210000, 1);
const b = new Matrix(1210000, 2);
const result = a.multiple(b);
console.log(result.get(0));
});
Usage in JavaScript Code (node.js)
import 'node_modules/@cpp.js/sample-lib-prebuilt-matrix/dist/cppjs-sample-lib-prebuilt-matrix.node.js';
initCppJs().then(({ Matrix }) => {
const a = new Matrix(1210000, 1);
const b = new Matrix(1210000, 2);
const result = a.multiple(b);
console.log(result.get(0));
});