gpt4 book ai didi

matlab - 如何从 mex 函数访问 matlab 结构域中的矩阵?

转载 作者:太空宇宙 更新时间:2023-11-03 19:35:09 24 4
gpt4 key购买 nike

我正在尝试弄清楚如何从 mex 函数访问存储在 matlab 结构的字段中的矩阵。

这太啰嗦了……让我解释一下:

我有一个定义如下的 matlab 结构:

matrixStruct = struct('matrix', {4, 4, 4; 5, 5, 5; 6, 6 ,6})

我有一个 mex 函数,我希望能够在其中接收指向矩阵中第一个元素的指针(矩阵 [0][0],在 c 术语中),但我一直无法弄清楚怎么做。

我尝试了以下方法:

/* Pointer to the first element in the matrix (supposedly)... */
double *ptr = mxGetPr(mxGetField(prhs[0], 0, "matrix");

/* Incrementing the pointer to access all values in the matrix */
for(i = 0; i < 3; i++){
printf("%f\n", *(ptr + (i * 3)));
printf("%f\n", *(ptr + 1 + (i * 3)));
printf("%f\n", *(ptr + 2 + (i * 3)));
}

最终打印的内容如下:

4.000000
0.000000
0.000000
0.000000
0.000000
0.000000
0.000000
0.000000
0.000000

我还尝试了以下变体,认为嵌套函数调用可能有些奇怪,但无济于事:

/* Pointer to the first location of the mxArray */
mxArray *fieldValuePtr = mxGetField(prhs[0], 0, "matrix");

/* Get the double pointer to the first location in the matrix */
double *ptr = mxGetPr(fieldValuePtr);

/* Same for loop code here as written above */

有没有人知道我如何才能实现我的目标,或者我可能做错了什么?

谢谢!

编辑:根据 yuk 的评论,我尝试在一个结构上执行类似的操作,该结构有一个名为 array 的字段,它是一个 double 的一维数组。

包含数组的结构定义如下:

arrayStruct = struct('array', {4.44, 5.55, 6.66})

我在 mex 函数中对 arrayStruct 尝试了以下操作:

mptr = mxGetPr(mxGetField(prhs[0], 0, "array"));

printf("%f\n", *(mptr));
printf("%f\n", *(mptr + 1));
printf("%f\n", *(mptr + 2));

...但输出遵循之前打印的内容:

4.440000
0.000000
0.000000

最佳答案

struct('field', {a b c}) 是结构构造函数的一种特殊形式,它创建一个与元胞数组大小相同的结构 array,将单元格的每个元素放入结构相应元素的字段“字段”中。也就是说,这个:

s = struct('field', {a b c});

产生与此相同的结果:

s(1).field = a;
s(2).field = b;
s(3).field = c;

您的问题的解决方案是使用方括号形成常规(非单元格)数组,如下所示:

matrixStruct = struct('matrix', [4, 4, 4; 5, 5, 5; 6, 6 ,6]);

关于matlab - 如何从 mex 函数访问 matlab 结构域中的矩阵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2813556/

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