标签: matlab equation
如何用MATLAB代码表示此方程式
答案 0 :(得分:0)
像这样:
function y = sgn(x) if x == 0 y = 0; else y = x / abs(x); end end