Socket
Socket
Sign inDemoInstall

@bakedpotatolord/calclib

Package Overview
Dependencies
0
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @bakedpotatolord/calclib

A lightweight and versatile set of functions for basic calculus operations.


Version published
Weekly downloads
1
Maintainers
1
Install size
20.7 kB
Created
Weekly downloads
 

Readme

Source

CalcLib.js


A lightweight and versatile set of functions for basic calculus operations.

Usage

import {derivitiveAtX} from '@bakedpotatolord/calclib'

derivitiveAtX((x)=>20*x,0,0.0001) //returns 20

This library has functions for:

  • Definite Integration
  • Derivite at a Point
  • Area Around an Axis
  • 2 Variable Integration
  • Arc Length

Definite Integration

finds the area under a curve

integrate(1,0,1,0.001) //returns 1
4*integrate((x)=> Math.sqrt(1-x**2),0,1,0.0001) //returns ~PI
integrate((x)=> 2*Math.cos(x),0,Math.PI/2,0.001) //returns  2

Derivitive at a Point

returns the slope of the tangent line at a point on a function (positive accuracy approaches from right. negative approaches from left)

derivitiveAtX((x)=>20*x,0,0.0001) //returns 20
derivitiveAtX((x)=>1/x,0,-0.001) //returns Infinity

Area Around Axis

Returns the area of a function revolved around a given axis, between two points

areaAroundAxis(2,'x',0,1,0.0001) // returns 4*PI ~= 12.566
areaAroundAxis((x)=>x**2,'y',0,1,0.0001) // returns PI/2 ~= 1.57

2 Variable Integration

returns the area of a shape bounded by the surface produced by the function, bound inputs, and the xy axis

integrate2D(1,0,1,0,1,0.001) // returns 1
integrate2D((x,y)=>Math.cos(x)*Math.cos(y),0,1,0,1,0.00001) //returns ~0.708

Arc Length

returns the length of an arc between two bounds

arcLength((x)=>x**2,0,2,0.001) //returns ~4.6467
arcLength((x)=>Math.sin(x),0,6,0.001) //returns ~7.24256

Keywords

FAQs

Last updated on 21 Nov 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc