Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

向量

向量是 1 维的数组

向量具有大小方向

向量通常描述运动

向量表示法

向量可以用多种方式表示。最常见的是

v =   
1 2 3

v =   
1
2
3

几何中的向量

Vector

左边的图像是向量

长度表示大小

箭头表示方向


运动

向量是运动的基本组成部分

在几何学中,向量可以描述从一个点到另一个点的移动。

向量 [3, 2] 表示向右移动 3 个单位,向上移动 2 个单位。


向量加法

两个向量 (a+b) 的和可以通过移动向量 b 直到其尾部与向量 a 的头部相接来找到。(这不会改变向量 b)。

然后,从 a 的尾部到 b 的头部的一条线就是向量 a+b

Adding Vectors


向量减法

向量 -a+a 的相反向量。

这意味着向量 a 和向量 -a 具有相同的大小,但方向相反。

Adding Vectors



标量运算

可以通过对所有向量值添加、减去或乘以标量(数字)来修改向量。

a = [1 1 1]

a + 1 = [2 2 2]

[1 2 3] + 1 = [2 3 4]

向量乘法具有与普通乘法相同的许多性质。

[2 2 2] * 3 = [6 6 6]

[6 6 6] / 3 = [2 2 2]


是向量。

力是具有大小方向的向量。


速度

速度是向量。

速度是具有大小方向的向量。



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.