matlab中mod()函数究竟有什么用?具体的作用(不要告诉我怎么算,我只想知道他有什么用)
发布网友
发布时间:2022-05-01 14:12
我来回答
共3个回答
热心网友
时间:2023-10-17 12:35
数学函数取模。。。
如5mod3=2 其实就是取余
热心网友
时间:2023-10-17 12:35
看 Help Mod
热心网友
时间:2023-10-17 12:35
数学函数取模。。。
如5mod3=2 其实就是取余
热心网友
时间:2023-10-17 12:35
help mod
MOD Molus after division.
MOD(x,y) is x - n.*y where n = floor(x./y) if y ~= 0. If y is not an
integer and the quotient x./y is within roundoff error of an integer,
then n is that integer. The inputs x and y must be real arrays of the
same size, or real scalars.
The statement "x and y are congruent mod m" means mod(x,m) == mod(y,m).
By convention:
MOD(x,0) is x.
MOD(x,x) is 0.
MOD(x,y), for x~=y and y~=0, has the same sign as y.
Note: REM(x,y), for x~=y and y~=0, has the same sign as x.
MOD(x,y) and REM(x,y) are equal if x and y have the same sign, but
differ by y if x and y have different signs.
See also rem.
Overloaded methods:
codistributed/mod
sym/mod
Reference page in Help browser
doc mod
热心网友
时间:2023-10-17 12:35
数学函数取模。。。
如5mod3=2 其实就是取余
热心网友
时间:2023-10-17 12:35
看 Help Mod
热心网友
时间:2023-10-17 12:35
看 Help Mod
热心网友
时间:2023-10-17 12:35
help mod
MOD Molus after division.
MOD(x,y) is x - n.*y where n = floor(x./y) if y ~= 0. If y is not an
integer and the quotient x./y is within roundoff error of an integer,
then n is that integer. The inputs x and y must be real arrays of the
same size, or real scalars.
The statement "x and y are congruent mod m" means mod(x,m) == mod(y,m).
By convention:
MOD(x,0) is x.
MOD(x,x) is 0.
MOD(x,y), for x~=y and y~=0, has the same sign as y.
Note: REM(x,y), for x~=y and y~=0, has the same sign as x.
MOD(x,y) and REM(x,y) are equal if x and y have the same sign, but
differ by y if x and y have different signs.
See also rem.
Overloaded methods:
codistributed/mod
sym/mod
Reference page in Help browser
doc mod
热心网友
时间:2023-10-17 12:35
help mod
MOD Molus after division.
MOD(x,y) is x - n.*y where n = floor(x./y) if y ~= 0. If y is not an
integer and the quotient x./y is within roundoff error of an integer,
then n is that integer. The inputs x and y must be real arrays of the
same size, or real scalars.
The statement "x and y are congruent mod m" means mod(x,m) == mod(y,m).
By convention:
MOD(x,0) is x.
MOD(x,x) is 0.
MOD(x,y), for x~=y and y~=0, has the same sign as y.
Note: REM(x,y), for x~=y and y~=0, has the same sign as x.
MOD(x,y) and REM(x,y) are equal if x and y have the same sign, but
differ by y if x and y have different signs.
See also rem.
Overloaded methods:
codistributed/mod
sym/mod
Reference page in Help browser
doc mod
热心网友
时间:2023-10-17 12:35
数学函数取模。。。
如5mod3=2 其实就是取余
热心网友
时间:2023-10-17 12:35
看 Help Mod
热心网友
时间:2023-10-17 12:36
help mod
MOD Molus after division.
MOD(x,y) is x - n.*y where n = floor(x./y) if y ~= 0. If y is not an
integer and the quotient x./y is within roundoff error of an integer,
then n is that integer. The inputs x and y must be real arrays of the
same size, or real scalars.
The statement "x and y are congruent mod m" means mod(x,m) == mod(y,m).
By convention:
MOD(x,0) is x.
MOD(x,x) is 0.
MOD(x,y), for x~=y and y~=0, has the same sign as y.
Note: REM(x,y), for x~=y and y~=0, has the same sign as x.
MOD(x,y) and REM(x,y) are equal if x and y have the same sign, but
differ by y if x and y have different signs.
See also rem.
Overloaded methods:
codistributed/mod
sym/mod
Reference page in Help browser
doc mod