src/
其中'Ws'是N * N空间权重矩阵,'endog'是N * 3(我们有三个内生变量) 我无法理解为什么会出现这种错误,因为当我只设置一个内生变量时,我的代码运行良好。 更重要的是,三个内生变量不是假的。 是因为这些内生变量中的两个是相互作用吗?或者因为包'splm / spgm'不能允许额外的内生变量?
以下是我的代码的一部分:
private void button1_Click(object sender, EventArgs e)
{
Zahl1 = Convert.ToDouble(textBox1.Text);
Zahl2 = Convert.ToDouble(textBox2.Text);
label2.Text = label2.Text.Replace(".", ",");
if (String.IsNullOrEmpty(textBox1.Text) | String.IsNullOrEmpty(textBox2.Text))
{
label2.Text = "Bitte 2 Zahlen eingeben";
}
}
,回归是:
Error in Ws %*% as.matrix(endog) :
requires numeric/complex matrix/vector arguments
感谢您的帮助!