灰度共生矩阵及其数字特征

Any number system has a set of symbols known as Digits with some rules performing arithmetic operations. A collection of these makes a number has two parts. They are integer portion and fraction portion. These portions are separated by a point known as radix.

任何数字系统都有一组称为数字的符号,其中某些规则执行算术运算。 这些的集合使数字分为两个部分。 它们是整数部分小数部分 。 这些部分被称为radix的点隔开。

If a number has radix as 'b', then the number of numbers present in that number system will be 'b' which will range from 0 to b-1.

如果一个数字的基数'b' ,则该数字系统中存在的数字数将为'b' ,范围从0到b-1

Where,

哪里,

  • N = a number

    N =一个数字

  • b = radix or base to number system

    b =基数或基数系统

  • n = number of digits in integer portion

    n =整数部分的位数

  • m = number of digits in the fractional portion

    m =小数部分的位数

  • dn-1 = Most Significant Digit (MSD)

    d n-1 =最高有效位(MSD)

  • d-m = Least Significant Digit (LSD)

    d -m =最低有效位(LSD)

The commonly used number systems are:

常用的数字系统是:

  1. Binary Number System

    二进制数制

  2. Octal Number System

    八进制数字系统

  3. Decimal Number System

    小数系统

  4. Hexadecimal Number System

    十六进制数制

1)二进制数制 (1) Binary Number System)

The binary number system has its base as 2. Since b=2, it consists of two digits which range from 0 to 2-1 =1. (As discussed above, the range is from 0 to b-1).

二进制数字系统的底数为2 。 由于b = 2 ,它由两位数字组成,范围从0到2-1 = 1 。 (如上所述,范围是从0到b-1 )。

Therefore, the binary number system consists of digits 0 and 1 only.

因此, 二进制数字系统仅由数字01组成。

Ex: (1101)2, (110101)2, (0101)2, (101.01)2, etc.

例如:(1101)2,(110101)2,(0101)2,(101.01)2等。

In Binary Number System, the portion to the left of binary point (integer part) have their weights as 20, 21, 22 and so on from right to left. The portion on the right-hand side of the binary point (fractional part) have weights as 2-1, 2-2 and so on from left to right.

二进制数字系统 ,该部分向左侧二进制点(整数部分)具有它们的权重为2 0,2 1,2 2等从右到左。 二元点右侧的部分(分数部分)的权重从左到右依次为2 -1,2 -2 ,依此类推。

Above given binary number (101.01)2 can be represented as:

上面给出的二进制数(101.01) 2可以表示为:

(101.01)2 = (1*22) + (0*21) + (1*20) + (0*2-1) + (1*2-2)

(101.01) 2 =(1 * 2 2 )+(0 * 2 1 )+(1 * 2 0 )+(0 * 2 -1 )+(1 * 2 -2 )

After simplifying the terms in the RHS of the equation, we will get a decimal number equivalent to binary number on the LHS which is (5.25)10.

简化方程式RHS中的项后,我们将得到一个与LHS上的二进制数等效的十进制数(5.25) 10

2)八进制数字系统 (2) Octal Number System)

The octal number system has its base as 8. Since b=8, it consists of eight digits which range from 0 to 8-1 =7. (As discussed above, the range is from 0 to b-1).

八进制数制的底数为8 。 由于b = 8 ,因此它由八位数字组成,范围从0到8-1 = 7 。 (如上所述,范围是从0到b-1 )。

It consists of digits ranging from 0 to 7 i.e., 0, 1, 2, 3, 4, 5, 6 and 7.

它由0到7之间的数字组成,即0、1、2、3、4、5、6和7

Ex: (73)8, (420)8, (125.13)8, etc.

例如:(73)8,(420)8,(125.13)8等

In Octal Number System the positional values/weights to the left of octal point in integer part are as 80, 81, 82 and so on from right to left whereas the weights in the right-hand side in fractional part are as 8-1, 8-2 and so on from left to right.

八进制数系统的位置值/权重为八进制点的左侧在整数部分是作为8 0,8 1,8 2等从右到左,而在小数部分的右手侧上的权重是作为8 -1,8 -2等等,从左到右。

Above given octal number (125.13)8 can be represented as:

上面给出的八进制数(125.13) 8可以表示为:

(125.13)8 = (1*82) + (2*81) + (5*80) + (1*8-1) + (3*8-2)

(125.13) 8 =(1 * 8 2 )+(2 * 8 1 )+(5 * 8 0 )+(1 * 8 -1 )+(3 * 8 -2 )

