User gnovice - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T17:53:41Z http://stackoverflow.com/feeds/user/52738 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1864235/how-do-i-sort-files-into-multiple-folders-in-matlab/1867707#1867707 4 Answer by gnovice for How do I sort files into multiple folders in MATLAB? gnovice 2009-12-08T15:30:08Z 2009-12-09T01:49:49Z <p>Working in the field of functional imaging research, I've often had to sort large sets of files into a particular order for processing. Here's an example of how you can find files, parse the file names for certain identifier strings, and then sort the file names by a given criteria...</p> <h2>Collecting the files...</h2> <p>You can first get a list of all the file names from your directory using the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/dir.html" rel="nofollow">DIR</a> function:</p> <pre><code>dirData = dir('your_directory'); %# Get directory contents dirData = dirData(~[dirData.isdir]); %# Use only the file data fileNames = {dirData.name}; %# Get file names </code></pre> <h2>Parsing the file names with a regular expression...</h2> <p>Your file names appear to have the following format:</p> <pre><code>'data(an integer)_(a date)_(a time)' </code></pre> <p>so we can use <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/regexp.html" rel="nofollow">REGEXP</a> to parse the file names that match the above format and extract the integer following <code>data</code>, the three values for the date, and the two values for the time. The expression used for the matching will therefore capture 6 <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/matlab%5Fprog/f0-42649.html#f0-56360" rel="nofollow">"tokens"</a> per valid file name:</p> <pre><code>expr = '^data(\d+)\_(\d+)\_(\d+)\_(\d+)\_(\d+)\.(\d+)$'; fileData = regexp(fileNames,expr,'tokens'); %# Find tokens index = ~cellfun('isempty',fileData); %# Find index of matches fileData = [fileData{index}]; %# Remove non-matches fileData = vertcat(fileData{:}); %# Format token data fileNames = fileNames(index); %# Remove non-matching file names </code></pre> <h2>Sorting based on the tokens...</h2> <p>You can convert the above string tokens to numbers (using the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/str2double.html" rel="nofollow">STR2DOUBLE</a> function) and then convert the date and time values to a date number (using the function <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/datenum.html" rel="nofollow">DATENUM</a>):</p> <pre><code>nFiles = size(fileData,1); %# Number of files matching format fileData = str2double(fileData); %# Convert from strings to numbers fileData = [fileData zeros(nFiles,1)]; %# Add a zero column (for the seconds) fileData = [fileData(:,1) datenum(fileData(:,2:end))]; %# Format dates </code></pre> <p>The variable <code>fileData</code> will now be an <code>nFiles</code>-by-2 matrix of numeric values. You can sort these values using the function <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/sortrows.html" rel="nofollow">SORTROWS</a>. The following code will sort first by the integer following the word <code>data</code> and next by the date number:</p> <pre><code>[fileData,index] = sortrows(fileData,1:2); %# Sort numeric values fileNames = fileNames(index); %# Apply sort to file names </code></pre> <h2>Concatenating the files...</h2> <p>The <code>fileNames</code> variable now contains a cell array of all the files in the given directory that match the desired file name format, sorted first by the integer following the word <code>data</code> and then by the date. If you now want to concatenate all of these files into one large file, you could try using the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/system.html" rel="nofollow">SYSTEM</a> function to call a system command to do this for you. If you are using a Windows machine, you can do something like what I describe in <a href="http://stackoverflow.com/questions/1638960/matlab-how-do-you-insert-a-line-of-text-at-the-beginning-of-a-file/1639082#1639082">this answer to another SO question</a> where I show how you can use the <a href="http://www.computerhope.com/forhlp.htm" rel="nofollow">DOS <strong>for</strong> command</a> to <a href="http://www.howtogeek.com/howto/keyboard-ninja/keyboard-ninja-concatenate-multiple-text-files-in-windows/">concatenate text files</a>. You can try something like the following:</p> <pre><code>inFiles = strcat({'"'},fileNames,{'", '}); %# Add quotes, commas, and spaces inFiles = [inFiles{:}]; %# Create a single string inFiles = inFiles(1:end-2); %# Remove last comma and space outFile = 'total_data.txt'; %# Output file name system(['for %f in (' inFiles ') do type "%f" &gt;&gt; "' outFile '"']); </code></pre> <p>This should create a single file <code>total_data.txt</code> containing all of the data from the individual files concatenated in the order that their names appear in the variable <code>fileNames</code>. Keep in mind that each file will probably have to end with a new line character to get things to concatenate correctly.</p> http://stackoverflow.com/questions/1868675/running-matlab-on-nvidia-cuda/1869144#1869144 2 Answer by gnovice for Running Matlab on Nvidia CUDA gnovice 2009-12-08T19:04:17Z 2009-12-08T19:04:17Z <p>An additional source of information you may want to check out is this PDF white paper from NVIDIA: <a href="http://developer.download.nvidia.com/compute/cuda/1%5F0/Accelerating%20Matlab%20with%20CUDA.pdf" rel="nofollow">Accelerating MATLAB with CUDA Using MEX Files</a>.</p> http://stackoverflow.com/questions/1861339/why-does-a-circle-plotted-in-matlab-appear-as-an-ellipse/1861374#1861374 11 Answer by gnovice for Why does a circle plotted in MATLAB appear as an ellipse? gnovice 2009-12-07T17:07:40Z 2009-12-07T17:20:13Z <p>You can use the command <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/axis.html" rel="nofollow"><code>axis equal</code></a> to set the data units to be the same on each axis. Here's an example:</p> <pre><code>theta = linspace(0,2*pi,100); subplot(121); %# Show the default plot plot(cos(theta),sin(theta)); title('Default axes settings'); subplot(122); %# Show a plot with equal data units plot(cos(theta),sin(theta)); title('Equalized tick spacing'); axis equal; </code></pre> <p><img src="http://i37.photobucket.com/albums/e77/kpeaton/example%5Faxis%5Fequal.jpg" alt="alt text"></p> http://stackoverflow.com/questions/1860760/how-can-i-draw-a-circle-on-an-image-in-matlab/1860776#1860776 4 Answer by gnovice for How can I draw a circle on an image in MATLAB? gnovice 2009-12-07T15:41:28Z 2009-12-07T16:36:51Z <p>You could use the normal <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/plot.html" rel="nofollow">PLOT</a> command with a <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/lineseriesproperties.html#Marker" rel="nofollow">circular marker point</a>:</p> <pre><code>[x_p,y_p] = find(points); imshow(im); %# Display your image hold on; %# Add subsequent plots to the image plot(y_p,x_p,'o'); %# NOTE: x_p and y_p are switched (see note below)! hold off; %# Any subsequent plotting will overwrite the image! </code></pre> <p>You can also adjust these other properties of the plot marker: <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/lineseriesproperties.html#MarkerEdgeColor" rel="nofollow"><code>MarkerEdgeColor</code></a>, <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/lineseriesproperties.html#MarkerFaceColor" rel="nofollow"><code>MarkerFaceColor</code></a>, <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/lineseriesproperties.html#MarkerSize" rel="nofollow"><code>MarkerSize</code></a>.</p> <p>If you then want to save the new image with the markers plotted on it, you can look at <a href="http://stackoverflow.com/questions/1848176/how-do-i-save-a-plotted-image-and-maintain-the-original-image-size-in-matlab/1848995#1848995">this answer I gave</a> to a question about maintaining image dimensions when saving images from figures.</p> <p><strong>NOTE:</strong> When plotting image data with <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/images/imshow.html" rel="nofollow">IMSHOW</a> (or <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/image.html" rel="nofollow">IMAGE</a>, etc.), the normal interpretation of rows and columns essentially becomes flipped. Normally the first dimension of data (i.e. rows) is thought of as the data that would lie on the x-axis, and is probably why you use <code>x_p</code> as the first set of values returned by the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/find.html" rel="nofollow">FIND</a> function. However, IMSHOW displays the first dimension of the image data along the <em>y-axis</em>, so the first value returned by FIND ends up being the <em>y-coordinate value</em> in this case.</p> http://stackoverflow.com/questions/1858039/how-to-plot-2-graphics-in-one-picture/1858067#1858067 2 Answer by gnovice for How to plot 2 graphics in one picture? gnovice 2009-12-07T05:53:42Z 2009-12-07T05:53:42Z <p>You need to use the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/hold.html" rel="nofollow">HOLD command</a> so that the second plot is added to the first:</p> <pre><code>plot(softmax(:,1), softmax(:,2), 'b.'); hold on; plot(softmaxretro(:,1), softmaxretro(:,2), 'r.'); </code></pre> http://stackoverflow.com/questions/1856197/how-can-i-find-local-maxima-in-an-image-in-matlab/1856234#1856234 6 Answer by gnovice for How can I find local maxima in an image in MATLAB? gnovice 2009-12-06T19:00:23Z 2009-12-06T20:08:03Z <p>If you have the <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/images/" rel="nofollow">Image Processing Toolbox</a>, you could use the <a href="http://www.mathworks.co.uk/access/helpdesk/help/toolbox/images/imregionalmax.html" rel="nofollow">IMREGIONALMAX</a> function:</p> <pre><code>BW = imregionalmax(y); </code></pre> <p>The variable <code>BW</code> will be a logical matrix the same size as <code>y</code> with ones indicating the local maxima and zeroes otherwise.</p> <p><strong>NOTE:</strong> As you point out, IMREGIONALMAX will find maxima that are greater than <em>or equal to</em> their neighbors. If you want to exclude neighboring maxima with the same value (i.e. find maxima that are single pixels), you could use the <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/images/bwconncomp.html" rel="nofollow">BWCONNCOMP</a> function. The following should remove points in <code>BW</code> that have any neighbors, leaving only single pixels:</p> <pre><code>CC = bwconncomp(BW); for i = 1:CC.NumObjects, index = CC.PixelIdxList{i}; if (numel(index) &gt; 1), BW(index) = false; end end </code></pre> http://stackoverflow.com/questions/1856141/how-do-i-randomly-select-k-points-from-n-points-in-matlab/1856201#1856201 5 Answer by gnovice for How do I randomly select k points from N points in MATLAB? gnovice 2009-12-06T18:46:59Z 2009-12-06T19:01:59Z <p>There are two approaches you can take. The first solution is to randomly pick <code>k</code> values from <code>N</code> values, which will ensure that you <em>always</em> have <code>k</code> points chosen. The second solution is to pick values randomly with each having an average probability <code>p</code> of being chosen, which could result in as little as <code>0</code> or as many as <code>N</code> being randomly chosen.</p> <ul> <li><p><strong>Picking <code>k</code> from <code>N</code> values:</strong></p> <p>You can use the function <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/randperm.html" rel="nofollow">RANDPERM</a> to create a random permutation of the integers <code>1</code> through <code>N</code>, then pick the first <code>k</code> values in the permuted list and replot them as red:</p> <pre><code>index = randperm(N); plot(x(index(1:k)),y(index(1:k)),'r*'); </code></pre></li> <li><p><strong>Picking values with an average probability <code>p</code>:</strong></p> <p>You can use the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/rand.html" rel="nofollow">RAND</a> function to pick a random value from <code>0</code> to <code>1</code> for each of your <code>N</code> values, then choose the ones with a random value less than or equal to your average probability <code>p</code> and replot them as red:</p> <pre><code>index = (rand(N,1) &lt;= p); plot(x(index),y(index),'r*'); </code></pre></li> </ul> http://stackoverflow.com/questions/1853891/how-do-i-create-a-regularly-spaced-array-of-values-in-matlab/1854256#1854256 3 Answer by gnovice for How do I create a regularly-spaced array of values in MATLAB? gnovice 2009-12-06T03:33:31Z 2009-12-06T03:45:58Z <p>There are a couple of ways you can do this:</p> <ul> <li><p>Using the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/colon.html" rel="nofollow">colon operator</a>:</p> <pre><code>startValue = 1; endValue = 10; nElements = 20; stepSize = (endValue-startValue)/(nElements-1); A = startValue:stepSize:endValue; </code></pre></li> <li><p>Using the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/linspace.html" rel="nofollow">LINSPACE</a> function (as suggested by <a href="http://stackoverflow.com/questions/1853891/matlab-filling-in-an-array/1853950#1853950">Amro</a>):</p> <pre><code>startValue = 1; endValue = 10; nElements = 20; A = linspace(startValue,endValue,nElements); </code></pre></li> </ul> <p>Keep in mind that the number of elements in the resulting arrays <em>includes</em> the end points. In the above examples, the difference between array element values will be <code>9/19</code>, or a little <em>less than</em> <code>0.5</code> (unlike the sample array in the question).</p> http://stackoverflow.com/questions/1848176/how-do-i-save-a-plotted-image-and-maintain-the-original-image-size-in-matlab/1848995#1848995 4 Answer by gnovice for How do I save a plotted image and maintain the original image size in MATLAB? gnovice 2009-12-04T19:02:25Z 2009-12-04T20:18:31Z <p>The reason your new image is bigger than your original is because the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/saveas.html" rel="nofollow">SAVEAS</a> function saves <em>the entire figure window</em>, not just the contents of the axes (which is where your image is displayed).</p> <p>Your question is very similar to another <a href="http://stackoverflow.com/questions/575475/how-can-i-save-an-altered-image-in-matlab">SO question</a>, so I'll first point out the two primary options encompassed by those answers:</p> <ul> <li><p><strong>Modify the raw image data:</strong> Your image data is stored in variable <code>I</code>, so you can directly modify the image pixel values in <code>I</code> then save the modified image data using <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/imwrite.html" rel="nofollow">IMWRITE</a>. The ways you can do this are described in <a href="http://stackoverflow.com/questions/575475/how-can-i-save-an-altered-image-in-matlab/575519#575519">my answer</a> and <a href="http://stackoverflow.com/questions/575475/how-can-i-save-an-altered-image-in-matlab/575517#575517">LiorH's answer</a>. This option will work best for simple modifications of the image (like adding a rectangle, as that question was concerned with).</p></li> <li><p><strong>Modify how the figure is saved:</strong> You can also modify how you save the figure so that it better matches the dimensions of your original image. The ways you can do this (using the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/print.html" rel="nofollow">PRINT</a> and <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/getframe.html" rel="nofollow">GETFRAME</a> functions instead of SAVEAS) are described in the answers from <a href="http://stackoverflow.com/questions/575475/how-can-i-save-an-altered-image-in-matlab/578541#578541">Azim</a>, <a href="http://stackoverflow.com/questions/575475/how-can-i-save-an-altered-image-in-matlab/575895#575895">jacobko</a>, and <a href="http://stackoverflow.com/questions/575475/how-can-i-save-an-altered-image-in-matlab/575649#575649">SCFrench</a>. This option is what you would want to do if you were overlaying the image with text labels, arrows, or other more involved plot objects.</p></li> </ul> <p>Using the second option by saving the entire figure can be tricky. Specifically, you can lose image resolution if you were plotting a big image (say 1024-by-1024 pixels) in a small window (say 700-by-700 pixels). You would have to set the figure and axes properties to accommodate. Here's an example solution:</p> <pre><code>I = imread('peppers.png'); %# Load a sample image imshow(I); %# Display it [r,c,d] = size(I); %# Get the image size set(gca,'Units','normalized','Position',[0 0 1 1]); %# Modify axes size set(gcf,'Units','pixels','Position',[200 200 c r]); %# Modify figure size hold on; plot(100,100,'r*'); %# Plot something over the image f = getframe(gcf); %# Capture the current window imwrite(f.cdata,'image2.jpg'); %# Save the frame data </code></pre> <p>The output image <code>image2.jpg</code> should have a red asterisk on it and should have the same dimensions as the input image.</p> http://stackoverflow.com/questions/1838537/how-do-i-break-a-polyhedron-into-tetrahedra-in-matlab/1840500#1840500 3 Answer by gnovice for How do I break a polyhedron into tetrahedra in MATLAB? gnovice 2009-12-03T15:14:50Z 2009-12-03T19:05:25Z <p>I would suggest trying the built-in function <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/delaunay3.html" rel="nofollow">DELAUNAY3</a>. The example given in the documentation link resembles <a href="http://stackoverflow.com/questions/1838537/break-polyhedron-into-tetrahedron/1838578#1838578">Aaron's answer</a> in that it uses the vertices plus the center point of the polyhedron to create a 3-D Delaunay tessellation, but <a href="http://stackoverflow.com/questions/1838537/break-polyhedron-into-tetrahedron/1841507#1841507">shabbychef</a> points out that you can still create a tessellation without including the extra point. You can then use <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/tetramesh.html" rel="nofollow">TETRAMESH</a> to visualize the resulting tetrahedral elements.</p> <p>Your code might look something like this (assuming <code>v</code> is an <strong>N-by-3</strong> matrix of vertex coordinate values):</p> <pre><code>v = [v; mean(v)]; %# Add an additional center point, if desired (this code %# adds the mean of the vertices) Tes = delaunay3(v(:,1),v(:,2),v(:,3)); %# Create the triangulation tetramesh(Tes,v); %# Plot the tetrahedrons </code></pre> <p>Since you said in a comment that your polyhedron is convex, you shouldn't have to worry about specifying the surfaces as constraints in order to do the triangulation (<a href="http://stackoverflow.com/questions/1838537/break-polyhedron-into-tetrahedron/1841507#1841507">shabbychef</a> appears to give a more rigorous and terse proof of this than my comments below do).</p> <p><strong>NOTE:</strong> According to the documentation, DELAUNAY3 will be removed in a future release and <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/delaunaytri.html" rel="nofollow">DelaunayTri</a> will effectively take its place (although currently it appears that defining constrained edges is still limited to only 2-D triangulations). For the sake of completeness, here is how you would use DelaunayTri and visualize the convex hull (i.e. polyhedral surface) as well:</p> <pre><code>DT = DelaunayTri(v); %# Using the same variable v as above tetramesh(DT); %# Plot the tetrahedrons figure; %# Make new figure window ch = convexHull(DT); %# Get the convex hull trisurf(ch,v(:,1),v(:,2),v(:,3),'FaceColor','cyan'); %# Plot the convex hull </code></pre> http://stackoverflow.com/questions/1832429/how-do-i-use-the-least-squares-approximation-in-matlab/1833566#1833566 1 Answer by gnovice for How do I use the least squares approximation in MATLAB? gnovice 2009-12-02T15:19:10Z 2009-12-02T15:19:10Z <p>Does your assignment involve explicitly coding up a least-squares approximation, or just using another function available in MATLAB? If you can use another function, one option is <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/lsqr.html" rel="nofollow">LSQR</a>:</p> <pre><code>x = lsqr(A,y); </code></pre> http://stackoverflow.com/questions/1823668/is-there-a-way-to-push-a-matlab-workspace-onto-a-stack/1824198#1824198 5 Answer by gnovice for Is there a way to push a MATLAB workspace onto a stack? gnovice 2009-12-01T05:37:46Z 2009-12-01T05:46:43Z <p>It sounds like you'd like to switch back and forth between workspaces of variables. The best way I can think to do this is to use the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/save.html" rel="nofollow">SAVE</a>, <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/clear.html" rel="nofollow">CLEAR</a>, and <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/load.html" rel="nofollow">LOAD</a> commands to move sets of variables back and forth between MAT-files and the workspace:</p> <pre><code>save workspace_1.mat %# Save all variables in the current workspace %# to a .mat file clear %# Clear all variables in the current workspace load workspace_2.mat %# Load all variables from a .mat file into the %# current workspace </code></pre> http://stackoverflow.com/questions/1820802/function-pointers-in-matlab/1820818#1820818 9 Answer by gnovice for Function pointers in MATLAB gnovice 2009-11-30T16:23:47Z 2009-11-30T17:40:57Z <h2>Option 1:</h2> <p>Use the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/str2func.html" rel="nofollow">STR2FUNC</a> function (assumes the string in <code>type</code> is the same as the name of the function):</p> <pre><code>p = str2func(type); %# Create function handle using function name c = p(phi,lambda); %# Invoke function handle </code></pre> <p><strong>NOTE:</strong> There's one limitation to using STR2FUNC that's mentioned in the documentation:</p> <blockquote> <p>Nested functions are not accessible to <code>str2func</code>. To construct a function handle for a nested function, you must use the function handle constructor, <code>@</code>.</p> </blockquote> <h2>Option 2:</h2> <p>Use a <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/switch.html" rel="nofollow">SWITCH</a> statement and <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/function%5Fhandle.html" rel="nofollow">function handles</a>:</p> <pre><code>switch type case 'Mercator' p = @Mercator; case 'KavrayskiyVII' p = @KavrayskiyVII; ... %# Add other cases as needed end c = p(phi,lambda); %# Invoke function handle </code></pre> <h2>Option 3:</h2> <p>Use <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/eval.html" rel="nofollow">EVAL</a> and <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/function%5Fhandle.html" rel="nofollow">function handles</a> (suggested by <a href="http://stackoverflow.com/users/105904/andrew-janke">Andrew Janke</a>):</p> <pre><code>p = eval(['@' type]); %# Concatenate string name with '@' and evaluate c = p(phi,lambda); %# Invoke function handle </code></pre> <p>As Andrew points out, this avoids the limitations of STR2FUNC and the extra maintenance associated with a switch statement.</p> http://stackoverflow.com/questions/1819232/how-do-i-execute-a-callback-function-from-another-function-file-in-matlab/1820465#1820465 2 Answer by gnovice for How do I execute a callback function from another function file in MATLAB? gnovice 2009-11-30T15:24:53Z 2009-11-30T16:09:43Z <p>From the result you got for the button callback, it appears that the callback has been created in the following way (just for example):</p> <pre><code>hButton = uicontrol(...,'Callback',{@button_callback,1,1,[1:6]}); </code></pre> <p>where the callback function <code>button_callback</code> is defined as follows:</p> <pre><code>function button_callback(hObject,eventdata,a,b,c) ... end </code></pre> <p>Notice that there are <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/creating%5Fguis/f10-1000947.html" rel="nofollow"><em>two extra arguments</em> in the input argument list</a> for the callback function: <code>hObject</code> (the handle of the object invoking the callback) and <code>eventdata</code> (a structure of event data).</p> <p>If you want to invoke the function handle with the 3 additional arguments that should be passed to it (<code>1</code>, <code>1</code>, and a 1-by-6 array), you need to also pass arguments for the <code>hObject</code> and <code>eventdata</code> inputs. Here's how calling the function would look (using your variable <code>ans</code>):</p> <pre><code>ans{1}(hButton,[],ans{2:end}); </code></pre> <p>You first get the function handle from the cell array (<code>ans{1}</code>) then <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/matlab%5Fprog/f2-38133.html#brfp2ju-1" rel="nofollow">call it using parentheses as you would any other function</a>. For <code>hObject</code> you can pass the handle to the uicontrol object (or an empty value if it isn't needed), and for <code>eventdata</code> you can just pass an empty value. The additional values are then taken from the cell array as a <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/matlab%5Fprog/br2js35-1.html" rel="nofollow">comma-separated list</a> (<code>ans{2:end}</code>) and each is passed to the function as a separate additional argument.</p> http://stackoverflow.com/questions/1816097/how-would-i-randomly-pick-one-point-from-n-points-in-matlab/1816333#1816333 8 Answer by gnovice for How would I randomly pick one point from N points in MATLAB? gnovice 2009-11-29T18:34:24Z 2009-11-29T22:42:06Z <p>You can use the function <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/randi.html" rel="nofollow">RANDI</a> to generate a random integer in a given range:</p> <pre><code>index = randi(N); %# Generate a random integer in the range 1 to N plot(x(index),y(index),'o'); %# Plot the point </code></pre> <p><strong>EDIT:</strong> As pointed out by <a href="http://stackoverflow.com/users/136967/mikhail">Mikhail</a>, the RANDI function has only been available since version 7.7 (R2008b). For earlier versions, the following alternative should work:</p> <pre><code>index = ceil(rand*N); </code></pre> http://stackoverflow.com/questions/1805796/code-golf-ulam-spiral/1806793#1806793 9 Answer by gnovice for Code Golf: Ulam Spiral gnovice 2009-11-27T04:47:29Z 2009-11-27T22:46:50Z <p><strong>MATLAB:</strong> <strike>182</strike> <strike>167</strike> 156 characters</p> <p>Script <code>ulam.m</code>:</p> <pre><code>A=1;b=ones(1,4);for i=0:(input('')-2),c=b(4);b=b+i*8+(2:2:8);A=[b(2):-1:b(1);(b(2)+1:b(3)-1)' A (b(1)-1:-1:c+1)';b(3):b(4)];end;disp(char(isprime(A)*10+32)) </code></pre> <p>And formatted a little nicer:</p> <pre><code>A = 1; b = ones(1,4); for i = 0:(input('')-2), c = b(4); b = b+i*8+(2:2:8); A = [b(2):-1:b(1); (b(2)+1:b(3)-1)' A (b(1)-1:-1:c+1)'; b(3):b(4)]; end; disp(char(isprime(A)*10+32)) </code></pre> <p>Test cases:</p> <pre><code>&gt;&gt; ulam 2 * * * * &gt;&gt; ulam 3 * * * * * ** * * &gt;&gt; ulam 5 * * * * * * * * * * * ** * * * * * * * * * </code></pre> http://stackoverflow.com/questions/1810393/how-to-read-till-end-of-file-in-matlab/1810427#1810427 0 Answer by gnovice for How to read till end of file in MATLAB? gnovice 2009-11-27T19:51:31Z 2009-11-27T19:51:31Z <p>Certain functions (like <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/textscan.html" rel="nofollow">TEXTSCAN</a>) will continue recycling the format string until the end of the file is reached. Other functions (like <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/fscanf.html" rel="nofollow">FSCANF</a>) can take <code>Inf</code> as a size option, indicating that it should continue reading until the end of the file. If you are reading data line-by-line in a loop, you can use the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/feof.html" rel="nofollow">FEOF</a> function to test if the end of the file has been reached.</p> http://stackoverflow.com/questions/1809881/how-to-plot-a-3d-plot-in-matlab/1809921#1809921 1 Answer by gnovice for How to plot a 3D plot in MATLAB? gnovice 2009-11-27T17:40:27Z 2009-11-27T19:16:40Z <p>The type of plot you are trying to make may be difficult to visualize well. I can give you two suggestions: one is what you <em>want</em>, and one is what you should probably do instead...</p> <h2>Plotting 4-D data:</h2> <p>In order to do this, you will have to plot a series of <code>x,y,t</code> points and somehow represent the error value <code>e</code> at each point. You could do this by changing the color or size of the point. In this example, I'll plot a sphere at each point with a diameter that varies based on the error (a diameter of 1 equates to the maximum expected error). The color represents the time. I'll be using the sample data you added to the question (formatted as a <strong>5-by-4</strong> matrix with the columns containing the <code>x</code>, <code>y</code>, <code>t</code>, and <code>e</code> data):</p> <pre><code>data = [4 5 2 45; 4 5 6 54; 7 8 2 32; 7 8 9 98; 7 8 1 121]; [x,y,z] = sphere; %# Coordinate data for sphere MAX_ERROR = 121; %# Maximum expected error for i = 1:size(data,1) c = 0.5*data(i,4)/MAX_ERROR; %# Scale factor for sphere X = x.*c+data(i,1); %# New X coordinates for sphere Y = y.*c+data(i,2); %# New Y coordinates for sphere Z = z.*c+data(i,3); %# New Z coordinates for sphere surface(X,Y,Z,'EdgeColor','none'); %# Plot sphere hold on end grid on axis equal view(-27,16); xlabel('x'); ylabel('y'); zlabel('t'); </code></pre> <p>And here's what it would look like:</p> <p><img src="http://i37.photobucket.com/albums/e77/kpeaton/example%5F4D.jpg" alt="alt text"></p> <p><strong>The problem:</strong> Although the plot looks kind of interesting, it's not very intuitive. Also, plotting lots of points in this way will get cluttered and it will be hard to see them all well.</p> <h2>More intuitive 3-D plot:</h2> <p>It may be better to instead make a 3-D plot of the data, since it may be easier to interpret. Here, the x-axis represents the iteration number and the y-axis represents each individual network:</p> <pre><code>plot3(1:2,[1 1],[2 45; 6 54]); %# Plot data for network 4-5 hold on plot3(1:3,[2 2 2],[2 32; 9 98; 1 121]); %# Plot data for network 7-8 xlabel('iteration number'); set(gca,'YTick',[1 2],'YTickLabel',{'network 4-5','network 7-8'}) grid on legend('time','error') view(-18,30) </code></pre> <p>This produces a much clearer plot:</p> <p><img src="http://i37.photobucket.com/albums/e77/kpeaton/example%5F3D.jpg" alt="alt text"></p> http://stackoverflow.com/questions/1803043/how-do-i-display-an-arrow-positioned-at-a-specific-angle-in-matlab/1805048#1805048 5 Answer by gnovice for How do I display an arrow positioned at a specific angle in MATLAB? gnovice 2009-11-26T18:15:34Z 2009-11-27T16:36:19Z <p>If you want to try and make something that looks like the image you linked to, here's some code to help you do it (<strong>NOTE:</strong> you would first have to download the submission <a href="http://www.mathworks.com/matlabcentral/fileexchange/278-arrow-m" rel="nofollow">arrow.m</a> by <a href="http://www.mathworks.com/matlabcentral/fileexchange/authors/2187" rel="nofollow">Erik Johnson</a> on the <a href="http://www.mathworks.com/matlabcentral/fileexchange/" rel="nofollow">MathWorks File Exchange</a>, which I always like to use for generating arrows of any shape and size):</p> <pre><code>x = 1; %# X coordinate of arrow start y = 2; %# Y coordinate of arrow start theta = pi/4; %# Angle of arrow, from x-axis L = 2; %# Length of arrow xEnd = x+L*cos(theta); %# X coordinate of arrow end yEnd = y+L*sin(theta); %# Y coordinate of arrow end points = linspace(0,theta); %# 100 points from 0 to theta xCurve = x+(L/2).*cos(points); %# X coordinates of curve yCurve = y+(L/2).*sin(points); %# Y coordinates of curve plot(x+[-L L],[y y],'--k'); %# Plot dashed line hold on; %# Add subsequent plots to the current axes axis([x+[-L L] y+[-L L]]); %# Set axis limits axis equal; %# Make tick increments of each axis equal arrow([x y],[xEnd yEnd]); %# Plot arrow plot(xCurve,yCurve,'-k'); %# Plot curve plot(x,y,'o','MarkerEdgeColor','k','MarkerFaceColor','w'); %# Plot point </code></pre> <p>And here's what it would look like:</p> <p><img src="http://i37.photobucket.com/albums/e77/kpeaton/example%5Farrow.jpg" alt="alt text"></p> <p>You can then add text to the plot (for the angle and the coordinate values) using the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/text.html" rel="nofollow">TEXT</a> function.</p> http://stackoverflow.com/questions/1787057/how-should-i-perform-this-binning-and-averaging-in-matlab/1791167#1791167 2 Answer by gnovice for How should I perform this binning and averaging in MATLAB? gnovice 2009-11-24T16:23:23Z 2009-11-24T18:52:52Z <p>I think I understand the problem better now...</p> <p>If <code>a</code> is the data read from your file (of size <strong>N-by-27</strong>, where N is ideally 43,200), then I think you would want to do the following:</p> <pre><code>nRemove = rem(size(a,1),300); %# Find the number of points to remove a = a(1:end-nRemove,:); %# Trim points to make an even multiple of 300 Avg = mean(reshape(a,300,[],27)); AvgF = squeeze(Avg); </code></pre> <p>This will remove points such that the number of rows in <code>a</code> will be a multiple of 300. Then your reshape and average should work. Note that I use <code>[]</code> in the call to <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/reshape.html" rel="nofollow">RESHAPE</a>, which lets it figure out what the number of column should be.</p> http://stackoverflow.com/questions/1791811/how-do-i-format-this-data-read-from-a-serial-port-in-matlab/1791861#1791861 3 Answer by gnovice for How do I format this data read from a serial port in MATLAB? gnovice 2009-11-24T18:04:29Z 2009-11-24T18:32:02Z <p>The format specifier <code>%c</code> indicates that <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/fscanf.html" rel="nofollow">FSCANF</a> is reading six characters. You should be able to convert those characters to integer values using the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/double.html" rel="nofollow">DOUBLE</a> function:</p> <pre><code>data1 = double(data1); </code></pre> <p>Now <code>data1</code> should be a six-element array containing integer values. You can access each by <a href="http://www.mathworks.com/company/newsletters/digest/sept01/matrix.html" rel="nofollow">indexing into the array</a>:</p> <pre><code>a = data1(1); %# Gets the first value and puts it in a </code></pre> <p>If you want to combine pairs of values in <code>data1</code> such that one value represents the highest 8 bits of a number and one value represents the lowest 8 bits, the following should work:</p> <pre><code>a = int16(data1(1)*2^8+data1(2)); </code></pre> <p>The above uses <code>data1(1)</code> as the high bits and <code>data1(2)</code> as the low bits, then converts the result to an <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/int16.html" rel="nofollow">INT16</a> type. You could also leave off the call to INT16 to just leave the result as type DOUBLE (the <em>value</em> it stores would still be an integer).</p> <p>The format specifier <code>%s</code> is used to read a string of characters, up until white space is encountered. Format specifiers are discussed in the documentation for FSCANF that I linked to above.</p> http://stackoverflow.com/questions/1788180/how-do-i-sample-a-matrix-in-matlab/1788189#1788189 4 Answer by gnovice for How do I sample a matrix in MATLAB? gnovice 2009-11-24T06:21:55Z 2009-11-24T06:32:22Z <p>This should work for your specific example:</p> <pre><code>result = a([1 3],[1 3]); </code></pre> <p>and more generally:</p> <pre><code>result = a(1:2:size(a,1),1:2:size(a,2)); </code></pre> <p>For more details about indexing in MATLAB, you can check out the documentation <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/math/f1-85462.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1775929/how-do-i-display-strings-and-numbers-together-in-matlab/1776220#1776220 4 Answer by gnovice for How do I display strings and numbers together in MATLAB? gnovice 2009-11-21T17:59:48Z 2009-11-21T18:05:36Z <p>The following should allow you to look at the variables together in the Command Window:</p> <pre><code>disp([char(S) blanks(numel(N))' num2str(N)]); </code></pre> <p>The array <code>S</code> (which I presume is a cell array) is converted to a character array using the function <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/char.html" rel="nofollow">CHAR</a>. It's then concatenated with a column vector of blanks (made using the function <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/blanks.html" rel="nofollow">BLANKS</a>) and then a string representation of the numeric array <code>N</code> (made using the function <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/num2str.html" rel="nofollow">NUM2STR</a>). This is then displayed using the function <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/disp.html" rel="nofollow">DISP</a>.</p> http://stackoverflow.com/questions/1775866/how-do-i-merge-two-masks-together-in-matlab/1776166#1776166 4 Answer by gnovice for How do I merge two masks together in MATLAB? gnovice 2009-11-21T17:44:47Z 2009-11-21T17:50:18Z <p>Another option is to use <a href="http://www.mathworks.com/company/newsletters/digest/sept01/matrix.html" rel="nofollow">logical indexing</a>:</p> <pre><code>%# Define masks: mask1 = [0 5 5; 0 5 5]; mask2 = [4 4 0; 4 4 0]; mask3 = [0 6 0; 0 6 0]; %# Merge masks: newMask = mask1; %# Start with mask1 index = (mask2 ~= 0); %# Logical index: ones where mask2 is nonzero newMask(index) = mask2(index); %# Overwrite with nonzero values of mask2 index = (mask3 ~= 0); %# Logical index: ones where mask3 is nonzero newMask(index) = mask3(index); %# Overwrite with nonzero values of mask3 </code></pre> http://stackoverflow.com/questions/1773099/how-do-i-divide-matrix-elements-by-column-sums-in-matlab/1773119#1773119 10 Answer by gnovice for How do I divide matrix elements by column sums in MATLAB? gnovice 2009-11-20T20:41:25Z 2009-11-21T00:25:11Z <p>Here's a list of the different ways to do this ...</p> <ul> <li><p>... using <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/bsxfun.html" rel="nofollow">BSXFUN</a>:</p> <pre><code>B = bsxfun(@rdivide,A,sum(A)); </code></pre></li> <li><p>... using <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/repmat.html" rel="nofollow">REPMAT</a>:</p> <pre><code>B = A./repmat(sum(A),size(A,1),1); </code></pre></li> <li><p>... using an <a href="http://en.wikipedia.org/wiki/Outer%5Fproduct" rel="nofollow">outer product</a> (as suggested by <a href="http://stackoverflow.com/users/97160/amro">Amro</a>):</p> <pre><code>B = A./(ones(size(A,1),1)*sum(A)); </code></pre></li> <li><p>... and using a for loop (as suggested by <a href="http://stackoverflow.com/users/120261/mtrw">mtrw</a>):</p> <pre><code>B = A; columnSums = sum(B); for i = 1:numel(columnSums) B(:,i) = B(:,i)./columnSums(i); end </code></pre></li> </ul> http://stackoverflow.com/questions/1773542/matlab-filter-noisy-ekg-signal/1773924#1773924 0 Answer by gnovice for MATLAB: filter noisy EKG signal gnovice 2009-11-20T23:51:00Z 2009-11-21T00:15:24Z <p>Two filter design tools/demos that you may want to check out:</p> <ul> <li><p><a href="http://www.mathworks.com/access/helpdesk/help/toolbox/signal/br179zi-1.html" rel="nofollow">FDATool</a> in the <a href="http://www.mathworks.com/access/helpdesk/help/toolbox/signal/" rel="nofollow">Signal Processing Toolbox</a> (if you have access to it).</p></li> <li><p><a href="http://www.mathworks.nl/matlabcentral/fileexchange/9458-analog-filter-design-toolbox" rel="nofollow">Analog Filter Design Toolbox</a> from <a href="http://www.mathworks.nl/matlabcentral/fileexchange/authors/21664" rel="nofollow">James Squire</a> on the <a href="http://www.mathworks.nl/matlabcentral/fileexchange/" rel="nofollow">MathWorks File Exchange</a>. There appear to be simulations for fitering EKG data included in the toolbox.</p></li> </ul> <p>These should give you a chance to try out different filters and filter parameters to see how they perform with EKG/ECG data.</p> http://stackoverflow.com/questions/612507/what-are-the-applications-benefits-of-an-80-bit-extended-precision-data-type 3 What are the applications/benefits of an 80-bit extended precision data type? gnovice 2009-03-04T21:25:45Z 2009-11-20T18:53:24Z <p>Yeah, I meant to say <em>80-bit</em>. That's not a typo...</p> <p>My experience with floating point variables has always involved 4-byte multiples, like singles (32 bit), doubles (64 bit), and long doubles (which I've seen refered to as either 96-bit or 128-bit). That's why I was a bit confused when I came across an <a href="http://en.wikipedia.org/wiki/Extended%5Fprecision" rel="nofollow">80-bit extended precision data type</a> while I was working on some code to read and write to <a href="http://en.wikipedia.org/wiki/Audio%5FInterchange%5FFile%5FFormat" rel="nofollow">AIFF (Audio Interchange File Format) files</a>: an extended precision variable was chosen to store the sampling rate of the audio track.</p> <p>When I skimmed through Wikipedia, I found the link above along with a brief mention of 80-bit formats in the <a href="http://en.wikipedia.org/wiki/IEEE%5F754-1985" rel="nofollow">IEEE 754-1985 standard</a> summary (but not in the <a href="http://en.wikipedia.org/wiki/IEEE%5F754" rel="nofollow">IEEE 754-2008 standard</a> summary). It appears that on certain architectures "extended" and "long double" are synonymous.</p> <p>One thing I haven't come across are specific applications that make use of extended precision data types (except for, of course, AIFF file sampling rates). This led me to wonder:</p> <ul> <li>Has anyone come across a situation where extended precision was necessary/beneficial for some programming application?</li> <li>What are the benefits of an 80-bit floating point number, other than the obvious "it's a little more precision than a double but fewer bytes than most implementations of a long double"?</li> <li>Is its applicability waning?</li> </ul> http://stackoverflow.com/questions/1759413/how-do-i-make-a-character-in-matlab/1759454#1759454 6 Answer by gnovice for How do I make a "^" character in MATLAB? gnovice 2009-11-18T22:04:35Z 2009-11-19T20:58:00Z <p>I would suggest downloading the submission <a href="http://www.mathworks.com/matlabcentral/fileexchange/24615" rel="nofollow">EditorMacro</a> from <a href="http://www.mathworks.com/matlabcentral/fileexchange/authors/27420" rel="nofollow">Yair Altman</a> on the <a href="http://www.mathworks.com/matlabcentral/fileexchange/" rel="nofollow">MathWorks File Exchange</a>. If you ran the following code in the MATLAB Command Window (while the MATLAB Editor was open):</p> <pre><code>EditorMacro('Alt 6','^'); </code></pre> <p>it would create a macro within the context of the MATLAB Editor and Command Window that would insert the string <code>^</code> at the caret position when you hit the key combination <kbd>Alt</kbd>+<kbd>6</kbd> (which shouldn't be tied to any other macro/operation as far as I know).</p> <p>Since you mention switching back and forth between a <a href="http://en.wikipedia.org/wiki/Keyboard%5Flayout#Bosnian.2C%5FCroatian.2C%5FSerbian%5F.28Latin.29%5Fand%5FSlovene" rel="nofollow">Croatian</a> and <a href="http://en.wikipedia.org/wiki/Keyboard%5Flayout#United%5FStates" rel="nofollow">English</a> keyboard layout, it is probably annoying having to memorize different key combinations for the same symbols. Using <code>EditorMacro</code>, you could create a set of macros in the MATLAB Editor and Command Window that would allow you to use the same set of key presses for each symbol regardless of the type of keyboard you were using.</p> <p>Since the macros made with <code>EditorMacro</code> are removed each time MATLAB is closed, you could create a <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/startup.html" rel="nofollow"><code>startup.m</code> file</a> (which will be automatically run each time MATLAB is opened) to create the macros for you. The file could look something like this:</p> <pre><code>edit; %# Open the Editor so EditorMacro works properly EditorMacro('Alt 5','%'); %# Create "%" macro EditorMacro('Alt 6','^'); %# Create "^" macro EditorMacro('Alt 7','&amp;'); %# Create "&amp;" macro ... </code></pre> <p>In this example, I am basically reproducing the behavior of <kbd>Shift</kbd> plus a number on an English keyboard using <kbd>Alt</kbd> instead.</p> <p><hr></p> <p><em>And if all else fails...</em></p> <p>You can always use the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/arithmeticoperators.html" rel="nofollow">functional forms of the arithmetic operators</a> as a last resort:</p> <ul> <li><a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/power.html" rel="nofollow"><code>power(A,B)</code></a> instead of the element-wise power operation <code>A.^B</code></li> <li><code>mpower(A,B)</code> instead of the matrix power operation <code>A^B</code></li> </ul> <p>It won't be pretty, but it'll work.</p> http://stackoverflow.com/questions/1760614/turning-y-axis-upside-down-in-matlab/1760624#1760624 7 Answer by gnovice for Turning y axis upside down in MATLAB gnovice 2009-11-19T03:05:32Z 2009-11-19T04:19:48Z <p>You can change the y-axis direction of the currently active axes with the following:</p> <pre><code>set(gca,'YDir','reverse'); </code></pre> <p>For a complete list of all the axes properties you can modify, check out <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/axes%5Fprops.html" rel="nofollow">this documentation page</a>.</p> http://stackoverflow.com/questions/1757250/matlab-determine-total-length-size-of-a-structure-array-with-fields-as-structure/1757327#1757327 5 Answer by gnovice for MATLAB: Determine total length/size of a structure array with fields as structure arrays gnovice 2009-11-18T16:38:34Z 2009-11-18T19:49:56Z <p>This will work if every structure array <code>data</code> has the same fields and are row vectors (i.e. <strong>1-by-N</strong>):</p> <pre><code>allData = [s.data]; %# Concatenate all data arrays into one timestamp = [allData.timestamp]; %# Collect all the time stamps </code></pre> <p>If the <code>data</code> structure arrays are column vectors (i.e. <strong>N-by-1</strong>), you need to use <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/vertcat.html" rel="nofollow">VERTCAT</a> instead:</p> <pre><code>allData = vertcat(s.data); %# Concatenate all data arrays into one timestamp = [allData.timestamp]; %# Collect all the time stamps </code></pre> <p>The above solutions work due to the fact that accessing a single field of a structure array returns a <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/matlab%5Fprog/br2js35-1.html" rel="nofollow">comma-separated list</a>.</p> http://stackoverflow.com/questions/1874971/do-you-feel-that-writing-on-paper-helps-you-develop-better Comment by gnovice on Do you feel that writing on paper helps you develop better? gnovice 2009-12-09T17:35:38Z 2009-12-09T17:35:38Z Duplicates/related posts: <a href="http://stackoverflow.com/questions/1800746/are-you-using-pen-and-paper-during-programming" rel="nofollow" title="are you using pen and paper during programming">stackoverflow.com/questions/1800746/&hellip;</a>, <a href="http://stackoverflow.com/questions/306317/do-you-use-paper" rel="nofollow" title="do you use paper">stackoverflow.com/questions/306317/&hellip;</a>, <a href="http://stackoverflow.com/questions/1634224/how-can-i-start-designing-my-program-on-paper-without-over-engineering-things" rel="nofollow" title="how can i start designing my program on paper without over engineering things">stackoverflow.com/questions/1634224/&hellip;</a>, <a href="http://stackoverflow.com/questions/1287898/what-advantages-does-sketching-a-user-interface-on-paper-have" rel="nofollow" title="what advantages does sketching a user interface on paper have">stackoverflow.com/questions/1287898/&hellip;</a>, ... http://stackoverflow.com/questions/1864235/how-do-i-sort-files-into-multiple-folders-in-matlab/1867707#1867707 Comment by gnovice on How do I sort files into multiple folders in MATLAB? gnovice 2009-12-09T05:47:08Z 2009-12-09T05:47:08Z I understand if the above may be more complicated than you need. I actually adapted it from some code I was using for collecting files and directories that had a more varied and complicated set of naming conventions. ;) http://stackoverflow.com/questions/1864235/how-do-i-sort-files-into-multiple-folders-in-matlab/1871071#1871071 Comment by gnovice on How do I sort files into multiple folders in MATLAB? gnovice 2009-12-09T03:13:46Z 2009-12-09T03:13:46Z The first part of your answer will work well, and is a little clearer and easier to understand than using REGEXP ;), but may run into problems if there are ever other unrelated files in the directory with names like &quot;data10.txt&quot;. I think the second part with the shell commands will only work if the default order of the files in the directory is already sorted appropriately, which <i>may not</i> be the case for what the OP is doing (i.e. &quot;data1_2009_12_12_9.10&quot; would come before &quot;data1_2009_12_9_9.10&quot; alpha-numerically). http://stackoverflow.com/questions/1870816/good-code-smells Comment by gnovice on Good Code Smells? gnovice 2009-12-09T02:24:46Z 2009-12-09T02:24:46Z I think this question is basically just asking about good programming practices, which are covered by the over 6500 questions tagged <code>best-practices</code>: <a href="http://stackoverflow.com/questions/tagged/best-practices" rel="nofollow">stackoverflow.com/questions/tagged/&hellip;</a> http://stackoverflow.com/questions/1864235/how-do-i-sort-files-into-multiple-folders-in-matlab Comment by gnovice on How do I sort files into multiple folders in MATLAB? gnovice 2009-12-08T23:48:52Z 2009-12-08T23:48:52Z Regarding your edit... What kind of machine are you working on (Windows, Linux, etc.)? You may be able to use system commands to more easily concatenate data files. http://stackoverflow.com/questions/1809890/line-breaking-expression-in-python Comment by gnovice on Line-breaking Expression in Python gnovice 2009-12-08T18:34:51Z 2009-12-08T18:34:51Z Duplicate: <a href="http://stackoverflow.com/questions/53162/how-can-i-do-a-line-continuation-of-code-in-python" rel="nofollow" title="how can i do a line continuation of code in python">stackoverflow.com/questions/53162/&hellip;</a> http://stackoverflow.com/questions/1864235/how-do-i-sort-files-into-multiple-folders-in-matlab Comment by gnovice on How do I sort files into multiple folders in MATLAB? gnovice 2009-12-08T15:56:31Z 2009-12-08T15:56:31Z @AP: I modified the last 2 digits of some of the file names in your question based on what I <i>think</i> you meant to say (a lot of them had <code>10</code> when I'm guessing they should have been <code>20</code>, <code>30</code>, etc.). http://stackoverflow.com/questions/1860760/how-can-i-draw-a-circle-on-an-image-in-matlab/1866698#1866698 Comment by gnovice on How can I draw a circle on an image in MATLAB? gnovice 2009-12-08T15:48:32Z 2009-12-08T15:48:32Z How are you getting the values <code>x</code> and <code>y</code>? If you get them from the FIND command, you will likely have to flip them. You might not have to flip them if you found them by other means. http://stackoverflow.com/questions/1864235/how-do-i-sort-files-into-multiple-folders-in-matlab Comment by gnovice on How do I sort files into multiple folders in MATLAB? gnovice 2009-12-08T03:03:45Z 2009-12-08T03:03:45Z Are all these files in one folder to start with? Also, did you mean to have file names repeated in your example, or should the last number increment by 10 for each one? http://stackoverflow.com/questions/1863272/how-can-i-insert-my-foto-in-matlab-gui Comment by gnovice on How can I insert my foto in matlab gui? gnovice 2009-12-07T22:21:53Z 2009-12-07T22:21:53Z Maybe this is a dumb question... is &quot;my foto&quot; some kind of app, or did you mean to say &quot;one of my photographs/images&quot;? http://stackoverflow.com/questions/1860760/how-can-i-draw-a-circle-on-an-image-in-matlab/1860776#1860776 Comment by gnovice on How can I draw a circle on an image in MATLAB? gnovice 2009-12-07T16:38:57Z 2009-12-07T16:38:57Z @Zaid: Yes, I added a note to my answer explaining why they need to be flipped. http://stackoverflow.com/questions/1856197/how-can-i-find-local-maxima-in-an-image-in-matlab/1856675#1856675 Comment by gnovice on How can I find local maxima in an image in MATLAB? gnovice 2009-12-07T05:07:09Z 2009-12-07T05:07:09Z @Nathan: IMDILATE operates on each pixel of the grayscale image. The center of the 3-by-3 matrix is positioned at each pixel, and the pixel value is replaced by the maximum value found at the neighboring pixels where there is a value of 1 in the 3-by-3 matrix. The call to IMDILATE therefore returns a new matrix where each point is replaced by the maximum value of its 8 neighbors (zero padded at the edges as needed), and the points where the original matrix is larger indicates a local maxima. http://stackoverflow.com/questions/1856197/how-can-i-find-local-maxima-in-an-image-in-matlab/1856234#1856234 Comment by gnovice on How can I find local maxima in an image in MATLAB? gnovice 2009-12-06T22:36:57Z 2009-12-06T22:36:57Z @Nathan: I modified my answer to show you how to remove maxima that have neighbors, but you should also check out Steve Eddins answer using IMDILATE. http://stackoverflow.com/questions/1856197/how-can-i-find-local-maxima-in-an-image-in-matlab/1856675#1856675 Comment by gnovice on How can I find local maxima in an image in MATLAB? gnovice 2009-12-06T22:34:24Z 2009-12-06T22:34:24Z +1 I had forgotten how IMDILATE would work with grayscale images ( I usually only use it with logical masks). http://stackoverflow.com/questions/1856197/how-can-i-find-local-maxima-in-an-image-in-matlab/1856234#1856234 Comment by gnovice on How can I find local maxima in an image in MATLAB? gnovice 2009-12-06T19:19:42Z 2009-12-06T19:19:42Z @Nathan: So, if you were to find a set of neighboring maxima that are equal, would you want to just pick one of them, or exclude all of them?