NumPy 中的 右移运算符函数

首页 / Numpy入门教程 / NumPy 中的 右移运算符函数

numpy.right_shift()函数将数组元素的二进制表示形式向右移动指定的位置,并在左侧添加相等数量的0。

import numpy as np 

print 'Right shift 40 by two positions:' 
print np.right_shift(40,2) 
print '\n'  

print 'Binary representation of 40:' 
print np.binary_repr(40, width=8) 
print '\n'  

print 'Binary representation of 10' 
print np.binary_repr(10, width=8)  
# Two bits in '00001010' are shifted to right and two 0s appended from left.

其输出如下-

无涯教程网

链接:https://www.learnfk.comhttps://www.learnfk.com/numpy/numpy-right-shift.html

来源:LearnFk无涯教程网

Right shift 40 by two positions:
10

Binary representation of 40:
00101000

Binary representation of 10
00001010

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

从0开始学游戏开发 -〔蔡能〕

Linux性能优化实战 -〔倪朋飞〕

深入拆解Tomcat & Jetty -〔李号双〕

雷蓓蓓的项目管理实战课 -〔雷蓓蓓〕

MongoDB高手课 -〔唐建法(TJ)〕

手把手带你写一个Web框架 -〔叶剑峰〕

Serverless进阶实战课 -〔静远〕

超级访谈:对话毕玄 -〔毕玄〕

零基础GPT应用入门课 -〔林健(键盘)〕

好记忆不如烂笔头。留下您的足迹吧 :)