免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2904 | 回复: 0
打印 上一主题 下一主题

C++调用MATLAB引擎 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-20 12:19 |只看该作者 |倒序浏览
这是MATLAB自带的例子,我在WindowsXP(SP2), MATLAB R2007b, VC6.0下实现。

具体的步骤是:

1). 设置系统环境变量path,path里面要包括MATLAB的exe, dll那个路径

%MATLAB_PATH%\bin\win32

只要MATLAB是正确安装,它应该会自动配置path环境变量的。

右击我的电脑->属性->高级->环境变量->系统变量

双击path

path值应该有以下两个值,中间是分号

d:\MATLABR2007b\bin;d:\MATLABR2007b\bin\win32

2). 设置VC的路径

运行VC,转到options

include增加MATLAB的include路径 %MATLAB_PATH%\extern\include

lib增加%MATLAB_PATH%\extern\lib\win32\microsoft

这一步以后都不用做了。

3). 在VC中新建一个console项目(也可以是win32,mfc等其他项目),项目的link输入增加libeng.lib和libmx.lib(每个工程都要添加,否则编译不能通过)

4). main函数的代码:
  1. /* $Revision: 1.8.4.1 $ */
  2. /*
  3. * engdemo.c
  4. *
  5. * This is a simple program that illustrates how to call the MATLAB
  6. * Engine functions from a C program.
  7. *
  8. * Copyright 1984-2003 The MathWorks, Inc.
  9. * All rights reserved
  10. */
  11. #include <stdlib.h>
  12. #include <stdio.h>
  13. #include <string.h>
  14. #include "engine.h"
  15. #define BUFSIZE 256

  16. int main()

  17. {
  18. Engine *ep;
  19. mxArray *T = NULL, *result = NULL;
  20. char buffer[BUFSIZE+1];
  21. double time[10] = { 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 };

  22. /*
  23. * Start the MATLAB engine locally by executing the string
  24. * "matlab"
  25. *
  26. * To start the session on a remote host, use the name of
  27. * the host as the string rather than \0
  28. *
  29. * For more complicated cases, use any string with whitespace,
  30. * and that string will be executed literally to start MATLAB
  31. */
  32. if (!(ep = engOpen("\0"))) {
  33.    fprintf(stderr, "\nCan't start MATLAB engine\n");
  34.    return EXIT_FAILURE;
  35. }

  36. /*
  37. * PART I
  38. *
  39. * For the first half of this demonstration, we will send data
  40. * to MATLAB, analyze the data, and plot the result.
  41. */

  42. /*
  43. * Create a variable for our data
  44. */
  45. T = mxCreateDoubleMatrix(1, 10, mxREAL);
  46. memcpy((void *)mxGetPr(T), (void *)time, sizeof(time));
  47. /*
  48. * Place the variable T into the MATLAB workspace
  49. */
  50. engPutVariable(ep, "T", T);

  51. /*
  52. * Evaluate a function of time, distance = (1/2)g.*t.^2
  53. * (g is the acceleration due to gravity)
  54. */
  55. engEvalString(ep, "D = .5.*(-9.8).*T.^2;");

  56. /*
  57. * Plot the result
  58. */
  59. engEvalString(ep, "plot(T,D);");
  60. engEvalString(ep, "title('Position vs. Time for a falling object');");
  61. engEvalString(ep, "xlabel('Time (seconds)');");
  62. engEvalString(ep, "ylabel('Position (meters)');");

  63. /*
  64. * use fgetc() to make sure that we pause long enough to be
  65. * able to see the plot
  66. */
  67. printf("Hit return to continue\n\n");
  68. fgetc(stdin);
  69. /*
  70. * We're done for Part I! Free memory, close MATLAB engine.
  71. */
  72. printf("Done for Part I.\n");
  73. mxDestroyArray(T);
  74. engEvalString(ep, "close;");


  75. /*
  76. * PART II
  77. *
  78. * For the second half of this demonstration, we will request
  79. * a MATLAB string, which should define a variable X. MATLAB
  80. * will evaluate the string and create the variable. We
  81. * will then recover the variable, and determine its type.
  82. */
  83.    
  84. /*
  85. * Use engOutputBuffer to capture MATLAB output, so we can
  86. * echo it back. Ensure first that the buffer is always NULL
  87. * terminated.
  88. */

  89. buffer[BUFSIZE] = '\0';
  90. engOutputBuffer(ep, buffer, BUFSIZE);
  91. while (result == NULL) {
  92.      char str[BUFSIZE+1];
  93.      /*
  94.       * Get a string input from the user
  95.       */
  96.      printf("Enter a MATLAB command to evaluate. This command should\n");
  97.      printf("create a variable X. This program will then determine\n");
  98.      printf("what kind of variable you created.\n");
  99.      printf("For example: X = 1:5\n");
  100.      printf(">> ");

  101.      fgets(str, BUFSIZE, stdin);
  102.    
  103.      /*
  104.       * Evaluate input with engEvalString
  105.       */
  106.      engEvalString(ep, str);
  107.      
  108.      /*
  109.       * Echo the output from the command. First two characters are
  110.       * always the double prompt (>>).
  111.       */
  112.      printf("%s", buffer+2);
  113.      
  114.      /*
  115.       * Get result of computation
  116.       */
  117.      printf("\nRetrieving X...\n");
  118.      if ((result = engGetVariable(ep,"X")) == NULL)
  119.        printf("Oops! You didn't create a variable X.\n\n");
  120.      else {
  121.    printf("X is class %s\t\n", mxGetClassName(result));
  122.      }
  123. }

  124. /*
  125. * We're done! Free memory, close MATLAB engine and exit.
  126. */
  127. printf("Done!\n");
  128. mxDestroyArray(result);
  129. engClose(ep);

  130. return EXIT_SUCCESS;
  131. }

复制代码
编译运行,等一会儿会有一个MATLAB图形窗口弹出。

转载自:http://hi.baidu.com/dreadnaught/ ... 48a5c97dd92a3f.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP