User profile: jonnin

User info
User name:jonnin
History
Joined:
Number of posts:11313
Latest posts:

Why is my fft function not working as expected?
it makes no difference whether you store your matrix row or column major conceptually. BUT C++ WILL...

Convert MATLAB function to C++
heh, so much ram ... my 2 year old PC has 64 gb .. a number that, in my old age, I associate more wi...

Convert MATLAB function to C++
usually one translates from M to C for performance reasons. These days, professionally, you would ...

Convert MATLAB function to C++
remember that c++ indexes from 0 and matlab indexes from 1. I say this because the second, third, ....

Pointer to array in 2d array
yes, a[0] is the first location which is an ARRAY of 8, the A[0][...] row or sub-array. You may tre...