解释memcpy(MatLab引擎)的使用

时间:2016-05-26 08:05:08

标签: c++ matlab matlab-engine

我有在MatLab中运行模拟的背景,目前正在学习C ++来运行模拟,同时仍然使用MatLab绘制MatLab引擎。下面的代码显示了我为生成变量而编写的一段代码示例,将其传递给MatLab工作区,绘制它,然后将另一个变量传递回C ++。

#include <iostream>
#include "engine.h"
//#include "mex.h"



using namespace std;

void main()
{

    //Create pointer for matlab engine
    Engine *matlab;

    //Open matlab engine interface
    matlab = engOpen("null");

    //Create variable
    double timedata[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
    mxArray *T = mxCreateDoubleMatrix(1, 10, mxREAL);
    memcpy((void *)mxGetPr(T), (void *)timedata, 10 * sizeof(double));

    //Put variable into workspace
    engPutVariable(matlab, "workspaceT", T);

    //Evaluate strings in MatLab
    engEvalString(matlab, "D = workspaceT+2;");
    engEvalString(matlab, "plot(workspaceT,D);");

    //Get variable from MatLab workspace
    mxArray *d = engGetVariable(matlab, "D");

    double b[10];
    for (int i = 0; i < 9; i++)
    {
        b[i] = (double)mxGetPr(d)[i];
        cout << b[i];
    }
    cout << endl;

    system("pause");

    //Close matlab engine interface
    engClose(matlab);


}

我特别感兴趣的部分是......

memcpy((void *)mxGetPr(T), (void *)timedata, 10 * sizeof(double));

我完全不知道这段代码在做什么。我看了一下文档(http://www.cplusplus.com/reference/cstring/memcpy/),但它并没有完全启发我。我特别不能得到的部分是(void *)。正如我所说,我的背景是在MatLab,所以我不是C ++的专家,所以如果有人能解释这里发生的事情,就像我五岁,那将非常感激!

谢谢,

的Seb。

1 个答案:

答案 0 :(得分:1)

这是memcpy

的原型
void * memcpy ( void * destination, const void * source, size_t num );

memcpy的前2个参数是void*(void*)显式(C风格)强制转换,它将指向指针的任何指针强制转换为void

但是不需要它,因为它可能隐含地发生:

int *pointer_to_int;
void *pointer_to_void = (void*)pointer_to_int;//explicit cast

pointer_to_void = pointer_to_int; //implicit cast