Rem函数

Rem函数

Remainder after division

无符号取余(除法运算后的系数)

Syntax

语法

R = rem(X,Y)

Description

描述

R = rem(X,Y) if Y ~= 0, returns X - n.*Y where n = fix(X./Y). If Y is not an integer and the quotient X./Y is within roundoff error of an integer, then n is that integer. By convention, rem(X,0) is NaN. The inputs X and Y must be real arrays of the same size, or real scalars.

R=rem(X,Y)如果Y~=0,返回X-n.&Y在这里n=fix(X./Y)。如果Y不是一个整数并且商X./Y是一个整数内的错误,之后n是整数。被约束,rem(X,0)是非数。输入的XY必须是相同大小的实数阵列,或实数数量。

Remarks

备注

So long as operands X and Y are of the same sign, the statement rem(X,Y) returns the same result as does mod(X,Y). However, for positive X and Y,

再次遇到相同迹象的操作数XY,语句rem(X,Y)返回相同结果作为mod(X,Y)。无论如何,正数XY

rem(-X,Y) = mod(-X,Y)-Y

The rem function returns a result that is between 0 and sign(X)*abs(Y). If Y is zero, rem returns NaN.

rem函数返回一个结果居于0sign(X)*abs(Y)之间。如果Y是零,rem返回非数。

你可能感兴趣的:(Rem函数)