removed file

This commit is contained in:
rjbaucells 2015-05-11 22:28:08 -04:00
parent 6c6b22a647
commit 5ef0a6d9a0

View File

@ -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;