【 MATLAB 】rem 函数介绍

举报
李锐博恩 发表于 2021/07/15 07:20:48 2021/07/15
【摘要】 rem函数和mod函数很相似,二者认真看一个,另一个看一下区别即可。 mod函数介绍:【 MATLAB 】mod 函数介绍 rem Remainder after division Syntax r = rem(a,b) Description r = rem(a,b) returns the remainder after division of...

rem函数和mod函数很相似,二者认真看一个,另一个看一下区别即可。

mod函数介绍:【 MATLAB 】mod 函数介绍



rem

Remainder after division

Syntax

r = rem(a,b)

Description

r = rem(a,b) returns the remainder after division of a by b, where a is the dividend and b is the divisor. This function is often called the remainder operation, which can be expressed asr = a - b.*fix(a./b). The rem function follows the convention that rem(a,0) is NaN.

a/b之后的余数便是r。如果除数为0,则rem(a,0)为NaN,这和我们的认知也很符合。


Remainder After Division of Scalar

Compute the remainder after dividing 5 into 23.

a = 23;
b = 5;
r = rem(a,b)
r = 3

Remainder After Division of Vector

Find the remainder after division for a vector of integers and the divisor 3.

a = 1:5;
b = 3;
r = rem(a,b)
r = 1×5 1 2 0 1 2

Remainder After Division for Positive and Negative Values

Find the remainder after division for a set of integers including both positive and negative values. Note that nonzero results have the same sign as the dividend.

a = [-4 -1 7 9];
b = 3;
r = rem(a,b)
r = 1×4 -1 -1 1 0

注:从这个例子开始,就和mod函数不一样了,这里余数符号与被除数一致。


  
  1. a = [-4 -1 7 9];
  2. b = 3;
  3. r1 = rem(a,b)
  4. r2 = mod(a,b)

r1 =

    -1    -1     1     0


r2 =

     2     2     1     0

二者结果是不一样的,我们想想这个rem是怎么计算的。

它是先将被输出a中的符号去掉,当成正数来算,结果符号在和a一致即可。


Remainder After Division for Floating-Point Values

Find the remainder after division for several angles using a divisor of 2*pi. When possible, rem attempts to produce exact integer results by compensating for floating-point round-off effects.

theta = [0.0 3.5 5.9 6.2 9.0 4*pi];
b = 2*pi;
r = rem(theta,b)
r = 1×6 0 3.5000 5.9000 6.2000 2.7168 0

Differences Between mod and rem

The concept of remainder after division is not uniquely defined, and the two functions mod and rem each compute a different variation. The mod function produces a result that is either zero or has the same sign as the divisor. The rem function produces a result that is either zero or has the same sign as the dividend.

Another difference is the convention when the divisor is zero. The mod function follows the convention that mod(a,0) returns a, whereas the rem function follows the convention that rem(a,0)returns NaN.

Both variants have their uses. For example, in signal processing, the mod function is useful in the context of periodic signals because its output is periodic (with period equal to the divisor).

 

 

文章来源: reborn.blog.csdn.net,作者:李锐博恩,版权归原作者所有,如需转载,请联系作者。

原文链接:reborn.blog.csdn.net/article/details/83504843

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。