线性代数向量内积_向量的外积| 使用Python的线性代数

这篇博客介绍了如何利用Python的Numpy库进行线性代数中的向量内积和外积计算。文章首先讲解了使用Numpy定义向量的基础知识,然后重点阐述了如何通过内置函数实现两个向量的外积编码,并给出了具体的Python代码示例及运行输出。适合学习Python编程以及线性代数,特别是对机器学习和深度学习感兴趣的读者。
摘要由CSDN通过智能技术生成

线性代数向量内积

Prerequisites:

先决条件:

Learn: how to code for outer product of two vectors using am inbuilt function in numpy library?

了解:如何使用numpy库中的内置函数为两个向量的外部乘积编码?

Syntax:

句法:

numpy.outer(Vec_1, Vec_2)

向量外积的Python代码 (Python code for outer product of vectors)

# Linear Algebra Learning Sequence
# Outer Product

import numpy as np

a = np.array([2,3,4,1])
b = np.array([5,4,-6,45,7])

outpro = np.outer(a,b)

print('Vector A : ', a)
print('Vector B : ', b)
print('Outer product of Vector A and Vector B :', outpro)

Output:

输出:

Vector A :  [2 3 4 1]
Vector B :  [ 5  4 -6 45  7]
Outer product of Vector A and Vector B : [[ 10   8 -12  90  14]
 [ 15  12 -18 135  21]
 [ 20  16 -24 180  28]
 [  5   4  -6  45   7]]


翻译自: https://www.includehelp.com/python/outer-product-of-vectors.aspx

线性代数向量内积

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值