User Mr Fooz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T23:51:36Z http://stackoverflow.com/feeds/user/25050 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1888969/git-ignoring-files-in-the-origin 2 git: ignoring files in the origin Mr Fooz 2009-12-11T15:51:49Z 2009-12-11T16:00:56Z <p>Is there a way to tell git to ignore a file that's stored in its origin? Since the files in question are in the upstream repository, just adding them to .gitignore or .git/info/exclude don't work.</p> <p><strong>Background</strong>:</p> <p>My upstream repository has some generated files in it. Every time I do a local rebuild, these generated files are changed and differ from the committed version. The generated files are in the repository because many users don't have the software to generate them (and I don't have the power to change this). These generated files are never generated by hand and I never want to commit them to my git repository. I have a separate mechanism to push them to the master repository (and I have no control over this separate mechanism).</p> <p>I'm using a private git repository for making edits to an upstream subversion repository. To do this, I have a git repository just for pulling commits from subversion. That git repository is periodically synced via a cronjob. I then have private git repositories that are clones of the upstream git repository. I want git to not bug me about the generated files. I'm happy with either of these two results: the files are no longer tracked by my local git repository (but they should be tracked by the one that syncs with svn), or git will silently update my generated files but it will never commit my changes and the files will never show up in the "Changed but not updated:" section of "git status".</p> http://stackoverflow.com/questions/1862510/how-can-the-last-commands-wall-time-be-put-in-the-bash-prompt 5 How can the last command's wall time be put in the Bash prompt? Mr Fooz 2009-12-07T20:02:01Z 2009-12-08T12:50:57Z <p>Is there a way to embed the last command's elapsed wall time in a <a href="http://en.wikipedia.org/wiki/Bash" rel="nofollow">Bash</a> prompt? I'm hoping for something that would look like this:</p> <pre><code>[last: 0s][/my/dir]$ sleep 10 [last: 10s][/my/dir]$ </code></pre> <p><strong>Background</strong></p> <p>I often run long data-crunching jobs and it's useful to know how long they've taken so I can estimate how long it will take for future jobs. For very regular tasks, I go ahead and record this information rigorously using appropriate logging techniques. For less-formal tasks, I'll just prepend the command with <code>time</code>. </p> <p>It would be nice to automatically "time" every single interactive command and have the timing information printed in a few characters rather than 3 lines. </p> http://stackoverflow.com/questions/1667340/version-control-choices-choices-choices/1667398#1667398 9 Answer by Mr Fooz for Version control; choices, choices, choices! Mr Fooz 2009-11-03T13:40:56Z 2009-11-03T13:40:56Z <p>Why use SVN:</p> <ul> <li>Mature codebase</li> <li>Mature GUI tools on Windows (if your team likes them): TortoiseSVN</li> <li>Shallower learning curve (esp. if you've already used CVS)</li> <li>Sparse checkouts</li> </ul> <p>Why use git (probably applies to mercurial too):</p> <ul> <li>Easier branching and merging</li> <li>Developers can interact with their own local repository without needing to contact the "master" repository</li> <li>Can work with upstream SVN or CVS repositories (but if you have a choice, I'd still use git upstream if developers are using git)</li> <li>"Good enough" Windows GUI tools (TortoiseGIT may actually be as good as TortoiseSVN now...haven't looked at it in a year or two).</li> <li>More powerful commands</li> </ul> <p>One way to handle your use case is: - Each developer has their own private git repository - Developers push code changes to the dev server's repository when they're tested and ready for production use. - The live server has a checkout that's either updated on a regular schedule, updated manually, or updated by a commit hook on the dev server's repository (when commit, "ssh live.server.com (cd /my/dir ; git pull origin HEAD)").</p> <p>This procedure could be adapted for SVN just as well, but the private repositories would just become checkouts.</p> http://stackoverflow.com/questions/1647298/why-dont-stl-containers-have-virtual-destructors 7 Why don't STL containers have virtual destructors? Mr Fooz 2009-10-30T00:11:32Z 2009-10-30T20:08:21Z <p>Does anyone know why the STL containers don't have virtual destructors? </p> <p>As far as I can tell, the only benefits are:</p> <ul> <li>it reduces the size of an instance by one pointer (to the virtual method table) and </li> <li>it makes destruction and construction a tiny bit faster. </li> </ul> <p>The downside is that it's unsafe to subclass the containers in the usual way. </p> <p><strong>EDIT:</strong> Perhaps my question could be rephrased "Why weren't STL containers designed to allow for inheritance?" Because they don't support inheritance, one is stuck with the following choices when one wants to have a new container that needs the STL functionality plus a small number of additional features (say a specialized constructor or new accessors with default values for a map, or whatever):</p> <ul> <li><em>Composition and interface replication</em>: Make a new template or class that owns the STL container as a private member and has one pass-through inline method for each STL method. This is just as performant as inheritance, avoids the cost of a virtual method table (in the cases where that matters). Unfortunately, the STL containers have fairly broad interfaces so it's a lot of lines of code for something that should seemingly be easy to do.</li> <li><em>Just make functions</em>: Use bare (possibly templated) file-scoped functions instead of trying to add member functions. In some ways this can be a good approach, but the benefits of encapsulation are lost.</li> <li><em>Composition with public STL access</em>: Have the owner of the STL container let users access the STL container itself (perhaps guarded through accessors). This requires the least coding for the library writer, but it's much less convenient for users. One of the big selling points for composition is that you reduce coupling in your code, but this solution fully couples the STL container with the owner container (because the owner returns a true STL container).</li> <li><em>Compile-time polymorphism</em>: Can be somewhat tricky to do write, requires some code gymnastics, and isn't appropriate for all situations.</li> </ul> <p>As a side question: is there a standards-safe way of subclassing with non-virtual destructors (let's assume that I don't want to override any methods, just that I want to add new ones)? My impression is that there is no generic and safe way of doing this if one does not have the power to change the code defining the non-virtual class.</p> http://stackoverflow.com/questions/1647298/why-dont-stl-containers-have-virtual-destructors/1650047#1650047 0 Answer by Mr Fooz for Why don't STL containers have virtual destructors? Mr Fooz 2009-10-30T14:14:46Z 2009-10-30T14:14:46Z <p>In looking over the answers, it occurred to me that one good reason would be that if one had a virtual destructor, it would be odd to not have virtual methods as well. Most users expect virtual classes to have overrideable methods, so it would be a common source of (user) bugs to not have virtual methods. STL containers really do need to be fast, and virtual methods would be problematic.</p> http://stackoverflow.com/questions/505151/cuda-visual-studio-suppressed-output-window 2 CUDA + Visual Studio = suppressed output window Mr Fooz 2009-02-02T22:04:47Z 2009-10-27T06:32:30Z <p>Normally, when I use Visual Studio to do a build, I see warnings and errors shown in the output pane, e.g.</p> <pre><code>1&gt;------ Build started: Project: pdcuda, Configuration: Release x64 ------ Compiling... foo.cpp Linking... foo.obj : error LNK2001: unresolved external symbol "foo" ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== </code></pre> <p>I'm doing some GPU programming with <a href="http://www.nvidia.com/object/cuda_home.html" rel="nofollow">CUDA</a>. Upon upgrading to 2.1, I no longer get any useful output in Visual Studio. For example, all I now see is:</p> <pre><code>1&gt;------ Build started: Project: pdcuda, Configuration: Release x64 ------ ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== </code></pre> <p>The other details can be found in BuildLog.htm, but it's inconvenient to hunt that file down all the time. </p> <p>Does anyone know how to force Visual Studio to show the output in its output pane?</p> <p>Things that don't help:</p> <ul> <li><em>uninstalling CUDA:</em> the problem persists in all projects</li> <li><em>Tools > Options > Projects and Solutions > Build and Run > MSBuild project build output verbosity:</em> changing this pulldown, even to "Diagnostic" has no discernable effect.</li> </ul> <p><strong>EDIT:</strong> Additional things that don't help:</p> <ul> <li>devenv.exe /resetsettings </li> <li>devenv.exe /resetuserdata</li> </ul> <p><strong>UPDATE</strong> <em>(in response to Die in Sente)</em>: It's now working on one of the two machines (I'm not sure what I did to fix it though). The machine that's still having problems has a <a href="http://sourceforge.net/projects/cudavswizard" rel="nofollow">CUDA Visual Studio Wizard</a> installed that has caused similar problems before. The still-broken machine had version 15.00.21022.8 of the compiler. The working machine has 15.00.30729.1. After making a backup, I transferred "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\BIN\amd64" from the working to the broken machine. I observe no changes in behavior on the broken machine.</p> http://stackoverflow.com/questions/1588131/c-array-size-x86-and-for-x64/1588289#1588289 2 Answer by Mr Fooz for C++ Array size x86 and for x64 Mr Fooz 2009-10-19T12:00:30Z 2009-10-19T12:00:30Z <p>Are you compiling your application as a 32-bit application (the default in Visual Studio, if that's what you're using), or as a 64-bit application? You shouldn't have troubles if you build it as a 64-bit app.</p> <p>malloc allocates (reserves memory and returns a pointer), calloc initializes (writes all zeros to that memory).</p> http://stackoverflow.com/questions/1553457/displaying-series-of-bitmap-in-form-of-a-movie/1554563#1554563 0 Answer by Mr Fooz for Displaying series of bitmap in form of a movie Mr Fooz 2009-10-12T13:23:38Z 2009-10-12T13:23:38Z <p>1) How do you intend to read this data? From a pipe, socket, one file per image? Any of these work for you, then all you need to do is avoid closing the file after reading one bitmap (and perhaps doing some extra coding to block when the next image is not ready yet).</p> <p>2) No. All Matlab computation happens in a single thread (from a user's perspective).</p> <p>2.a) If you can do the demodulation or display in a mex function, then the mex function is free to spawn extra threads and do whatever it pleases.</p> <p>If you do the display in Matlab, don't forget to call DRAWNOW. </p> http://stackoverflow.com/questions/1470716/how-do-i-abort-a-matlab-m-file-function-from-c-c/1474847#1474847 4 Answer by Mr Fooz for How do I abort a MATLAB m-file function from C/C++? Mr Fooz 2009-09-25T00:27:02Z 2009-09-25T00:27:02Z <p>Try calling the DRAWNOW function in AbortIfUserRequested. Although Matlab is single-threaded (from an API perspective), it does allow for interrupts. I've had success by calling this function with pure M-code where user input (like Ctrl-C) otherwise gets locked out. </p> http://stackoverflow.com/questions/1442264/full-featured-date-and-time-library 0 Full-featured date and time library Mr Fooz 2009-09-18T02:00:01Z 2009-09-18T22:12:20Z <p>I'm wondering if anyone knows of a good date and time library that has correctly-implemented features like the following:</p> <ul> <li><strong>Microsecond resolution</strong></li> <li><strong>Daylight savings</strong> <ul> <li><em>Example:</em> it knows that 2:30am did not exist in the US on 8 March 2009 for timezones that respect daylight savings.</li> <li>I should be able to specify a timezone like "US/Eastern" and it should be smart enough to know whether a given timestamp should correspond to EST or EDT.</li> </ul></li> <li><strong>Custom date ranges</strong> <ul> <li>The ability to create specialized business calendars that skip over weekends and holidays.</li> </ul></li> <li><strong>Custom time ranges</strong> <ul> <li>The ability to define business hours so that times requested outside the business hours can be rounded up or down to the next or previous valid hour.</li> </ul></li> <li><strong>Arithmetic</strong> <ul> <li>Be able to add and subtract integer amounts of all units (years, months, weeks, days, hours, minutes, ...). Note that adding something like 0.5 days isn't well-defined because it could mean 12 hours or it could mean half the duration of a day (which isn't 24 hours on daylight savings changes). </li> </ul></li> <li><strong>Natural boundary alignment</strong> <ul> <li>Given a timestamp, I'd like be able to do things like round down to the nearest decade, year, month, week, ..., quarter hour, hour, etc. </li> </ul></li> </ul> <p>I'm currently using Python, though I'm happy to have a solution in another language like perl, C, or C++.</p> <p>I've found that the built-in Python libraries lack sophistication with their daylight savings logic and there isn't an obvious way (to me) to set up things like custom time ranges.</p> http://stackoverflow.com/questions/1371822/splitting-data-into-trainning-testing-datasets-in-matlab/1372934#1372934 1 Answer by Mr Fooz for Splitting data into trainning/testing datasets in MATLAB? Mr Fooz 2009-09-03T11:45:56Z 2009-09-03T11:45:56Z <p>They look to be pretty similar based on the official docs of <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/stats/index.html" rel="nofollow">cvpartition</a> and <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/bioinfo/index.html" rel="nofollow">crossvalind</a>, but crossvalind looks slightly more flexible (it allows for leave M out for arbitrary M, whereas cvpartition only allows for leave 1 out).</p> http://stackoverflow.com/questions/1212779/detecting-when-a-python-script-is-being-run-interactively 1 Detecting when a python script is being run interactively Mr Fooz 2009-07-31T14:15:58Z 2009-07-31T15:33:17Z <p>Is there a way for a python script to automatically detect whether it is being run interactively or not? Alternatively, can one detect whether ipython is being used versus the regular c python executable?</p> <p>Background: My python scripts generally have a call to exit() in them. From time to time, I run the scripts interactively for debugging and profiling, usually in ipython. When I'm running interactively, I want to suppress the calls to exit. </p> <p><strong>Clarification</strong>: </p> <p>Suppose I have a script, myscript.py, that looks like:</p> <pre><code>#!/usr/bin/python ...do useful stuff... exit(exit_status) </code></pre> <p>Sometimes, I want to run the script within an IPython session that I have already started, saying something like:</p> <pre><code>In [nnn]: %run -p -D myscript.pstats myscript.py </code></pre> <p>At the end of the script, the exit() call will cause ipython to hang while it asks me if I really want to exit. This is a minor annoyance while debugging (too minor for me to care), but it can mess up profiling results: the exit prompt gets included in the profile results (making the analysis harder if I start a profiling session before going off to lunch). </p> <p>What I'd like is something that allows me modify my script so it looks like:</p> <pre><code>#!/usr/bin/python ...do useful stuff... if is_python_running_interactively(): print "The exit_status was %d" % (exit_status,) else: exit(exit_status) </code></pre> http://stackoverflow.com/questions/1212779/detecting-when-a-python-script-is-being-run-interactively/1212907#1212907 2 Answer by Mr Fooz for Detecting when a python script is being run interactively Mr Fooz 2009-07-31T14:37:48Z 2009-07-31T14:37:48Z <p>I stumbed on the following and it seems to do the trick for me:</p> <pre><code>def in_ipython(): try: __IPYTHON__ except NameError: return False else: return True </code></pre> http://stackoverflow.com/questions/1182183/matlab-mex-interface-to-a-class-object-with-multiple-functions/1187720#1187720 4 Answer by Mr Fooz for MATLAB MEX interface to a class object with multiple functions Mr Fooz 2009-07-27T11:46:38Z 2009-07-27T11:46:38Z <p>One common approach is to have several m-file functions that provide the public interface, e.g. sysInit.m, sysRefresh.m, etc. </p> <p>Each of these m-files calls the mex function with some kind of handle, a string (or number) identifying the function to call, and any extra args. For example, sysRefresh.m might look like:</p> <pre><code>function sysRefresh(handle) return sysMex(handle, 'refresh') </code></pre> <p>In your sysMex mex function, you can either have the handle be a raw heap pointer (easy, but not very safe), or you can maintain a mapping in C/C++ from the handle ID to the actual object pointers. This solution requires a little extra work, but it's much safer. This way someone can't accidentally pass an arbitrary number as a handle, which acts as a dangling pointer. Also, you can do fancier things like use an onCleanup function to release all memory and resources when you unload the mex function (e.g. so you don't have to restart matlab when you recompile the mex function).</p> <p>You can go a bit further if you like and hide the handle behind a Matlab class. Read up on the OO features for Matlab in the docs if you're interested. If you're using a recent version, you can take advantage of their much cleaner handle objects.</p> http://stackoverflow.com/questions/1180802/interactive-python/1181022#1181022 2 Answer by Mr Fooz for Interactive python Mr Fooz 2009-07-25T02:32:41Z 2009-07-25T02:32:41Z <p>Others (ars, Alex Martelli) have given direct answers to the question. For myself, I've found a more effective strategy is to write all of the commands into a text editors and either execute saved scripts and/or copy-and-paste into python or ipython. I find that I can keep myself more organized that way.</p> http://stackoverflow.com/questions/1124765/matlab-collect-from-array-of-structs/1125219#1125219 6 Answer by Mr Fooz for MATLAB: collect from array of structs Mr Fooz 2009-07-14T12:59:58Z 2009-07-14T12:59:58Z <p>Put square brackets around the expression, i.e.</p> <pre><code>[w(1:2).bytes] </code></pre> http://stackoverflow.com/questions/1078768/is-there-a-relation-between-integer-and-register-sizes/1079374#1079374 1 Answer by Mr Fooz for Is there a relation between integer and register sizes? Mr Fooz 2009-07-03T13:32:25Z 2009-07-03T13:32:25Z <p>There are different kinds of registers with different sizes. What's important are the address registers, not the general purpose ones. If the machine is 64-bit, then the address registers (or some combination of them) must be 64-bits, even if the general-purpose registers are 32-bit. In this case, the compiler may have to do some extra work to actually compute 64-bit addresses using multiple general purpose registers.</p> <p>If you don't think that hardware manufacturers ever make odd design choices for their registers, then you probably never had to deal with the original 8086 "<a href="http://en.wikipedia.org/wiki/Real_mode" rel="nofollow">real mode</a>" addressing. </p> http://stackoverflow.com/questions/1071778/data-streaming-in-matlab-with-input-data-coming-in-from-a-c-executable/1074038#1074038 3 Answer by Mr Fooz for Data streaming in MATLAB with input data coming in from a C++ executable Mr Fooz 2009-07-02T12:17:25Z 2009-07-02T12:17:25Z <p>You have two options: the matlab engine and mex functions. It's very important to note that the Matlab API is single-threaded. There is absolutely no way to have user-visible background threads. At best, there are interrupts for UI events.</p> <p>With the Matlab engine, your application is a C++ application that uses Matlab as an add-in library. You can call Matlab functions from C++, but you must make sure that only one thread accesses Matlab at any point in time. So, you could have a thread that feeds data to Matlab from a queue of inputs coming from the rest of your application. The C++ can have as many threads as it wants, but only one can interact with Matlab.</p> <p>The other approach is to have Matlab control the main application and have it call C++ code whenever it wants some more data. The C++ code acts as a plugin for Matlab. The C++ code can have as many threads as it wants, but Matlab polls the C++ when your m-file calls it. Look up the documentation on MEX functions.</p> http://stackoverflow.com/questions/1061276/how-to-normalize-a-vector-in-matlab-efficiently-any-related-built-in-function/1061425#1061425 7 Answer by Mr Fooz for How to normalize a vector in MATLAB efficiently? Any related built-in function ? Mr Fooz 2009-06-30T02:10:18Z 2009-06-30T03:01:02Z <p>The original code you suggest is the best way.</p> <p>Matlab is extremely good at vectorized operations such as this, at least for large vectors.</p> <p>The built-in norm function is very fast. Here are some timing results:</p> <pre><code>V = rand(10000000,1); % Run once tic; V1=V/norm(V); toc % result: 0.228273s tic; V2=V/sqrt(sum(V.*V)); toc % result: 0.325161s tic; V1=V/norm(V); toc % result: 0.218892s </code></pre> <p>V1 is calculated a second time here just to make sure there are no important cache penalties on the first call.</p> <p>Timing information here was produced with R2008a x64 on Windows.</p> <p><hr></p> <p><strong>EDIT:</strong></p> <p>Revised answer based on gnovice's suggestions (see comments). Matrix math (barely) wins:</p> <pre><code>clc; clear all; V = rand(1024*1024*32,1); N = 10; tic; for i=1:N, V1 = V/norm(V); end; toc % 6.3 s tic; for i=1:N, V2 = V/sqrt(sum(V.*V)); end; toc % 9.3 s tic; for i=1:N, V3 = V/sqrt(V'*V); end; toc % 6.2 s *** tic; for i=1:N, V4 = V/sqrt(sum(V.^2)); end; toc % 9.2 s tic; for i=1:N, V1=V/norm(V); end; toc % 6.4 s </code></pre> <p>IMHO, the difference between "norm(V)" and "sqrt(V'<em>V)" is small enough that for most programs, it's best to go with the one that's more clear. To me, "norm(V)" is clearer and easier to read, but "sqrt(V'</em>V)" is still idiomatic in Matlab.</p> http://stackoverflow.com/questions/1046542/how-to-represent-a-polygon-with-holes/1047223#1047223 1 Answer by Mr Fooz for How to represent a polygon with hole(s) ? Mr Fooz 2009-06-26T03:52:42Z 2009-06-26T03:52:42Z <p>Presumably you'll want to have a tree structure if you want this to be as generic as possible (i.e. polygons with polygonal holes that have polygons inside them with holes inside that, ...). Matlab isn't really great at representing tree structures efficiently, but here's one idea...</p> <p>Have a struct-array of polygons.</p> <p>Each polygon is a struct with two fields, 'corners', and 'children'. </p> <p>The 'corners' field contains a matrix of (x,y) coordinates of the corners, accessed as "data{polyIdx}.corners(:,cornerIdx)". </p> <p>The 'children' field is a struct-array of polygons.</p> <p>Here's an example of some code to make a triangle with bogus children that are holes (they aren't really valid though because they will likely overlap:</p> <pre><code>polygon = struct; npoints = 3; polygon.corners = rand(2,npoints); polygon.children = struct; nchildren = 5; for c=1:nchildren polygon.children(c).corners = rand(2,npoints); polygon.children(c).children = struct; end </code></pre> <p>You could continue to recursively define children that alternate between creating holes and filling them.</p> http://stackoverflow.com/questions/980881/passing-multi-param-function-into-a-macro/981259#981259 1 Answer by Mr Fooz for Passing multi-param function into a macro Mr Fooz 2009-06-11T14:00:43Z 2009-06-11T14:00:43Z <p>Various preprocessor implementations parse the commas greedily, treating them as separators for macro arguments. Thus, CPP thinks that you're asking "DO_IF" to do a substitution with two parameters, "isTrue(true" and "true)". </p> http://stackoverflow.com/questions/964850/best-setup-for-linux-development-from-windows/964871#964871 0 Answer by Mr Fooz for Best setup for Linux development from Windows? Mr Fooz 2009-06-08T13:16:38Z 2009-06-08T13:16:38Z <p>You might try other X servers on Windows such as xwin32 and hummingbird. Note that these are commercial implementations.</p> <p>Another solution is to install a VM server on your Windows box and install Linux on the VM. Options include <a href="http://www.vmware.com/" rel="nofollow">VMware</a> (non-free) and <a href="http://www.microsoft.com/windows/virtual-pc/" rel="nofollow">Microsoft Virtual PC</a> (free download). VMware is much nicer than VirtualPC (64-bit support, more incentive to support Linux client OSes, etc.). There may also</p> http://stackoverflow.com/questions/963674/how-do-i-plot-to-an-image-and-save-result-without-displaying-it-in-matlab/964785#964785 1 Answer by Mr Fooz for How do I plot to an image and save result without displaying it, in matlab Mr Fooz 2009-06-08T12:57:28Z 2009-06-08T12:57:28Z <p>I'm expanding on Bessi's solution here a bit. I've found that it's very helpful to know how to have the image take up the whole figure and to be able to tightly control the output image size.</p> <pre><code>% prevent the figure window from appearing at all f = figure('visible','off'); % alternative way of hiding an existing figure set(f, 'visible','off'); % can use the GCF function instead % If you start getting odd error messages or blank images, % add in a DRAWNOW call. Sometimes it helps fix rendering % bugs, especially in long-running scripts on Linux. %drawnow; % optional: have the axes take up the whole figure subplot('position', [0 0 1 1]); % show the image and rectangle im = imread('peppers.png'); imshow(im, 'border','tight'); rectangle('Position', [100, 100, 10, 10]); % Save the image, controlling exactly the output % image size (in this case, making it equal to % the input's). [H,W,D] = size(im); dpi = 100; set(f, 'paperposition', [0 0 W/dpi H/dpi]); set(f, 'papersize', [W/dpi H/dpi]); print(f, sprintf('-r%d',dpi), '-dtiff', 'image2.tif'); </code></pre> <p>If you'd like to render the figure to a matrix, type "help @avifile/addframe", then extract the subfunction called "getFrameForFigure". It's a Mathworks-supplied function that uses some (currently) undocumented ways of extracting data from figure.</p> http://stackoverflow.com/questions/958456/c-c-reflection-and-jni-a-method-for-invoking-native-code-which-hasnt-been-wr/958477#958477 2 Answer by Mr Fooz for 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 Mr Fooz 2009-06-05T22:44:34Z 2009-06-05T22:44:34Z <p>C and C++ don't really have Java-style reflection (though sometimes you can play tricks with looking up symbols in a shared library).</p> <p>A more typical approach is to create a plugin interface in Java. Then for each external library, you write a (hopefully) small amount of custom Java and/or JNI code to translate plugin interface calls to calls to the backend library. </p> http://stackoverflow.com/questions/939859/one-line-class-definition/939880#939880 3 Answer by Mr Fooz for One line class definition? Mr Fooz 2009-06-02T14:28:36Z 2009-06-02T14:28:36Z <p>It's called a "forward declaration". This tells the compiler that 'HereIsMyClass' is the name of a class (versus the name of a variable, a function, or something else). The class will have to be defined later for it to be used.</p> <p>This is useful when you have classes that need to refer to each other.</p> <p><a href="http://www.eventhelix.com/RealtimeMantra/HeaderFileIncludePatterns.htm" rel="nofollow">Here's</a> one description.</p> http://stackoverflow.com/questions/934412/how-to-get-into-image-manipulation-programming/934503#934503 2 Answer by Mr Fooz for How to get into image manipulation programming ? Mr Fooz 2009-06-01T11:47:21Z 2009-06-01T11:47:21Z <p>Depending on how fancy you want to get, you may want to look at <a href="http://opencv.willowgarage.com/wiki/" rel="nofollow">OpenCV</a>. It's a computer vision library that has functions ranging from reading and writing images to image processing to advanced things like object detection.</p> http://stackoverflow.com/questions/928751/declare-a-array-of-const-ints-in-c/928764#928764 3 Answer by Mr Fooz for declare a array of const ints in C++ Mr Fooz 2009-05-30T01:56:33Z 2009-05-30T01:56:33Z <pre><code>// in the .h file class A { static int const masks[]; }; // in the .cpp file int const A::masks[] = {0,1,3,5,7}; </code></pre> http://stackoverflow.com/questions/928694/what-does-warning-not-all-control-paths-return-a-value-mean-c/928712#928712 1 Answer by Mr Fooz for What does "warning: not all control paths return a value" mean? (C++) Mr Fooz 2009-05-30T01:23:55Z 2009-05-30T01:23:55Z <p>If side is not left or right, then the return value is undefined. </p> <p>Even though orientation is an enum with only two values (right now), it can still have a different value for any of the following reasons:</p> <ul> <li>In the future, you may change the header to include other values in the enum, so it's defensive programming to assume that this will happen (and your compiler is being nice and warning you now).</li> <li>side might be uninitialized, so it could be neither left nor right</li> <li>side might have been assigned another value via typecasting, e.g. "<em>((int</em>)&amp;side) = 2" </li> </ul> <p>Possible solutions include:</p> <ul> <li>Replace the second "if" with an "else" as suggested by sth.</li> <li><p>Change it to be:</p> <p>if(side == left) { return ...; } else if(side == right) { return ...; } else { ...handle error... }</p></li> </ul> http://stackoverflow.com/questions/923688/some-questions-about-special-operators-ive-never-seen-in-c-code/923702#923702 5 Answer by Mr Fooz for Some questions about special operators i've never seen in C++ code. Mr Fooz 2009-05-28T23:28:10Z 2009-05-28T23:28:10Z <p>It's a Microsoft extension for use with .NET. The caret indicates a handle to an object stored on the managed heap. See <a href="http://blogs.msdn.com/branbray/archive/2003/11/17/51016.aspx" rel="nofollow">Bran Bray's</a> blog for a nice description.</p> http://stackoverflow.com/questions/910362/import-itk-vtk-into-matlab-or-matlab-into-vtk-itk-environment/918825#918825 2 Answer by Mr Fooz for Import ITK/VTK into Matlab or Matlab into VTK/ITK environment? Mr Fooz 2009-05-28T01:40:18Z 2009-05-28T13:13:18Z <p>VTK comes with Python bindings (<a href="http://www.imaging.robarts.ca/~dgobbi/vtk/vtkpython.html" rel="nofollow">one description</a>). I'm assuming ITK does too. If you don't already have a lot of code in Matlab, I'm guessing you'd have a much easier time seamlessly integrating VTK/ITK with python's numpy, matplotlib, etc.</p> <p><strong>EDIT:</strong></p> <p>In my opinion, non-trivial MEX functions are a pain to write. The tradeoff can often be writing new MEX functions for each task or taking extra time to write a lot of interfacing code. </p> <p>Depending on what you're doing, scipy (a bundle of python packages including matplotlib, numpy, etc.) does a lot of what Matlab does. There are subtle differences and various tradeoffs. Automatic broadcasting is so incredibly useful, once you get the hang of it. MathWorks has recently added BSXFUN, but it's automatic with numpy. If you're doing a lot of work with sparse matrices or calling a lot of the more advanced linear algebra functions, check the numpy docs to see if what you need exists yet.</p> <p>Depending on what you've done with your environment so far, I'd suggest trying out the Python approach for a few weeks. See if its plotting capabilities and math functions are sufficient for your needs. Expect to bang your head against the wall a little in the beginning because the documentation isn't as mature as Matlab's.</p> http://stackoverflow.com/questions/1862510/how-can-the-last-commands-wall-time-be-put-in-the-bash-prompt/1862802#1862802 Comment by Mr Fooz on How can the last command's wall time be put in the Bash prompt? Mr Fooz 2009-12-07T21:31:00Z 2009-12-07T21:31:00Z The hook was just what I was looking for (and the growl link is a nice quick usage example). Thanks! http://stackoverflow.com/questions/1862510/how-can-the-last-commands-wall-time-be-put-in-the-bash-prompt/1862656#1862656 Comment by Mr Fooz on How can the last command's wall time be put in the Bash prompt? Mr Fooz 2009-12-07T20:30:27Z 2009-12-07T20:30:27Z As it turns out, I do show the current time in my prompt, but if I pause to analyze a command's output, then the timestamp difference includes my thinking time (which shouldn't count). Also, this doesn't work well when there's enough output that the previous timestamp is past the end of the scrollback buffer. http://stackoverflow.com/questions/1862510/how-can-the-last-commands-wall-time-be-put-in-the-bash-prompt/1862647#1862647 Comment by Mr Fooz on How can the last command's wall time be put in the Bash prompt? Mr Fooz 2009-12-07T20:28:23Z 2009-12-07T20:28:23Z At the moment, I am in fact using \t, and it's often sufficient. Unfortunately, when I'm running long commands non-interactively there are gaps of time from when a previous command completes and I interactively start a new one. If I press &lt;ENTER&gt; just before running a new command it works, but I don't always remember to do so, so I'd like to automatically capture elapsed time. http://stackoverflow.com/questions/1442264/full-featured-date-and-time-library/1442541#1442541 Comment by Mr Fooz on Full-featured date and time library Mr Fooz 2009-09-18T14:43:58Z 2009-09-18T14:43:58Z 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. http://stackoverflow.com/questions/1437675/how-do-i-update-the-matlab-path Comment by Mr Fooz on How do I update the MATLAB path? Mr Fooz 2009-09-17T12:23:05Z 2009-09-17T12:23:05Z What filesystem are you using? Matlab relies on the filesystem's change tracking to notify it when there are changes. http://stackoverflow.com/questions/1212779/detecting-when-a-python-script-is-being-run-interactively/1213017#1213017 Comment by Mr Fooz on Detecting when a python script is being run interactively Mr Fooz 2009-07-31T15:30:24Z 2009-07-31T15:30:24Z I think you meant &quot;__file__&quot;. Unfortunately, when running a script in ipython with %run, the &quot;__file__&quot; variable does get set. http://stackoverflow.com/questions/1212779/detecting-when-a-python-script-is-being-run-interactively/1212916#1212916 Comment by Mr Fooz on Detecting when a python script is being run interactively Mr Fooz 2009-07-31T14:46:29Z 2009-07-31T14:46:29Z I get False for both statements, both inside ipython and when running the script from the prompt with regular python (at least with ipython 0.9.1). http://stackoverflow.com/questions/1182183/matlab-mex-interface-to-a-class-object-with-multiple-functions/1187720#1187720 Comment by Mr Fooz on MATLAB MEX interface to a class object with multiple functions Mr Fooz 2009-07-31T11:34:58Z 2009-07-31T11:34:58Z 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. http://stackoverflow.com/questions/1146719/accessing-values-using-subscripts-without-using-sub2ind/1146729#1146729 Comment by Mr Fooz on Accessing values using subscripts without using sub2ind Mr Fooz 2009-07-18T13:08:18Z 2009-07-18T13:08:18Z 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. http://stackoverflow.com/questions/1131749/variable-length-matlab-arguments-read-from-variable/1131805#1131805 Comment by Mr Fooz on Variable length MATLAB arguments read from variable Mr Fooz 2009-07-16T01:24:32Z 2009-07-16T01:24:32Z 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: <a href="http://www.mathworks.co.uk/matlabcentral/newsreader/view_thread/237730" rel="nofollow">mathworks.co.uk/matlabcentral/newsreader/&hellip;</a> http://stackoverflow.com/questions/1082083/are-free-functions-implicitly-inlined-if-defined-without-a-previous-declaration-i/1082099#1082099 Comment by Mr Fooz on Are free functions implicitly inlined if defined without a previous declaration in C++? Mr Fooz 2009-07-04T12:34:27Z 2009-07-04T12:34:27Z Would it be correct to assume that &quot;inline void func() {...}&quot; inside a .cpp file is the same as &quot;static void func() {...}&quot;, assuming the appropriate inlining options are enabled for the compiler? http://stackoverflow.com/questions/1061276/how-to-normalize-a-vector-in-matlab-efficiently-any-related-built-in-function/1061425#1061425 Comment by Mr Fooz on How to normalize a vector in MATLAB efficiently? Any related built-in function ? Mr Fooz 2009-07-01T01:56:16Z 2009-07-01T01:56:16Z @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). http://stackoverflow.com/questions/1046542/how-to-represent-a-polygon-with-holes/1047223#1047223 Comment by Mr Fooz on How to represent a polygon with hole(s) ? Mr Fooz 2009-06-26T11:08:29Z 2009-06-26T11:08:29Z 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'. http://stackoverflow.com/questions/1021370/how-to-make-a-big-block-with-small-blocks-with-the-given-condition Comment by Mr Fooz on How to make a big block with small blocks, with the given condition? Mr Fooz 2009-06-20T10:47:50Z 2009-06-20T10:47:50Z 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? http://stackoverflow.com/questions/1012597/displaying-information-from-matlab-without-a-line-feed/1012643#1012643 Comment by Mr Fooz on Displaying information from MATLAB without a line feed Mr Fooz 2009-06-18T13:59:29Z 2009-06-18T13:59:29Z Note: depending on your platform, you may need to call &quot;drawnow;&quot; after the fprintf.