After simplifying the terms in the RHS of the equation, we will get a decimal number equivalent to octal number on the LHS which is (85.140625)10.

简化方程式RHS中的项后,我们将得到一个与LHS上的八进制数等效的十进制数,即(85.140625) 10

小数系统 (Decimal Number System)

The Decimal Number System has its base as 10. Since b=10, it consists of 10 digits which range from 0 to 10-1 = 9. (As discussed above, the range is from 0 to b-1).

小数系统底数10 。 由于b = 10 ,因此它由10个数字组成,范围从0到10-1 = 9 。 (如上所述,范围是从0到b-1 )。

It consists of digits ranging from 0 to 9 i.e., 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9.

它由0到9之间的数字组成,即0、1、2、3、4、5、6、7、8和9

Ex: (101)10, (12)10, (999)10, (540.25)10, etc.

例如:(101)10,(12)10,(999)10,(540.25)10等

In the Decimal Number System the positional values/weights to the left of the decimal point in integer part are as 100, 101, 102 and so on from right to left whereas the weights in the right-hand side in fractional part are as 10-1, 10-2 and so on from left to right.

十进制系统的位置值/权重到小数点的左边在整数部分是为10 0,10 1,10 2等从右到左,而在小数部分是在右手侧的权重从左到右依次为10 -1,10 -2等。

Above given decimal number (540.25)10 can be represented as:

高于给定的十进制数(540.25) 10可以表示为:

(540.25)10 = (5*102) + (4*101) + (0*100) + (2*10-1) + (5*10-2)

(540.25) 10 =(5 * 10 2 )+(4 * 10 1 )+(0 * 10 0 )+(2 * 10 -1 )+(5 * 10 -2 )

After simplifying the terms in the RHS of the equation, we will get a decimal number equivalent to the decimal number on the LHS.

简化方程式RHS中的项后,我们将得到一个与LHS上的十进制数等效的十进制数。

4)十六进制数制 (4) Hexadecimal Number System)

The Hexadecimal Number System has its base as 16. Since b=16, it consists of 16 digits which range from 0 to 16-1 = 15. (As discussed above, the range is from 0 to b-1).

十六进制数字系统的底数为16 。 由于b = 16 ,它由16位数字组成,范围从0到16-1 = 15 。 (如上所述,范围是从0到b-1 )。

It consists of both digits and alphabets where digits range from 0 to 9 i.e., 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 and alphabets range from A to F where (A=10), (B=11), (C=12), (D=13), (E=14) and (F=15).

它由数字和字母组成,其中数字范围从0到9,0、1、2、3、4、5、6、7、8、9,字母范围从A到F ,其中( A = 10)( B = 11) ,( C = 12 ),( D = 13 ),( E = 14 )和( F = 15 )。

Ex: (123)16, (459)16, (12A3F.12)16, etc.

例如:(123)16,(459)16,(12A3F.12)16等。

In the Hexadecimal Number System the positional values/weights to the left of the decimal point in integer part are as 160, 161, 162 and so on from right to left whereas the weights in the right-hand side in fractional part are as 16-1, 16-2 and so on from left to right.

十六进制数系统的位置值/权重到小数点的左边在整数部分是为16 0,16 1,16 2等从右到左,而在小数部分是在右手侧的权重从左到右依次为16 -1,16 -2等。

Above given Hexadecimal number (12A.13)16 can be represented as:

上面给出的十六进制数(12A.13) 16可以表示为:

(12A.13)16 = (1*162) + (2*161) + (10*160) + (1*16-1) + (3*16-2)

(12A.13) 16 =(1 * 16 2 )+(2 * 16 1 )+(10 * 16 0 )+(1 * 16 -1 )+(3 * 16 -2 )

After simplifying the terms in the RHS of the equation, we will get a decimal number equivalent to decimal number on the LHS which is (298. 06640625)10.

简化方程式RHS中的项后,我们将得到一个与LHS上的十进制数相等的十进制数,即(298. 06640625) 10

翻译自: https://www.includehelp.com/basics/number-systems-and-their-representation.aspx

灰度共生矩阵及其数字特征

