網(wǎng)站首頁 編程語言 正文
1、文檔
使用numpy的 concatenate 拼接矩陣,文檔里面這樣解釋:
numpy.concatenate((a1, a2, ...), axis=0, out=None, dtype=None, casting="same_kind")
(a1, a2, ...):連接的數(shù)組必須有一樣的維度;
axis:拼接的方向;
out:預(yù)設(shè)輸出矩陣的大小
…………
2、舉例
首先給定兩個矩陣:
rotation = np.array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
trans = np.array([[7],
[8],
[0]])
①:在第一個矩陣后面加上第二個矩陣(加一列):
z = np.concatenate((rotation, trans), axis=1)
輸出為:
[[1 2 3 7]
?[4 5 6 8]
?[7 8 9 0]]
②:以及在矩陣下面加一個全零行:
add_arr = np.array([[0, 0, 0, 0]])
array_by_add = np.concatenate((z, add_arr), axis=0)
輸出:
[[1 2 3 7]
?[4 5 6 8]
?[7 8 9 0]
?[0 0 0 0]]
③:把矩陣填充為對角矩陣:
第一個為3×3矩陣,第二個為2×3矩陣。
arr1 = np.array([[2, 3, 4],
[3, 4, 5],
[4, 5, 6]])
arr2 = np.array([[7, 8, 9],
[8, 9, 10]])
arr_zeros1 = np.zeros((arr2.shape[1], arr1.shape[0]))
print(arr_zeros1)
arr_zeros2 = np.zeros((arr2.shape[0], arr1.shape[1]))
print(arr_zeros2)
total_arr1 = np.concatenate((arr1, arr_zeros1), axis=1)
total_arr2 = np.concatenate((arr_zeros2, arr2,), axis=1)
total_arr = np.concatenate((total_arr1, total_arr2), axis=0)
print(total_arr)
拼接之后結(jié)果如下:
[5 6]
[[0. 0. 0.]
?[0. 0. 0.]
?[0. 0. 0.]]
[[0. 0. 0.]
?[0. 0. 0.]]
[[ 2. ?3. ?4. ?0. ?0. ?0.]
?[ 3. ?4. ?5. ?0. ?0. ?0.]
?[ 4. ?5. ?6. ?0. ?0. ?0.]
?[ 0. ?0. ?0. ?7. ?8. ?9.]
?[ 0. ?0. ?0. ?8. ?9. 10.]]
官方文檔地址:numpy官網(wǎng)地址
原文鏈接:https://blog.csdn.net/Arhonbt/article/details/125746727
相關(guān)推薦
- 2022-07-02 python列表:開始、結(jié)束、步長值實(shí)例_python
- 2022-09-12 在CMD窗口中調(diào)用python函數(shù)的實(shí)現(xiàn)_python
- 2022-05-06 C語言基礎(chǔ)知識點(diǎn)指針的使用_C 語言
- 2024-02-01 webstorm中Line comment at first column,Block commen
- 2022-08-18 kubernetes?k8s常用問題排查方法_云其它
- 2022-07-10 css盒子塌陷及其解決方法
- 2022-11-22 Android?Studio生成?Flutter?模板代碼技巧詳解_Android
- 2023-01-03 一文帶你掌握Go語言中文件的寫入操作_Golang
- 最近更新
-
- window11 系統(tǒng)安裝 yarn
- 超詳細(xì)win安裝深度學(xué)習(xí)環(huán)境2025年最新版(
- Linux 中運(yùn)行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎(chǔ)操作-- 運(yùn)算符,流程控制 Flo
- 1. Int 和Integer 的區(qū)別,Jav
- spring @retryable不生效的一種
- Spring Security之認(rèn)證信息的處理
- Spring Security之認(rèn)證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權(quán)
- redisson分布式鎖中waittime的設(shè)
- maven:解決release錯誤:Artif
- restTemplate使用總結(jié)
- Spring Security之安全異常處理
- MybatisPlus優(yōu)雅實(shí)現(xiàn)加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務(wù)發(fā)現(xiàn)-Nac
- Spring Security之基于HttpR
- Redis 底層數(shù)據(jù)結(jié)構(gòu)-簡單動態(tài)字符串(SD
- arthas操作spring被代理目標(biāo)對象命令
- Spring中的單例模式應(yīng)用詳解
- 聊聊消息隊(duì)列,發(fā)送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠(yuǎn)程分支