MATLAB中help的使⽤
随时更新的函数记录
建议⼤家在学习MATLAB的时候,⽤到什么函数再去学习,不需要⼀开始就很系统地把所有函数功能搞明⽩,因为MATLAB太强⼤了,⾥⾯内容很多,当然,最有效的办法是利⽤MATLAB⾃带的help函数。
⼀、help的使⽤,以取整函数为例:
所有的这些都可以通过MATLAB的⼀条help语句得到:例如help round
当输⼊查询round函数的时候,还会有与其相关的函数显⽰在命令⾏窗⼝,如下:另请参阅 ceil, fix, floor
>> help round
round - Round to nearest integer
 This MATLAB function rounds the elements of X to the nearest integers.
 Y = round(X)
 round 的参考页
 另请参阅 ceil, fix, floor
 名为 round 的其他函数
  fixedpoint/round
⼆、取整函数
round(3.9) --> 4
round(3.4) --> 3
round(-1.9) --> -2
round(-1.4) --> -1
2.fix(x):直接去除x的⼩数部分
fix(3.9) --> 3
fix(3.4) --> 3
fix(-1.9) --> -1
fix(-1.4) --> -1
ceil(3.9) --> 4
matlab学好了有什么用ceil(3.4) --> 4
ceil(-1.9) --> -1
ceil(-1.4) --> -1
4.floor(x):不超过x的最⼤整数,向⽐x⼩的数取整
floor(3.9) --> 3
floor(3.4) --> 3
floor(-1.9) --> -2
floor(-1.4) --> -2

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。