Matlab std在REPL中工作,但在程序中没有

时间:2012-10-04 15:53:04

标签: matlab

我想计算矩阵元素的标准推导。所以我首先使用命令reshape将我的矩阵转换为向量,然后使用std

但是,我收到一条错误消息:

Error using var (line 59)
First argument must be single or double.

Error in std (line 32)
y = sqrt(var(varargin{:}));

Error in reducenoise2>standabw (line 112)
            s = std(B);

Error in reducenoise2 (line 36)
 D = standabw(n,m,r,fu,D);

所以我在传递给B之前打印了我的向量std。我在REPL中将其分配给变量x,尝试手动调用std(x)

有趣的是,这很好用。

那么如何使用相同的参数调用函数std - 在我的代码中使用时会导致错误,但在REPL中工作正常吗?

这是Matlab函数:

function [D] = standabw(n,m,r,fu,D)
    for i = 1+r:n-r
        for j = 1+r:m-r
            C = D(i-r:i+r,j-r:j+r);
            B = reshape(C,(2*r+1)^2,1)
            s = std(B);
            if s > fu
                D(i,j) = 255;
            end
        end
    end
end

这是向量B,就在错误消息之前:

B =

    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    0
    1
    0
    0
    0
    0
    0
    0
    0

1 个答案:

答案 0 :(得分:6)

很可能你的B矢量是某种int类型。试着这样打电话

std(double(B))

上述语句首先将B转换为double类型,然后调用std。

要检查命令提示符下变量类型whos的类型是什么。