📄 normalizeratio.m
字号:
% NormalizeRatio: compute the ratio between two numbers except that it will
% output zero when the denominator is 0
%
function result = NormalizeRatio(Numerator, Denominator)
if (Denominator ~= 0)
result = Numerator / Denominator;
else
result = 0;
end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -