python .T操作
>>> x = np.array([[1.,2.],[3.,4.]])
>>> x
array([[ 1., 2.],
[ 3., 4.]])
>>> x.T
array([[ 1., 3.],
[ 2., 4.]])
>>> x = np.array([1.,2.,3.,4.])
>>> x
array([ 1., 2., 3., 4.])
>>> x.T
array([ 1., 2., 3., 4.])
相關文章
- 原子操作atomic_t
- T-SQL之資料庫操作SQL資料庫
- T-SQL——函式——字串操作函式SQL函式字串
- T-SQL——函式——時間操作函式SQL函式
- RAC建立ASM單個磁碟不能操作2TASM
- 【Python】python 日期操作Python
- Python中\t代表什麼?如何使用?Python
- Python 操作 MySQLPythonMySql
- python 操作 GitPythonGit
- Python字串操作Python字串
- Python操作RedisPythonRedis
- python操作mysqlPythonMySql
- Python操作SQLServerPythonSQLServer
- python 操作redisPythonRedis
- Python操作WordPython
- python操作csvPython
- python操作elasticsearchPythonElasticsearch
- python基本操作Python
- python 字串操作Python字串
- python日期操作Python
- python操作excelPythonExcel
- Rust中的智慧指標:Box<T> Rc<T> Arc<T> Cell<T> RefCell<T> Weak<T>Rust指標
- 利用python庫stats進行t檢驗Python
- [py]python操作zookeeperPython
- python 操作 Excel 表格PythonExcel
- Python如何操作MySQLPythonMySql
- python操作redis(二)PythonRedis
- python如何操作socketserverPythonServer
- Python操作MySQL分享PythonMySql
- 使用Python操作MySQLPythonMySql
- Python列表切片操作Python
- Python操作檔案Python
- Python字典的操作Python
- Python 數字操作Python
- python 3 操作 excelPythonExcel
- python檔案操作Python
- python基礎操作Python
- LeetCode T14 T26 T27 T28 T35LeetCode