-1

我有一个 c++ 程序,其名称pso.cpp由一个输入和两个输出(按指针)命名,如下所示:

void pso(int32_T Iteration, real_T *gbest, real_T *w)

我有另一个 c++ 程序,名称main.cpp如下:

#include <math.h>
#include <stdio.h>
#include <iostream>
#include "pso.h"

using namespace std;

int main()
{
int32_T Iteration = 1000;
real_T gbest;
real_T w;
pso(Iteration, &gbest, &w);

std::cout << gbest << std::endl;
std::cout << w << std::endl;

return 0;
}

另外,pso.h如下:

#ifndef __PSO_H__

#define __PSO_H__

/* Include files */

#include <math.h>

#include <stddef.h>

#include <stdlib.h>

#include <string.h>

#include "rt_nonfinite.h"


#include "rtwtypes.h"

#include "pso_types.h"

/* Function Declarations */

extern void pso(int32_T Iteration, real_T *gbest, real_T *w);

#endif

我执行main.cppby 命令g++ main.cpp -o main

但我遇到了这个错误:

main.cpp:(.text+0x29): undefined reference to pso(int, double*, double*)' collect2: ld returned 1 exit status

如何解决编程错误?

4

1 回答 1

2
g++ main.cpp -o main

应该

g++ main.cpp pso.cpp -o main
于 2013-11-14T19:46:04.107 回答