GithubHelp home page GithubHelp logo

kitvector's Introduction

Vector

This package has basic Vector operations (not suitable for machine learning).

pip install kitvector

Note

This module is just some basic vector operations.

Usage

Suppose you have:

$$ \vec{v}=(v_1, v_2, v_3) $$

$$ \quad and $$

$$ \vec{u}=(u_1, u_2, u_3) $$

import kitvector
v=kitvector.Vector((1, 2, 3))
u=kitvector.Vector((4, 5, 6))

mul_k

Note

Multiply the vector u by a scalar k.

$$ \vec{u}=(u_1, u_2, u_3)โ‹…๐‘˜ $$

v.mul_k(3) # output: Vector(3, 6, 9)

dot

Note

The inner product of the vector.

$$ \vec{v} \cdot \vec{u} $$

Vactor.dot(v, u)

cross

Note

The outer product of the vector.

$$ \vec{v} ร— \vec{u} $$

Vactor.cross(v, u)

magnitude

Note

The size of the vector.

$$ โˆฅ\vec{v}โˆฅ $$

v.magnitude # output: 3.7416573867739413

unit_vector

Note

Unit Vector.

$$ \frac{\vec{v}}{โˆฅ\vec{v}โˆฅ} $$

v.unit_vector

projection

Note

projection of Vector.

Vector.projection(v, u)

area

Note

Parallelogram area.

Vector.area(v, u)

triangle

Note

Triangle area.

Vector.triangle(v, u)

angle

Note

Return cos0.

Vector.angle(v, u)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.