matlab sgn函数
时间: 2023-08-22 13:08:33 浏览: 295
bipolar_sgn(net):双极 sgn 函数神经网络-matlab开发
Matlab 中 sgn 函数用于返回输入值的符号,具体实现如下:
```matlab
function y = sgn(x)
y = sign(x);
end
```
其中,`sign(x)` 函数返回输入值 `x` 的符号,如果 `x` 是正数,则返回 `1`,如果 `x` 是负数,则返回 `-1`,如果 `x` 是零,则返回 `0`。
阅读全文