Socket
Socket
Sign inDemoInstall

phasop

Package Overview
Dependencies
1
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    phasop

Command line tools for complex numbers (phasor) operations.


Version published
Weekly downloads
14
increased by1300%
Maintainers
1
Install size
71.1 kB
Created
Weekly downloads
 

Readme

Source

phasop

Command-line tools for complex numbers (phasor) operations.

This CLI-Tool enables fast polar and rectangular operations. By definition polar points are defined like (modulus, radius) and rectangular points are defined like (x, yi) where i letter is mandatory; and in this README any (modulus, radius) or (x, yi) are know as matrix.

Installation

> npm install -g phasop

Make sure to include the -g option


Usage

Converting Polar phasor to Retangular phasor:

> phasop (5,53.13)
> polar form(5, 53.13 degrees)
> rectangular form(3, 4i)
radian

You can output any of the following operations in radians instead of the default degrees.

> phasop -r add (4,3i) (3,-4i)
> (4, 3i) + (3, -4i)
> polar form(7.07, -0.14 radian)
> rectangular form(7, -1i)

endless

You can also input several matrix for a single operation

> phasop -r add (4,3i) (3,-4i) (-5, 36.87)
> (4, 3i) + (3, -4i) + (-5, 36.87d)
> polar form(5, -53.13 degrees)
> rectangular form(3, -4i)

Operations

add
> phasop add (4,3i) (3,-4i)
> (4, 3i) + (3, -4i)
> polar form(7.07, -8.13 degrees)
> rectangular form(7, -1i)

sub
> phasop sub (4,3i) (3,-4i)
> (4, 3i) - (3, -4i)
> polar form(7.07, 81.87 degrees)
> rectangular form(1, 7i)

mult
> phasop mult (4,3i) (3,-4i)
> (4, 3i) * (3, -4i)
> polar form(25, -16.26 degrees)
> rectangular form(24, -7i)

div
> phasop div (4,3i) (3,-4i)
> (4, 3i) / (3, -4i)
> polar form(1, 90 degrees)
> rectangular form(0, 1i)

Dependencies

commander


License

MIT

Keywords

FAQs

Last updated on 17 Aug 2016

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