2 Star 16 Fork 1

snowland.ltd/snowland-FCE

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
getCode.m 483 Bytes
一键复制 编辑 原始数据 按行查看 历史
A.Star 提交于 2018-03-22 08:01 . 3比值
function code = getCode(a, bz)
if bz == 1
if a < 0.1
code = 0;
elseif a < 1
code = 1;
elseif a < 3
code = 1;
else
code = 2;
end
elseif bz == 2
if a < 0.1
code = 1;
elseif a < 1
code = 0;
elseif a < 3
code = 2;
else
code = 2;
end
else
if a < 0.1
code = 0;
elseif a < 1
code = 0;
elseif a < 3
code = 1;
else
code = 2;
end
end
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Matlab
1
https://gitee.com/snowlandltd/snowland-FCE.git
git@gitee.com:snowlandltd/snowland-FCE.git
snowlandltd
snowland-FCE
snowland-FCE
master

搜索帮助