log.m
来自「matlab 多参数积分工具箱 multivariable calculus」· M 代码 · 共 16 行
M
16 行
function B=log(A)
%LOG Natural logarithm.
% LOG(S) is the natural logarithm of the scalar function S.
% Complex results are produced if S is not positive.
%
% See also LOG10, EXP.
% Copyright (c) 2001-04-17, B. Rasmus Anthin.
B=A;
if isempty(inputname(1))
B.f=['log(' A.f ')'];
else
B.f=['log(' inputname(1) ')'];
end
B.F=['log(' A.F ')'];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?