gpt4 book ai didi

C++/数学GL : Missunderstanding of vector fields

转载 作者:太空宇宙 更新时间:2023-11-04 13:12:49 27 4
gpt4 key购买 nike

我在 Windows 10 和 Qt 4.8.7 下使用 MathGL 2.3.5.1 ( http://mathgl.sourceforge.net/doc_en/Main.html )。

我在使用 MathGL 的 vector 场时遇到问题。下面有一个 MathGL 文档,文件名为 mathgl-2.3.5.eng.pdf https://sourceforge.net/projects/mathgl/files/mathgl/mathgl%202.3.5/„4.15 vector 场“部分描述了方法“Vect”的用法。当然,在“2.8 vector 场示例”一节中有一个 vector 场示例。

首先,我对 vector 场的理解是有点(在我的例子中它总是二维的)和(数学上的) vector 。所以点 P1(1,1) 和 vector V1(1,1) 的组合意味着箭头从点 P1(1,1) 开始到点 P2(2,2) 结束,这是简单的 vector 加法: P2 = P1 + V1.

现在回到 MathGL。我说的是这个方法:void Vect (const mglDataA &x, const mglDataA &y, const mglDataA &ax, const mglDataA &ay, const char *sch="", const char *opt="");

如果我正确理解参数那么

  • x代表箭头的起点,单位为x
  • y代表y单位的箭头起点
  • ax 代表 x 方向的单位(数学上) vector
  • ay 代表 y 方向的单位(数学上) vector

那么让我们从编码开始吧。

int sample(mglGraph *gr)
{
long cols=2;
long rows=2;
mglData x; x.Create(cols, rows);
x.a[0] = 1.0; x.a[1] = 0.0; x.a[2] = 0.0; x.a[3] = 0.0;
mglData y; y.Create(cols, rows);
y.a[0] = 1.0; y.a[1] = 0.0; y.a[2] = 0.0; y.a[3] = 0.0;
mglData ax; ax.Create(cols, rows);
ax.a[0] = 1.0; ax.a[1] = 0.0; ax.a[2] = 0.0; ax.a[3] = 0.0;
mglData ay; ay.Create(cols, rows);
ay.a[0] = 1.0; ay.a[1] = 0.0; ay.a[2] = 0.0; ay.a[3] = 0.0;

gr->Title("Vector field P1(1,1) V1(1,1)");
gr->SetRanges(0, 3, 0, 3);
gr->Vect(x, y, ax, ay, "<");
gr->Box();
gr->Axis();
gr->Grid("xy", "h:");
return 0;
}

首先,我不能为 x、y、ax 和 ay 创建“列 vector ”,意思是我不能写:

long cols=1;
long rows=2;
mglData x; x.Create(cols, rows); x.a[0] = 1.0; x.a[1] = 0.0;
mglData y; y.Create(cols, rows); y.a[0] = 1.0; y.a[1] = 0.0;
mglData ax; ax.Create(cols, rows); ax.a[0] = 1.0; ax.a[1] = 0.0;
mglData ay; ay.Create(cols, rows); ay.a[0] = 1.0; ay.a[1] = 0.0;

然后gr->Vect(x, y, ax, ay, "<");将此消息放在控制台:

MathGL message - Vect: data dimension(s) is too small

在这段代码中,我们设置了点 P1:x.a[0] = 1.0;和 y.a[0] = 1.0;. vector V1 应表示为:ax.a[0] = 1.0; ay.a[0] = 1.0;.

生成的图形显示一个箭头,从 P1(1,1) 开始但不在 P2(2,2) 结束。

谁能帮我解决这个问题?

问候,

托马斯

最佳答案

为了我的目的,我找到了解决方案。我手工绘制“vector ”。所以我只使用这段代码来绘制 vector :

mglGraph gr;
gr.Line(1,1, 2,2), "BA_"); // a vector from (1,1) to (2,2)

祝愿

托马斯

关于C++/数学GL : Missunderstanding of vector fields,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38952368/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com