Rank: 169 based on 497 downloads (last 30 days) and 9 files submitted
photo

Sebastian Hölz

E-mail
Company/University
TU Berlin

Personal Profile:
Professional Interests:

 

Watch this Author's files

 

Files Posted by Sebastian View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
10 Jun 2009 Screenshot gridcolor Change color of grid lines without changing color of axis labels or box Author: Sebastian Hölz graphics, customization, grid color, axis labels, plot annotation, box color 111 7
  • 3.5
3.5 | 3 ratings
21 Jan 2009 plotLDS Enhance zooming and panning on large data sets by automatically downsampling data Author: Sebastian Hölz data exploration, timeseries, plot, large, set, data 76 1
21 Jan 2009 Callback Stack Easy way to add multiple callbacks to objects, which support callback-functions (e.g. HG objects) Author: Sebastian Hölz graphics, multiple, multiple callbacks, graphical data, data exploration 7 0
16 Apr 2007 Screenshot cline Draw a colored line in 2D or 3D Author: Sebastian Hölz graphics, colored, line, plotting, specialized, 3d 39 0
  • 5.0
5.0 | 1 rating
16 Feb 2007 Screenshot Curve Intersect 2 Finds the intersection points between two arbitrary polygons. Author: Sebastian Hölz intersection, polygon, line, curve 78 10
  • 5.0
5.0 | 10 ratings
Comments and Ratings by Sebastian View all
Updated File Comments Rating
10 Jun 2009 gridcolor Change color of grid lines without changing color of axis labels or box Author: Sebastian Hölz In reply to Joanne Hung and Nitika: 
It seems that my update did not make it to the FEX. I have just posted a new version (0.99), which removes the mentioned bugs. 
 
Furthermore, this version also removes all previous restrictions and should now fit nicely into the general Matlab framework. I would recommend everyone with old versions to update, once the new version has been uploaded. 
 
Cheers 
Sebastian
24 Feb 2009 FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle Author: Yair Altman Another suggestion (valid for Matlab 7.5): 
 
If you want to inspect the Editor-container, you will need to change lines 175-176 from 
 
origContainer = container; 
contentSize = [container.getWidth, container.getHeight]; 
 
to 
 
origContainer = container; 
if strcmp(container.getName,'Editor'); 
   container=container.getInternalFrame;  
end 
contentSize = [container.getWidth, container.getHeight]; 
 
Sebastian 
20 Feb 2009 FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle Author: Yair Altman Info for MATLAB 7.5. 
An inconsistency in uitreenode.m (%MATLAB%\toolbox\matlab\uitools\uitreenode.m) prevents "findjobj" to work properly. You have to change the first line in "uitreenode.m" from ... 
 
  function node = uitreenode(value, string, icon, isLeaf) 
 
... to ...  
  function node = uitreenode(dummy,value, string, icon, isLeaf) 
 
... , then everything initializes just fine. 
 
After fixing that, it's SWEET! I've just spend hours and hours writing down the hirarchy of objects and was just starting to think, how nice it would be to have everything at hand in "file"-browser ... well, you know it: it's all on the FEX, ... somewhere ... 
 
Thanks,  
 
Sebastian 
18 Feb 2009 Geodetic Toolbox Toolbox for angle, coordinate and date conversions and transformations. Version 2.92a. Author: Mike Craymer There is a potential bug in function ell2UTM, which may lead to wrong results in the calculated northing, if the funciton is called with a vector containing coordinates from both southern and northern hemisphere. Change lines 23-27, which read ... 
 
if lat>=0 
  No=0;  
else 
  No=10000000;  
end 
 
to ... 
 
No(size(lat))=0; % False northing (north) 
No(lat<0) = 1e7; % False northing (south) 
 
Sebastian
11 Feb 2009 Manage and Dock Figures into Group SETFIGDOCKED allows docking figures at specified positions in group of figures whose structure is Author: Anh Huy Phan SWEET !!! 
Great job. I've been searching the Matlab Java Archives for the appropriate objects/methods/properties for (almost) years and just could not find them. The docking of figures into seperate containers is a great way to organize your work-flow, if you have lots of figures to work with at the same time and don't want to get lost. I'll highly recommend to look into this ...
Comments and Ratings on Sebastian's Files View all
Updated File Comment by Comments Rating
10 Jun 2009 gridcolor Change color of grid lines without changing color of axis labels or box Author: Sebastian Hölz Hölz, Sebastian In reply to Joanne Hung and Nitika: 
It seems that my update did not make it to the FEX. I have just posted a new version (0.99), which removes the mentioned bugs. 
 
Furthermore, this version also removes all previous restrictions and should now fit nicely into the general Matlab framework. I would recommend everyone with old versions to update, once the new version has been uploaded. 
 
Cheers 
Sebastian
04 Jun 2009 gridcolor Change color of grid lines without changing color of axis labels or box Author: Sebastian Hölz Nitika Sebastian, I just downloaded your function file and still have the problem that Joanne is mentioning. I have MatlabR2008a.
06 Mar 2009 Curve Intersect 2 Finds the intersection points between two arbitrary polygons. Author: Sebastian Hölz Damir It is an excelent job, however I found a bug. The function finds wrong intersection, if one of the curves is almost vertical. Please try this:  
x1=[0.1 0.1+1e-17]  
y1=[-1 1]  
x2=[-1 1]  
y2=[-1 1]  
[x,y]=curveintersect(x1,y1,x2,y2)  
plot(x1,y1,'k',x2,y2,'b:',x,y,'ro')  
02 Dec 2008 Polygon Clipper Given two arbitrary polygons, the routine calculates the resulting polygon ... Author: Sebastian Hölz Stanley Very good.
17 Nov 2008 Curve Intersect 2 Finds the intersection points between two arbitrary polygons. Author: Sebastian Hölz Guerrero Mosquera, Carlos Excellent job!! Thanks!
Top Tags Applied by Sebastian
graphics, annotation, data, data exploration, 2d
Files Tagged by Sebastian View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
10 Jun 2009 Screenshot gridcolor Change color of grid lines without changing color of axis labels or box Author: Sebastian Hölz graphics, customization, grid color, axis labels, plot annotation, box color 111 7
  • 3.5
3.5 | 3 ratings
21 Jan 2009 plotLDS Enhance zooming and panning on large data sets by automatically downsampling data Author: Sebastian Hölz data exploration, timeseries, plot, large, set, data 76 1
21 Jan 2009 Callback Stack Easy way to add multiple callbacks to objects, which support callback-functions (e.g. HG objects) Author: Sebastian Hölz graphics, multiple, multiple callbacks, graphical data, data exploration 7 0
16 Apr 2007 Screenshot cline Draw a colored line in 2D or 3D Author: Sebastian Hölz graphics, colored, line, plotting, specialized, 3d 39 0
  • 5.0
5.0 | 1 rating
04 Oct 2006 Screenshot Polygon Clipper Given two arbitrary polygons, the routine calculates the resulting polygon ... Author: Sebastian Hölz difference, union, polygon, linear algebra, xor, and 56 9
  • 4.625
4.6 | 8 ratings

Public Submission Policy

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Disclaimer prior to use.

Contact us at files@mathworks.com