看板 C_and_CPP 關於我們 聯絡資訊
請問一下, 我在安裝完FFTW後, 試著用範例來測試FFTW, 在執行的過程中出現了以下錯誤, 應用程式無法正確啟動(0xc000007b)。請按一下確定[關閉]應用程式 請大家幫我看一下, 謝謝 我OS: win7 64bit VS2008+SP1 以下是我執行的範例程式, 謝謝 ****************************************** #include "fftw3.h" int main() { fftw_complex *in, *out; fftw_plan p; int N= 8; in = (fftw_complex*) fftw_malloc(sizeof(fftw_complex) * N); out = (fftw_complex*) fftw_malloc(sizeof(fftw_complex) * N); for( int i=0; i < N; i++) { in[i][0] = 1.0; in[i][1] = 0.0; printf("%6.2f ",in[i][0]); } printf("\n"); p=fftw_plan_dft_1d(N,in,out, FFTW_FORWARD, FFTW_ESTIMATE); fftw_execute(p); /* repeat as needed*/ for(int j = 0;j < N;j++) { printf("%6.2f ",out[j][0]); } printf("\n"); fftw_destroy_plan(p); fftw_free(in); fftw_free(out); return 0; } -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 59.112.227.63