Mr Fooz

6,579
Reputation
302 views

Registered User

Name Mr Fooz
Member for 1 year
Seen 21 hours ago
Website
Location
Age
Nov
3
answered Version control; choices, choices, choices!
Oct
30
answered Why don’t STL containers have virtual destructors?
Oct
30
revised Why don’t STL containers have virtual destructors?
added 58 characters in body
Oct
30
revised Why don’t STL containers have virtual destructors?
clarified question
Oct
30
asked Why don’t STL containers have virtual destructors?
Oct
21
awarded  Popular Question
Oct
19
accepted C++ Array size x86 and for x64
Oct
19
answered C++ Array size x86 and for x64
Oct
13
awarded  Nice Answer
Oct
12
answered Displaying series of bitmap in form of a movie
Oct
5
awarded  Yearling
Sep
25
answered How do I abort a MATLAB m-file function from C/C++?
Sep
18
comment Full-featured date and time library
I'd like it to do something smart with 2:30am in each case. From what I've found in the pytz library, there isn't a public way to ask it if a timestamp is non-existent or ambiguous. As long as the library has a clear way of providing this information, I'm happy.
Sep
18
asked Full-featured date and time library
Sep
17
comment How do I update the MATLAB path?
What filesystem are you using? Matlab relies on the filesystem's change tracking to notify it when there are changes.
Sep
3
answered Splitting data into trainning/testing datasets in MATLAB?
Sep
2
awarded  Nice Answer
Aug
5
revised C++: simple passing char* ?
retagged
Jul
31
answered Detecting when a python script is being run interactively
Jul
31
revised Detecting when a python script is being run interactively
clarification
Jul
31
asked Detecting when a python script is being run interactively
Jul
31
comment MATLAB MEX interface to a class object with multiple functions
If you allocate objects using Matlab's allocator, they are automatically deleted upon returning from the mex function. If you use malloc or new, then Matlab doesn't know about them and thus doesn't de-allocate.
Jul
29
accepted MATLAB MEX interface to a class object with multiple functions
Jul
27
answered MATLAB MEX interface to a class object with multiple functions
Jul
25
answered Interactive python
Jul
18
comment Accessing values using subscripts without using sub2ind
On recent versions of Matlab, this may actually avoid a large memory allocation, because Matlab is usually smart enough to compute intermediate results without creating large temporaries, i.e. it'll do the indexing and assignment the way a person would do it in C.
Jul
16
comment Variable length MATLAB arguments read from variable
Note that in addition to being very slow, eval has some weird semantics in recent versions of Matlab where it can sometimes confuse variable names and function names. Here's one person who ran into the gotcha: mathworks.co.uk/matlabcentral/newsreader/…
Jul
14
accepted MATLAB: collect from array of structs
Jul
14
answered MATLAB: collect from array of structs
Jul
4
comment Are free functions implicitly inlined if defined without a previous declaration in C++?
Would it be correct to assume that "inline void func() {...}" inside a .cpp file is the same as "static void func() {...}", assuming the appropriate inlining options are enabled for the compiler?
Jul
3
answered Is there a relation between integer and register sizes?
Jul
2
accepted Data streaming in MATLAB with input data coming in from a C++ executable
Jul
2
answered Data streaming in MATLAB with input data coming in from a C++ executable
Jul
1
comment How to normalize a vector in MATLAB efficiently? Any related built-in function ?
@gnovice: surprisingly, for 3-vectors, norm is about 3x faster than sqrt(V'*V). I'm wondering if MathWorks is using some SSE tricks for small vectors (though I'd expect those to work for large ones too).
Jun
30
accepted How to normalize a vector in MATLAB efficiently? Any related built-in function ?
Jun
30
revised How to normalize a vector in MATLAB efficiently? Any related built-in function ?
expanded set of possibilities
Jun
30
answered How to normalize a vector in MATLAB efficiently? Any related built-in function ?
Jun
26
comment How to represent a polygon with hole(s) ?
If you know that you'll never have anti-holes, you could still use the same data structure, but maybe you'd want to rename 'children' as 'holes'.
Jun
26
answered How to represent a polygon with hole(s) ?
Jun
25
revised GCC C++ “Hello World” program -> .exe is 500kb big when compiled on Windows. How can I reduce its size?
title grammar
Jun
20
comment How to make a big block with small blocks, with the given condition?
Before answering the algorithm questions, it would help if you could at least clarify what data structures you're using. When you talk about cubical blocks, does this mean that you have a 3D array? What is your representation for a block? Is it a triple of minimum array coordinates and maximum array coordinates?
Jun
18
comment Displaying information from MATLAB without a line feed
Note: depending on your platform, you may need to call "drawnow;" after the fprintf.
Jun
14
comment Map function in MATLAB?
-1: That's actually not true. Matlab does not have a type system strong enough to specify scalar functions. f is called with the vector and a single vector addition is performed in your example. To verify this, profile your code sample ("profile on" before running the code, then "profile off report" after it). You'll see there's a single call to f.
Jun
11
answered Passing multi-param function into a macro
Jun
10
comment C/C++ Reflection and JNI - A method for invoking native code which hasn’t been written yet .. feel free to tell me I’m an idiot
For each new C plugin, there would need to be a small amount of accompanying new Java code that translates the Java calls to the C calls. This approach assumes that you don't have control over the C libraries (Martin York's answer is the best if you do control the C libraries). I haven't used JNA, but Matthew Flaschen's suggestion looks like it might be an alternative to my suggestion when you don't control the C code.
Jun
8
comment Best setup for Linux development from Windows?
I don't think he said he was doing Java development. Eclipse can be used for C++ and other languages.
Jun
8
answered Best setup for Linux development from Windows?
Jun
8
answered How do I plot to an image and save result without displaying it, in matlab
Jun
5
answered C/C++ Reflection and JNI - A method for invoking native code which hasn’t been written yet .. feel free to tell me I’m an idiot