Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の内容に間違いはありませんか?
cfg = kiss_fftr_alloc(dim,1,NULL,NULL); kiss_fftr(cfg,in,out);
次と等しいか: ?
cfg = fftw_plan_dft_c2r_1d(dim, in , out, FFTW_ESTIMATE); fftw_execute(cfg);