mathjs/lib/function/algebra/sparse/sparse_unflip.js
Rogelio J. Baucells 4197743500 sparse lu()
2015-04-23 17:39:30 -04:00

25 lines
566 B
JavaScript

'use strict';
function factory (type, config, load) {
var sparse_flip = load(require('./sparse_flip'));
/**
* Flips the value if it is negative of returns the same value otherwise.
*
* @param {Number} i The value to flip
*
* Reference: http://faculty.cse.tamu.edu/davis/publications.html
*/
var sparse_unflip = function (i) {
// flip the value if it is negative
return i < 0 ? sparse_flip(i) : i;
};
return sparse_unflip;
}
exports.name = 'sparse_unflip';
exports.path = 'sparse';
exports.factory = factory;