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

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

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

number systems 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等。

number systems 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等

number systems 3

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等

number systems 4

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等。

number systems 5

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

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

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/544372.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

绝绝子,画框架图就用这个工具

前言看过我以往文章的小伙伴可能会发现,我的大部分文章都有很多配图。我的文章风格是图文相结合,更便于大家理解。最近有很多小伙伴发私信问我:文章中的图是用什么工具画的。他们觉得我画的图风格挺小清新的,能够让人眼前一亮。先…

面试官:this和super有什么区别?this能调用到父类吗?

作者:磊哥来源 | Java面试真题解析(ID:aimianshi666)转载请联系授权(微信ID:GG_Stone)本文已收录《Java常见面试题》:https://gitee.com/mydb/interviewthis 和 super 都是 Java 中常…

SpringBoot 热部署神器快速重启的秘密!

今天咱们来聊聊这个热部署神器 spring-boot-devtools 的运行原理,看看它是怎么用这个 ClassLoader 来实现快速重启,帮我们节省时间的!😝文章概要文章的主旋律如下👇spring.factories我们直接打开 spring-boot-devtool…

计算机操作系统 内存_计算机内存的类型| 操作系统

计算机操作系统 内存什么是记忆? (What is Memory?) The essential component of the computer is its Memory. It is assembled on the motherboard as it is a storage device used for storing data and instructions for performing a task on the system. 计算…

关于 java 实现 语音朗读

最近有个java项目要实现 一个 java语音朗读的功能,百度了半天 没有现成的 。也是一头雾水。没具体思路。。。。。大体上总结了下网上的资料 1.java 实现起来 比c或者vb 能麻烦点,或者是这个功能用其他语言完成 然后整合到java 项目里面去!2.…

查询MySQL字段注释的 5 种方法!

作者 | 磊哥来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone)很多场景下,我们需要查看 MySQL 中表注释,或者是某张表下所有字段的注释,所以本文就来盘…

聊聊索引失效的10种场景,太坑了

前言今天我接着上一期数据库的话题,更进一步聊聊索引的相关问题,因为索引是大家都比较关心的公共话题,确实有很多坑。不知道你在实际工作中,有没有遇到过下面的这两种情况:明明在某个字段上加了索引,但实际…

Java中的main方法

2019独角兽企业重金招聘Python工程师标准>>> 在一个Java应用程序中,通常程序的入口是一个main方法,它被声明为公有静态方法,参数是一个字符串数组,返回值为Void类型。这个方法有许多值得研究的地方,今天就来…

约瑟夫环问题(C++)

问题描述 首先,说明一下这个问题是研究生期间c课的综合作业,本来有好多选择但最后还是选择了约瑟夫环问题。下面是约瑟夫环的问题描述以及设计要求: 约瑟夫环(约瑟夫问题)是一个数学的应用问题:已知n个人&…

实战!工作中常用到哪些设计模式

前言 大家好,我是捡田螺的小男孩。平时我们写代码呢,多数情况都是流水线式写代码,基本就可以实现业务逻辑了。如何在写代码中找到乐趣呢,我觉得,最好的方式就是:使用设计模式优化自己的业务代码。今天跟大家…

什么是bcd码数据传输通讯_传输障碍| 数据通讯

什么是bcd码数据传输通讯传输障碍 (Transmission Impairment) In the data communication system, analog and digital signals go through the transmission medium. Transmission media are not ideal. There are some imperfections in transmission mediums. So, the signa…

Spring boot项目(问答网站)之timeline的推拉两种模式

Timeline介绍 所谓timeline就是当用户打开主页看到的随着时间轴发生的一系列时间的整合,主要包含: 关注用户的最新动态热门推荐广告推荐整合等等. 推、拉模式 推模式: 当一个用户关注了或者评论了一个问题或用户,触发事件&…

Bean放入Spring容器,你知道几种方式?

作者:三尺微命 一介书生来源:blog.csdn.net/weixin_43741092/article/details/120176466我们知道平时在开发中使用Spring的时候,都是将对象交由Spring去管理,那么将一个对象加入到Spring容器中,有哪些方式呢&#xff…

Spring boot项目(问答网站)之Python学习基础篇

简介 当问答网站基本框架搭建完毕之后需要一些初始的数据来进行填充,因此选用Python爬虫的方式,从网上截取一些资料信息(当然是自己做项目使用,非商用)放入到项目网站上面。这篇主要是关于Python基础知识的学习笔记。…

Spring Boot Admin,贼好使!

作者 | 磊哥来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone)Spring Boot Admin(SBA)是一个开源的社区项目,用于管理和监控 Spring Boot 应用程序。应…

JAVA基础之容器基础内容

Java Collections框架 Java Collections框架中包含了大量的集合接口以及这些接口的实现类和操作它们的方法,具体包含了Set(集合)、List(列表)、Map(键值对)、Queue(队列)、Stack(栈)等,其中List、Set、Queue、Stack都继承了Collection接口。…

更快的Maven构建工具mvnd和Gradle哪个性能更好?

作者 | 磊哥来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone)Maven 作为经典的项目构建工具相信很多人已经用很久了,但如果体验过 Gradle,那感觉只有两个字“真香…

SpringBoot + ShardingSphere 秒级分库分表!

Spring Boot 作为主流微服务框架,拥有成熟的社区生态。市场应用广泛,为了方便大家,整理了一个基于spring boot的常用中间件快速集成入门系列手册,涉及RPC、缓存、消息队列、分库分表、注册中心、分布式配置等常用开源组件&#xf…

git reset, git checkout, git revert 区别 (译)

博客原文地址: http://blog.mexiqq.com/index.php/archives/3/题记:团队中大多数成员使用 sourceTree 和 github 两款 git 工具,然而大家对于图形化工具提供的 reset,checkout,revert 功能点并不是很了解,甚至于混淆,然后凭借猜测去使用。功夫…

Redis笔记之基本数据结构 动态字符串SDS

简单动态字符串 传统上的C语言的字符串表示是以空字符结尾的字符数组(C字符串),redis自己实现一个动态字符串(SDS),两者之间的区别以及使用SDS的好处有: 结构不同。C字符串以空字符结尾的字符…