Rank: 293687 based on 0 downloads (last 30 days) and 0 file submitted
photo

Daniel Golden

E-mail
Company/University
Stanford University
Lat/Long
37.4, -122.1

Personal Profile:
Professional Interests:

 

Watch this Author's files

 

Comments and Ratings by Daniel View all
Updated File Comments Rating
09 May 2013 mask2poly Finds a polygon enclosing the user defined mask. Inverse of poly2mask :). Author: Nikolay S.

This is a great idea for a function, but it unfortunately fails in some cases. Matlab has a more robust method built in: bwboundaries.

28 Jan 2013 Structure display simple recursive display of a structure content in Matlab Author: Thomas Deneux

Does just what I wanted

28 Apr 2011 hashtable class general purpose hashtable Author: Christopher

Thank you for your comment, Shawn; as you mention, Matlab already has a hash table built in: the containers.Map class. They make it difficult to find by never mentioning the term "hash table" in the documentation.

19 Aug 2010 filtfilthd Zero-phase forwards/backwards filtering using SP toolbox dfilt filter objects Author: Malcolm Lidierth

A lovely little program that solved my problem!

04 Feb 2010 suplabel Places text as a title, xlabel, or ylabel on a group of subplots. Author: Ben Barrowes

The problem with zooming is that suplabel places its axis on top of all other axes in the figure. You can fix this by adding the following lines under the
ax=axes('Units','Normal','Position',supAxes,'Visible','off');
line:

ch = get(get(ax, 'parent'), 'children');
set(get(ax, 'parent'), 'children', [ch(2:end); ch(1)]);

This moves the "suplabel" axis to the bottom of the figures' axes list and allows you to mess with the original axes on the figure.

Contact us