增加返回值.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2021-01-28 11:57:55 +08:00
parent 4e8ccc439a
commit 92bba9e257
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# Octave 常用函数
```m
bitshift(Ak) % 返回移位了 k 位的 A 的值。当 K>0 时左移,当 k<0 时右移
A=bitshift(Ak) % 返回移位了 k 位的 A 的值。当 K>0 时左移,当 k<0 时右移
seconds=time() % Return the current time as the number of seconds since the epoch.
t=now() % Return the current local date/time as a serial day number (see datenum).
```