calculator

AI 编程助手,豆包旗下的编程助手,提供智能补全、智能预测、智能问答等能力,节省开发时间,释放脑海中的创造力,支持 VSCode,点击体验 AI

simple cli calculator

calculator

Install

 --- ------- ----------
 -- ----------
 --- -----

or

--- ------- -- ----------
---------

API

When starting calculator, it starts a node repl with all of the following properties set as properties of the GLOBAL object. All Math properties are replaced with Math.(prop) so you can write var f = func('f(x) = sin(x)') instead of var f = func('f(x) = Math.sin(x)')

func

--- - - ---------- - ---- - ----
---- --------- --

- - ---------- -- - ----------- -- - - - ---
---- -- -- ------- -

derive

params ([string|function], point to evaluate function) derive('f(x) = x*x', 2) //evaluate derivative @ x = 2; returns 4

integrate

params ([string|function], lower limit, upper limit) derive('f(x) = x*x', 0, 1) //evaluate definite integral from x = 0 to x = 1; returns .333 = 1/3

accuracy

Set this property to determine how accurate the definite integral will be. Essentialy the "dx" in f(x)dx. Default is 1/1000000

roundAccuracy

Set this property to determine the distance between an estimated answer and a whole number that you wish cli calc to return the rounded number. This is useful when you know the answer is a whole number and you don't want something like 1.99999999998384 returned instead of 2

Repository

https://github.com/saambarati/node-calculator

来源:JavaScript中文网 ,转载请联系管理员! 本文地址:https://www.javascriptcn.com/post/60066c90ccdc64669dde5801


猜你喜欢

  • npm 包 callbag-from-pull-stream 使用教程

    什么是 callbag-from-pull-stream? callbag-from-pull-stream 是一个 npm 包,它是一种与拉流模式(pull stream)交互的 callbag,它...

    4 年前
  • npm 包 callbag-from-stream 使用教程

    在前端开发中,我们经常需要进行数据流的处理和操作。针对这一需求,我们可以使用 callbag-from-stream 这个 npm 包来实现数据流转换和处理。 什么是 callbag-from-str...

    4 年前
  • npm 包 callbag-gun 使用教程

    介绍 callbag-gun 是一个用于构建分布式跨平台的数据传输协议的轻量而强大的组合式编程工具包。它可以帮助你在你的 Node.js 应用程序或浏览器中使用 Gun DB 数据库,这是一种基于 P...

    4 年前
  • npm 包 callbag-last 使用教程

    前言 npm 是一个 JavaScript 包管理工具,它可以让开发者轻松地查找并安装第三方库。而 callbag-last 是一个基于 Callbag 的小型工具库,用于获取 Callbag 流的最...

    4 年前
  • npm 包 callbag-latest 使用教程

    前言 在前端开发中,我们常常需要处理异步数据流。而 RxJS 是一个能够非常方便地处理数据流的 JavaScript 库,但很多前端开发者在使用 RxJS 时,感觉它的学习门槛比较高。

    4 年前
  • npm 包 callbag-map-delve 使用教程

    前言 在进行前端开发的过程中,我们难免会使用一些数据流库来控制数据流的传递。最近我在项目中使用了一个基于 callbag 的数据流库,用到了其一个很有用的扩展包 callbag-map-delve,本...

    4 年前
  • 使用 Gradle 轻松管理 npm 包

    Gradle 是一种通用的构建自动化工具,可以用于构建各种类型的应用程序和库。通过使用 Gradle,您可以轻松地管理和发布 npm 包,而不会很难。 在本文中,我们将探讨如何使用 Gradle 来构...

    4 年前
  • npm 包 Calabash 使用教程

    Calabash 是一个移动端自动化测试框架,它支持 iOS 和 Android 两大移动端平台。使用 Calabash 可以快速地在移动终端上进行测试和验证。本教程将向您介绍 Calabash 的安...

    4 年前
  • npm 包 callbag-lossless-throttle 使用教程

    在前端开发中,我们经常会遇到需要节流的场景。例如,当用户在输入搜索框中输入关键字时,我们希望请求代码不要立即发送到服务器,而是等待用户停止输入后再发送请求。这时候,就需要用到节流的技术。

    4 年前
  • npm 包 callbag-map-to 使用教程

    简介 callbag-map-to 是一款基于 callbag 的 npm 包,能够帮助前端开发者在 RxJS 中实现 map 操作的功能。通过它,开发者能够非常方便地将一个 Observable 对...

    4 年前
  • npm 包 callbag-merge-with 使用教程

    前言 callbag-merge-with 是一个 npm 包,主要用于将多个 Callbag 流(stream)合并成一个流。在前端开发中,我们经常会遇到这种情况:需要将多个数据流合并为一个,以便进...

    4 年前
  • Npm 包 callbag-pairwise 使用教程

    在前端开发中,处理异步数据流是一个常见的任务。使用 RxJS 可以轻松地处理这类问题,但是它可能会导致一些性能问题。因此,一些轻量级的库也出现了,例如 callbag-pairwise。

    4 年前
  • npm 包 callbag-mock 使用教程

    前言 在前端开发中,我们常常需要对数据进行处理和操作。而 callbag-mock 这个 npm 包,就是用于模拟数据流的库。本文将会详细介绍该库的使用方法,以及灵活地应用该库的实例。

    4 年前
  • 使用 callbag-pausable-interval 进行前端开发

    在前端开发中,定时器是我们经常使用的工具之一。然而,有时候我们希望控制定时器的启停,这时候就需要使用 pausableInterval 这个 npm 包。 pausableInterval 是一个基于...

    4 年前
  • npm 包 callbag-proxy 使用教程

    本文将介绍如何使用 npm 包 callbag-proxy 以及它的指导意义。 什么是 callbag? callbag 是一个函数式编程库,主要使用 “观察者模式” 来处理数据流。

    4 年前
  • npm 包 calabash-ios 使用教程#

    #npm 包 calabash-ios 使用教程# 如果你是一名前端开发者,那么可能会遇到开发iOS应用的情况。其中一个非常有用的工具是 calabash-ios。

    4 年前
  • npm包callbag-pump使用教程

    在前端开发中,难免会用到异步请求,例如发起ajax请求。这时,我们一般使用callback来处理异步操作,但是如果要处理多个异步请求,并且需要有条件地控制他们的执行顺序,则callback就弥足口实了...

    4 年前
  • npm 包 calabash-js 使用教程

    什么是 calabash-js calabash-js 是一个基于 node.js 的库,它提供了一些 API 用于模拟用户操作 iOS 和 Android 应用。

    4 年前
  • npm 包 calais-entity-extractor 使用教程

    简介 calais-entity-extractor 是一个基于自然语言处理的 npm 包,可以用于提取文本中的实体信息。实体信息指的是文本中出现的特定类型的实体,例如人名、地名、组织机构名等等。

    4 年前
  • npm 包 calamarble-xhub 使用教程

    简介 calamarble-xhub 是一个轻量级的 npm 包,用于在前端应用程序中实现在不同组件之间传递和管理数据。它基于 React 的 Context API 和 Event Emitter ...

    4 年前

相关推荐

    暂无文章