灰度共生矩阵及其数字特征_数字系统及其表示相关推荐

  1. 数字身份_数字身份作为投资

    数字身份 Trustworthy digital identification remains one of the main challenges of the internet because n ...

  2. qregexp限制数字范围_数字系统实现电压电流控制的必经之路数模转换器

    <芯势力>系列 接上一篇文章,我们了解到了模数转换器,本文将带你了解数模转换器. 看名字就能知道,如果模数转换器实现了模拟信号到数字信号的转换,那么,数模转换器就是模数转换器的逆过程,即把 ...

  3. dom影像图形成数字地形图_数字正射影像图DOM

    1. 数字正射影像图的概念 数字正射影像图(Digital Orthophoto Map,简称DOM):是对航空(或航天)像片进行数字微分纠正和镶嵌,按一定图幅范围裁剪生成的数字正射影像集.它是同时具 ...

  4. flash数字时钟_数字电路设计在嵌入式中的应用

    点击蓝字了解开学问题 数字电路作为一门专业基础课,除了介绍数字电路的理论知识外,更需要通过配套的实验平台将理论知识和实践环节相结合,培养学生的动手能力和实践创新能力.为此,自主开发了基于 FPGA 的 ...

  5. python2的默认数字类型_1.2python基础_数字类型_数字(Number)类型

    一.整型(int型.整数) 整型 等价于C中的有符号长整型(long) 与系统的最大整型一致(如32位机器上的整型是32位,64位机器上的整型是64位), 可以表示的整数范围在[-sys.maxint ...

  6. rbw数字信号处理_数字信号处理与模拟IC设计

    马上注册,结交更多好友,享用更多功能,让你轻松玩转社区. 您需要 登录 才可以下载或查看,没有帐号?注册 x 本帖最后由 血荐轩辕HIT 于 2019-12-15 23:38 编辑 信号与系统.数字信 ...

  7. java数字常量_数字常量 - javawebsoa - 博客园

    数字常量 shell脚本在默认情况下都是把数字作为10进制数来处理, 除非这个数字采用了特殊的标记或者前缀. 如果数字以0开头的话那么就是8进制数. 如果数字以0x开头的话那么就是16进制数. 如果数 ...

  8. 归一化数字角频率_数字信号处理中的归一化频率

    4种频率及其数量关系 实际物理频率表示AD采集物理信号的频率,fs为采样频率,由奈奎斯特采样定理可以知道,fs必须≥信号最高频率的2倍才不会发生信号混叠,因此fs能采样到的信号最高频率为fs/2. 角 ...

  9. 归一化数字角频率_数字信号处理中的各种频率

    在学习数字信号处理时,很多种频率很容易搞混淆,有模拟/数字/频率/角频率等等,也不是特别清楚不同频率之间的关系,希望这篇文件可以为各种频率来个了结. 4种频率及其数量关系 实际物理频率表示物理信号的真 ...

最新文章

  1. 【numpy学习笔记】数组的创建和基本运算
  2. ant安装过程,配置过程
  3. python对象复制_Python 拷贝对象(深拷贝deepcopy与浅拷贝copy)
  4. 科普:TLS、SSL、HTTPS以及证书(转)
  5. 为什么要学Access?
  6. 学习Java 采取令牌的方式避免重复提交
  7. 2021中国集成电路行业投资市场研究报告
  8. (带后台)苹果安卓APP下载页 app应用下载界面源码
  9. 08 内存分配和程序内存布局
  10. 硬件开源为什么如此之难?
  11. Linux 的 Out-of-Memory (OOM) Killer
  12. java21天打卡-Day9 字符串
  13. python粘贴代码到word_python怎么粘贴代码
  14. roseha修改服务器ip地址,roseha 9.0 for windows维护手册_v2.0-2015-04.pdf
  15. VisibilityAwareImageButton.setVisibility can only be called from within the same library group (grou
  16. 网站访问量统计 | hexo
  17. 第22节项目6-定期存款利息计算器
  18. en45545防火标准_轨道交通防火标准:欧标EN45545-2详解
  19. 下载IEEE期刊Latex模板步骤
  20. 《科学之路》读书笔记

热门文章

  1. teleport 组件的作用_人脸识别综述! 覆盖人脸检测,预处理和特征表示三大核心组件!...
  2. pyqt5 下拉 多页 点击_PyQt5实战——自定义翻页控件实现
  3. 使用class-validator替换Joi包的方法
  4. 企业为什么要做SEO,它的重要性有哪些?
  5. Mysql闪回工具之binlog2sql的原理及其使用
  6. WebBrowser中html元素如何触发winform事件
  7. 分别用 数组和链表处理约瑟夫环问题
  8. java html5 上传_HTML5结合ajax实现文件上传以及进度显示
  9. usb一转多 树莓派zero_树莓派 Zero USB/以太网方式连接配置教程
  10. 基4fft算法的蝶形图_原地且自动整序的FFT算法