标题:[求助] VC++中调用了Matlab C++函数是不是会冲突啊???????
只看楼主
xy_nuaa
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2006-5-17
 问题点数:0 回复次数:0 
[求助] VC++中调用了Matlab C++函数是不是会冲突啊???????

各位高手:

由于需要矩阵的运算,我的程序中调用了“matlab.hpp”头文件,结果我用C++的rand()函数产生随机数的时候总产生错误,程序如下:

#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include "matlab.hpp"
int main( void )
{
int i;

srand( (unsigned)time( NULL ) );
for (i = 0; i < 10; i++ )
{
int rand100=rand()%100;
printf( " %6d\n", rand100);
}

}

产生错误如下:error C2676: binary '%' : 'class mwArray' does not define this operator or a conversion to a type acceptable to the predefined operator



这是什么原因啊,请各位高手指点,万分感谢!!!!!!!!!

搜索更多相关主题的帖子: Matlab 函数 include hpp 
2006-05-17 22:14



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-65124-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.049582 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved