问题标签 [operand]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
36293 浏览

python - * 不支持的操作数类型:“numpy.ndarray”和“numpy.float64”

长期阅读,第一次写。

我在谷歌和堆栈溢出上四处搜索,但并没有真正找到这个问题的一般答案。

我在使用 numpy 1.6.2 的 python 2.7.3 中收到“*: 'numpy.ndarray' 和 'numpy.float64' 不支持的操作数类型”错误。

该错误来自将 numpy 数组和 numpy 浮点数相乘,但并非每次都发生。

例如:

或者

两者都工作

现在对于有问题的孩子:

或者,x 定义如上:

两者都会产生错误:NotImplemented

我知道随机函数和数字看起来很奇怪,但从概念上讲这仍然应该工作,因为当两者都单独设置为变量时它工作。

为什么会这样?我该如何从一般意义上解决它?

非常感谢!杰森

0 投票
1 回答
513 浏览

batch-file - file name with Space causing missing operand

Attempting to make a batch to display the filesize of a file. I have found an (almost) perfect solution in another post (How can I check the size of a file in a Windows batch script?) but whenever I enter a filename with a space, I get "missing operand" on the "FOR" line

I have implemented in a batch like this:

So, for example, [Royals] works, but [True Lies] doesnt. I've tried several combinations of quote marks etc but cant get it to work. Probably missing something small but can anyone help? Thanks Rob

0 投票
3 回答
1215 浏览

matlab - Matlab:获取相邻坐标值 - && 操作数

我正在尝试从具有 id 值的二维矩阵中提取板上每个元素的相邻 id。

我有一个 ID 列表及其坐标(n 个元素),我正在创建以下内容:(仅左邻居的示例)。

我得到:下标索引必须是真正的正整数或逻辑。

我想使用 && 操作数或其他一些逻辑的主体。leftIndex 包含表中当前索引的所有索引。有些是合法的有些不合法。如果 hasLeft 向量为真,则 leftIndex 向量值在“板”中是合法的。

仅当 hasLeft 为真时,如何检查向量的某个值中的邻居?

谢谢!

0 投票
12 回答
2022 浏览

java - 或 if 语句中带有 int 的操作数

我的问题是程序没有像我预期的“他”那样读取代码。

我有

当 hero 位置为 6 时,程序仍然转到 else。

这是为什么?是因为操作数吗?如果是,我应该如何改变它?

0 投票
5 回答
223791 浏览

python - TypeError: unsupported operand type(s) for /: 'str' and 'str'

whenever i run this program i get this

what can i do to divide pyc by tpy?

0 投票
4 回答
6726 浏览

c++ - “错误:没有运算符“=”匹配这些操作数”

我遇到了一个奇怪的问题,编译器突出显示“=”和“!=”作为错误,声称没有匹配的操作数,但我不知道如何。这是我的代码:

0 投票
2 回答
214 浏览

mysql - Operand should contain 1 column(s)??? IT DOES but still error. Is this a bug?

I'm having a verry strange problem. I am certain I have done nothing wrong in this line of code:

Still I get the message "#1241 - Operand should contain 1 column(s)"

Does anybony see something I don't see? I was thinking it may be caused by the _1 at address_1. But why would that be... I hope there is another explanation

0 投票
3 回答
391 浏览

c++ - const char 和二元运算符错误

首先要做的事情:我知道这段代码太长了,可以缩短很多。但是,我不想帮助如何缩短它,我只是想了解一些基础知识,而我现在的问题是运算符和存储值。正如您可能从代码中看到的那样,我正在尝试使用一堆 if 语句将特定值存储在变量中,然后在最后将这些值一起显示在一个字符串中。编译器不喜欢我的代码,并且给了我一堆与运算符相关的错误。

0 投票
1 回答
404 浏览

python - 不支持的操作数类型 -: 'str' 和 'str' - 出现此错误,我不知道为什么

目前正在创建一个 Cesears Cipher,特别是解密。

我不断得到:

而不是我的解密消息

不知道为什么,希望有一些见解:)

0 投票
1 回答
663 浏览

scala - Scala理解右关联操作数

我正在学习 scala(喜欢它!)但有些东西我不明白。我通过以“:”结尾的方法名称阅读了右关联操作数。易于理解,但我想定义我自己的关联函数,名为 add3To:。

我有一个语法错误,不知道为什么:

也许(我很确定)我犯了一个愚蠢的错误!但我没看到。