VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > Python基础教程 >
  • python基础教程之Python numpy的基本操作你一般人都不会(3)

本站最新发布   Python从入门到精通|Python基础教程
试听地址  
https://www.xin3721.com/eschool/pythonxin3721/


4) print('重新设置形状',b) # transpose函数 将矩阵进行转置 d = b.transpose() print("转置 = ",d) # resize函数 和reshape函数的功能一样,但resize会直接修改所操作的数组 # 并且这一步不可以通过赋值来实现,如下所示 b.resize((2,12)) print('resize重新设置形状',b)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

8、常用操作

8.1 元素平方和

np.sum(arrayname**2)
  • 1

8.2 numpy转换成tensorflow的tensor

import numpy as np
import tensorflow as tf
numpy_test = np.ones(5)
print(numpy_test)
print(numpy_test.shape)
tensor_test = tf.convert_to_tensor(numpy_test)
print(tensor_test)
print(tensor_test.shape)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

相关教程