首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在C中未定义mat.h的引用

在C中未定义mat.h的引用
EN

Stack Overflow用户
提问于 2020-04-15 10:15:43
回答 1查看 577关注 0票数 1

我正在尝试运行matlab的外部示例目录下的examples文件夹中的示例代码。

代码语言:javascript
复制
/*
 * Create a simple MAT-file to import into MATLAB.
 * Calling syntax:
 *
 *   matimport
 *
 * Simplified version of the matcreat.c program.
 * See the MATLAB External Interfaces Guide for 
 * compiling information.
 *
 * Copyright 2010 The MathWorks, Inc.
 */
#include <stdio.h>
#include <string.h> /* For memcpy() */
#include <stdlib.h> /* For EXIT_FAILURE, EXIT_SUCCESS */
#include "mat.h"

int main() {

  /* MAT-file */
  MATFile *pmat;
  const char *myFile = "matimport.mat";

  /* Data from external source */
  const char *extString = "Data from External Device";
  double extData[9] = { 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 };

  /* Variables for mxArrays  */
  mxArray *pVarNum, *pVarChar;

  /* MATLAB variable names */
  const char *myDouble = "inputArray";
  const char *myString = "titleString";

  int status; 

  /* Create and open MAT-file */
  printf("Creating file %s...\n\n", myFile);
  pmat = matOpen(myFile, "w");
  if (pmat == NULL) {
    printf("Error creating file");
    return(EXIT_FAILURE);
  }

  /* Create mxArrays and copy external data */
  pVarNum = mxCreateDoubleMatrix(3,3,mxREAL);
  if (pVarNum == NULL) {
      printf("Unable to create mxArray with mxCreateDoubleMatrix\n");
      return(EXIT_FAILURE);
  }
  memcpy((void *)(mxGetPr(pVarNum)), (void *)extData, sizeof(extData));

  pVarChar = mxCreateString(extString);
  if (pVarChar == NULL) {
      printf("Unable to create mxArray with mxCreateString\n");
      return(EXIT_FAILURE);
  }

  /* Write data to MAT-file */
  status = matPutVariable(pmat, myString, pVarChar);
  if (status != 0) {
      printf("Error writing %s.\n", myString);
      return(EXIT_FAILURE);
  } 

  status = matPutVariable(pmat, myDouble, pVarNum);
  if (status != 0) {
      printf("Error writing %s.\n", myDouble);
      return(EXIT_FAILURE);
  }  

  if (matClose(pmat) != 0) {
    printf("Error closing file %s.\n", myFile);
    return(EXIT_FAILURE);
  }

  /* Clean up */
  mxDestroyArray(pVarNum);
  mxDestroyArray(pVarChar);

  printf("Done\n");
  return(EXIT_SUCCESS);
}

但是我得到了以下错误:

代码语言:javascript
复制
> c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\aashi\AppData\Local\Temp\ccCh9dHA.o:main.c:(.text+0x6b): undefined reference to `matOpen_800'
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\aashi\AppData\Local\Temp\ccCh9dHA.o:main.c:(.text+0xa8): undefined reference to `mxCreateDoubleMatrix_800'
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\aashi\AppData\Local\Temp\ccCh9dHA.o:main.c:(.text+0xd5): undefined reference to `mxGetPr_800'
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\aashi\AppData\Local\Temp\ccCh9dHA.o:main.c:(.text+0xfb): undefined reference to `mxCreateString_800'
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\aashi\AppData\Local\Temp\ccCh9dHA.o:main.c:(.text+0x138): undefined reference to `matPutVariable_800'
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\aashi\AppData\Local\Temp\ccCh9dHA.o:main.c:(.text+0x17d): undefined reference to `matPutVariable_800'
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\aashi\AppData\Local\Temp\ccCh9dHA.o:main.c:(.text+0x1af): undefined reference to `matClose_800'
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\aashi\AppData\Local\Temp\ccCh9dHA.o:main.c:(.text+0x1da): undefined reference to `mxDestroyArray_800'
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\aashi\AppData\Local\Temp\ccCh9dHA.o:main.c:(.text+0x1e6): undefined reference to `mxDestroyArray_800'
collect2.exe: error: ld returned 1 exit status

我已经用GCC编译了这个程序,如下所示:

代码语言:javascript
复制
gcc main.c -IC:/Progra~1/MATLAB/R2019a/extern/include -LC:\Progra~1\MATLAB\R2019a\extern\lib -LC:\Progra~1\MATLAB\R2019a\bin\win64\libmat.dll -o output

有什么帮助吗?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2020-04-15 11:06:41

您需要在您的gcc命令中附加-lmx或添加-lC:\Path\to\libmx.dll。您可能还需要-lmex -lm

票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/61220237

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档