如何解决&&逻辑标量的操作数

发布于 2025-01-02 23:10:21 字数 391 浏览 1 评论 0原文

在 matlab 中运行代码后,我遇到了这个错误,并且不确定如何解决它。我该如何解决这个问题。

警告:

|| 的操作数和&&运算符必须可转换为逻辑标量值。

    Jgray = double(rgb2gray(J));
    % Calculate the Gradients
    [dIx, dIy] = gradient(Jgray);
    if max(dIx)<=103 && max(dIy)<=100
        B =  abs(dIy) - abs(dIx);
    else
        B = abs(dIx) - abs(dIy);
    end

After I run the code in matlab, I encounter this error and unsure how to solve it. How can I solve this problem.

Warning:

Operands to the || and && operators must be convertible to logical scalar values.

    Jgray = double(rgb2gray(J));
    % Calculate the Gradients
    [dIx, dIy] = gradient(Jgray);
    if max(dIx)<=103 && max(dIy)<=100
        B =  abs(dIy) - abs(dIx);
    else
        B = abs(dIx) - abs(dIy);
    end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

静待花开 2025-01-09 23:10:21

如果 dIx 和 dIy 是矩阵(与一维向量相反),则 max(dIx)max(dIy) 将返回向量。

&&|| 应该用于比较标量,而不是向量。

可能想要输入,

if max(dIx(:))<=103 && max(dIy(:))<=100

但我不能确定,因为我不知道代码应该做什么:)

If dIx and dIy are matrices (as opposed to 1-D vectors), max(dIx) and max(dIy) will return vectors.

&& and || should be used to compare scalars, not vectors.

You probably want to type

if max(dIx(:))<=103 && max(dIy(:))<=100

but I cannot tell for sure, as I dont know what the code is supposed to do :)

冰火雁神 2025-01-09 23:10:21

使用 &| 作为矩阵,而不是 &&||

&&|| 是短路运算符。如果你仔细想想,它们对于矩阵来说毫无意义。例如,每当第一个参数为 true 时,短路或 - || 就会停止并返回 true
但如何将其扩展到矩阵呢?

Use & and | for matrixes instead of &&, || .

&& and || are short circuit operators. If you think about it, they make no sense for matrixes. For example, the short circuit or - || stops and returns true whenever the first argument is true.
But how would you extend that to a matrix?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文