我需要以下代码的帮助:
if x(:,3)>x(:,4)
output=[x(:,1)-x(:,2)];
elseif x(:,3)<x(:,4)
output=[x(:,2)-x(:,1)];
else
output=NaN
end
这是一个示例数据:
matrix x output
10 5 1 2 -5
10 5 2 1 5
NaN 1 1 3 NaN
我不确定如何使代码工作。它只接受第一个参数并忽略 else if 和 else 参数。请帮忙。谢谢你。