working rss feed to nostr publish

This commit is contained in:
2023-11-24 00:43:28 -05:00
parent 06edcb57ae
commit 88d2f9cfec
8396 changed files with 783105 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Carlson = void 0;
//================================================================
/**
* @packageDocumentation
* @module std.internal
*/
//================================================================
var MathUtil_1 = require("./MathUtil");
var Carlson;
(function (Carlson) {
var INFINITY = 100 * 1000;
var SECTION = INFINITY;
function rf(x, y, z) {
return (MathUtil_1.MathUtil.integral(function (t) {
var ret = t + x;
ret *= t + y;
ret *= t + z;
return 1 / Math.sqrt(ret);
}, 0, INFINITY, SECTION) / 2);
}
Carlson.rf = rf;
function rj(x, y, z, p) {
return (MathUtil_1.MathUtil.integral(function (t) {
var ret = t + x;
ret *= t + y;
ret *= t + z;
ret = (t + p) * Math.sqrt(ret);
return 1 / ret;
}, 0, INFINITY, SECTION) * 1.5);
}
Carlson.rj = rj;
function rc(x, y) {
return rf(x, y, y);
}
Carlson.rc = rc;
function rd(x, y, z) {
return rj(x, y, z, z);
}
Carlson.rd = rd;
})(Carlson = exports.Carlson || (exports.Carlson = {}));
//# sourceMappingURL=Carlson.js.map