From 92bba9e257ebfe6ef4ca65d200f1017abe99d88d Mon Sep 17 00:00:00 2001 From: "rick.chan" Date: Thu, 28 Jan 2021 11:57:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=BF=94=E5=9B=9E=E5=80=BC.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: rick.chan --- Software/Applications/Octave/Octave_常用函数.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Software/Applications/Octave/Octave_常用函数.md b/Software/Applications/Octave/Octave_常用函数.md index 95a5009..104fd9f 100644 --- a/Software/Applications/Octave/Octave_常用函数.md +++ b/Software/Applications/Octave/Octave_常用函数.md @@ -1,7 +1,7 @@ # Octave 常用函数 ```m -bitshift(A,k) % 返回移位了 k 位的 A 的值。当 K>0 时左移,当 k<0 时右移。 +A=bitshift(A,k) % 返回移位了 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). ```