matlab mod 函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab mod 函数相关的知识,希望对你有一定的参考价值。
mod(10,-3)得-2,这是为什么啊?
函数功能:在FreeMat、MATLAB中,该函数用于进行取模(取余)运算。在matlab的命令窗口中输入help mod或者doc mod可以获得该函数的帮助信息。 语法格式: M = mod(X,Y) 返回X对Y取模运算的结果。这里X可以是一个数组。 其中,比较特殊的情况有: mod(X,0):结果为X mod(X,X):结果为0 mod(X,Y):如果X不等于Y且Y不为0,则结果的符号与Y的符号一致。 rem函数也用于取模运算,二者不同之处在于: rem(X,Y):如果X不等于Y且Y不为0,则结果的符号与X的符号一致。 如果X、Y符号一致,则mod(X,Y)和rem(X,Y)结果相等。 mod函数可以判断两个数是否是同余关系(congruence relationships):当且 仅当mod(x,m) == mod(y,m),则x、y是同余关系。 相关函数:rem 参考技术A 简单的说mod(a,b)就是求的是a除以b的余数。比方说mod(100,3)=1,mod(17,6)=5详细用法见下
mod
Modulus
after
division
Syntax
M
=
mod(X,Y)
Description
M
=
mod(X,Y)
if
Y
~=
0,
returns
X
-
n.*Y
where
n
=
floor(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.
The
inputs
X
and
Y
must
be
real
arrays
of
the
same
size,
or
real
scalars.
The
following
are
true
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.
Remarks
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.
The
mod
function
is
useful
for
congruence
relationships:
x
and
y
are
congruent
(mod
m)
if
and
only
if
mod(x,m)
==
mod(y,m).
Examples
mod(13,5)
ans
=
3
mod([1:5],3)
ans
=
1
2
0
1
2
mod(magic(3),3)
ans
=
2
1
0
0
2
1
1
0
2 参考技术B 简单的说mod(a,b)就是求的是a除以b的余数。比方说mod(100,3)=1,mod(17,6)=5
详细用法见下
mod
Modulus
after
division
Syntax
M
=
mod(X,Y)
Description
M
=
mod(X,Y)
if
Y
~=
0,
returns
X
-
n.*Y
where
n
=
floor(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.
The
inputs
X
and
Y
must
be
real
arrays
of
the
same
size,
or
real
scalars.
The
following
are
true
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.
Remarks
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.
The
mod
function
is
useful
for
congruence
relationships:
x
and
y
are
congruent
(mod
m)
if
and
only
if
mod(x,m)
==
mod(y,m).
Examples
mod(13,5)
ans
=
3
mod([1:5],3)
ans
=
1
2
0
1
2
mod(magic(3),3)
ans
=
2
1
0
0
2
1
1
0
2 参考技术C 求余,显然是10-(-2)/(-3)本回答被提问者采纳
matlab 中mod的用法
matlab中函数MOD可以借用函数 INT 来使用并表示:MOD(n, d) = n - d*INT(n/d)。
示例:
MOD(3, 2) 等于 1;
MOD(-3, 2) 等于-1;
MOD(3, -2) 等于1;
MOD(-3, -2) 等于-1;
MOD(-3, 0) 等于-3;
MOD(3, 0) 等于3;
MOD(2,0) 等于2;
注意:以上为Oracle中MOD函数的计算方法,在Pl/sql Dev中测试过。
在EXCEL中:
MOD(-3, 2) 等于1(与后面的数符号相同)。
MOD(3, -2) 等于-1(与后面的数符号相同)。
mod(3,0)则出错#DIV/0!
扩展资料:
一、两个异号整数求余:
1.函数值符号规律(余数的符号) mod(负,正)=正 mod(正,负)=负
结论:两个整数求余时,其值的符号为除数的符号。
2.取值规律 先将两个整数看作是正数,再作除法运算
1)能整除时,其值为0 (或没有显示)
2)不能整除时,其值=除数×(整商+1)-被除数
例:mod(36,-10)=-4 即:36除以10的整数商为3,加1后为4;其与除数之积为40;再与被除数之差为(40-36=4);取除数的符号。所以值为-4。
二、两个小数求余,取值规律:
被除数-(整商×除数)之后在第一位小数位进行四舍五入。
例:mod(9,1.2)=0.6即:9除1.2其整商为7;7与除数1.2之积为8.4;被除数9与8.4之差为0.6。故结果为0.6。
例:mod(9,2.2)=0.2 即:9除2.2其整商为4;4与除数2.2这积为8.8;被除数9与8.8之差为0.2,故结果为0.2。
三、在VB中,定义为被除数和除数先四舍五入,然后再相除求余数。
参考资料来源:百度百科—MOD (MATLAB函数)
参考技术Amod函数是求余函数,用法如下:
b = mod(a,m) 返回用 m 除以 a 后的余数
其中 a 是被除数,m 是除数。
注意:正负号不同的两个数使用mod函数所得值得正负问题
1、mod(负 , 正)=正
2、mod(正 , 负)=负
例子:
一、mod(-x , y):所得到的值为正
>> mod(-1,2)
ans =
1
二、mod(x , -y):所得到的值为负
>>mod(1,-2)
ans =
-1
扩展资料:
MATLAB是一个包含大量计算算法的集合。其拥有600多个工程中要用到的数学运算函数,可以方便的实现用户所需的各种计算功能。
函数中所使用的算法都是科研和工程计算中的最新研究成果,而且经过了各种优化和容错处理。在通常情况下,可以用它来代替底层编程语言,如C和C++ 。
在计算要求相同的情况下,使用MATLAB的编程工作量会大大减少。MATLAB的这些函数集包括从最简单最基本的函数到诸如矩阵,特征向量、快速傅立叶变换的复杂函数。
函数所能解决的问题其大致包括矩阵运算和线性方程组的求解、微分方程及偏微分方程的组的求解、符号运算、傅立叶变换和数据的统计分析、工程中的优化问题、稀疏矩阵运算、复数的各种运算、三角函数和其他初等数学运算、多维数组操作以及建模动态仿真等。
参考资料:百度百科MATLAB
参考技术B 简单的说mod(a,b)就是求的是a除以b的余数。比方说mod(100,3)=1,mod(17,6)=5详细用法见下
mod
Modulus after division
Syntax
M = mod(X,Y)
Description
M = mod(X,Y) if Y ~= 0, returns X - n.*Y where n = floor(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. The inputs X and Y must be real arrays of the same size, or real scalars.
The following are true 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.
Remarks
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.
The mod function is useful for congruence relationships: x and y are congruent (mod m) if and only if mod(x,m) == mod(y,m).
Examples
mod(13,5)
ans =
3
mod([1:5],3)
ans =
1 2 0 1 2
mod(magic(3),3)
ans =
2 1 0
0 2 1
1 0 2本回答被提问者采纳 参考技术C mod(a,m)
即a÷m=x……y
mod(a,m)的值的正负取决于m的正负,即m为正,值就为正,m为负,值就为负。
当a,m同号时,mod(a,m)的值等于y
当a,m异号时,mod(a,m)的值等于(x+1)×m-a
以上是关于matlab mod 函数的主要内容,如果未能解决你的问题,请参考以下文章