mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
removed file
This commit is contained in:
parent
6c6b22a647
commit
5ef0a6d9a0
@ -1,29 +0,0 @@
|
||||
'use strict';
|
||||
|
||||
function factory (type, config, load, typed) {
|
||||
|
||||
var matrix = load(require('../../../type/matrix/function/matrix'));
|
||||
|
||||
var SparseMatrix = type.SparseMatrix;
|
||||
var DenseMatrix = type.DenseMatrix;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
var permute = typed('permute', {
|
||||
|
||||
'Matrix, Array, Array': function (m, p, q) {
|
||||
|
||||
},
|
||||
|
||||
'Array, Array, Array': function (a, p, q) {
|
||||
// use matrix implementation
|
||||
return permute(matrix(a, p, q).valueOf();
|
||||
}
|
||||
});
|
||||
|
||||
return permute;
|
||||
}
|
||||
|
||||
exports.name = 'permute';
|
||||
exports.factory = factory;
|
||||
Loading…
x
Reference in New Issue
Block a user