mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-14 00:27:55 +00:00
5 lines
199 B
JavaScript
5 lines
199 B
JavaScript
export const calculateDeterminant = async matrix => {
|
|
const { det } = await import('https://cdn.jsdelivr.net/npm/mathjs@11.11.0/+esm');
|
|
return det(matrix);
|
|
};
|
|
export default calculateDeterminant; |