- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I want to perform a series of 1D FFT operations on the columns of an array A. These 1D FFT operations need not be performed at the same time. In other words, at some point in the execution of my code, a 1D FFT is done on, say, A(:,12), then later on, another one on A(:,40) etc.
How can I prevent the creation of an array temporary in these FFT calls? A is an allocatable array, and therefore A(:,1) elements are contiguous. Passing A(1,12) (address of first element) does not work either.
Thanks,
Olivier
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Olivier,
passing A(:,12) should work for 12th column, without creating a temporary.
Thanks,
Dima.
passing A(:,12) should work for 12th column, without creating a temporary.
Thanks,
Dima.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page