User profile: mbozzi

User info
User name:mbozzi
Bio:ESR's article /How To Ask Questions the Smart Way/ is the best guide to getting quick, effective help that I know of.
http://www.catb.org/esr/faqs/smart-questions.html

That document has substantial problems, but its content is mostly good.

Avoid the common trap of asking about potential solutions rather than your actual problem. Always provide context for the questions you ask.
http://xyproblem.info/

My opinions do not represent the position of my employer.
Statistical data
Occupation:Other
History
Joined:
Number of posts:3834
Latest posts:

How to display the number of elements in a dynamic memory allocated array
Line 24 says [tt]for (int i = 0; [b]1 < N[/b]; i++)[/tt] This loop will continue while the number on...

Use concepts to test for member functions
[quote]do you have an idea why this is happening?[/quote] [tt]foo[/tt] and [tt]bar[/tt] are dependen...

Use concepts to test for member functions
The compound requirement on line 10 of your example [tt]{ a.foo() };[/tt] Tests that the expression...

How to implement FFTW efficiently in C/C++?
[quote]Again, thanks[/quote]Cheers! Would you give an broad overview of the design of your program?...

How to implement FFTW efficiently in C/C++?
[quote]I think that the memcpy() is still needed, as fftw_execute*() needs to use buffers that have ...