Rank: 187 based on 294 downloads (last 30 days) and 11 files submitted
photo

Sebastian Hölz

E-mail
Company/University
GEOMAR

Personal Profile:
Professional Interests:

 

Watch this Author's files

 

Files Posted by Sebastian View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
25 Jan 2012 Copy / Clone method for handle and hgsetget class Enable deep copying of child objects of classes handle or hgsetget Author: Sebastian Hölz deep copy clone hgset... 11 0
12 May 2011 Coordinate Extractor Extract geographic coordinate(s) out of string(s). Author: Sebastian Hölz coordinate string dou... 0 0
10 Jun 2009 Screenshot gridcolor Change color of grid lines without changing color of axis labels or box Author: Sebastian Hölz annotation, customization, grid color, axis labels, box color, graphics 37 15
  • 3.0
3.0 | 8 ratings
21 Jan 2009 plotLDS Enhance zooming and panning on large data sets by automatically downsampling data Author: Sebastian Hölz data exploration, data, large, plot, set, timeseries 3 3
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 data exploration, multiple callbacks, graphics, multiple, graphical data 2 0
Comments and Ratings by Sebastian View all
Updated File Comments Rating
17 Jan 2012 plotLDS Enhance zooming and panning on large data sets by automatically downsampling data Author: Sebastian Hölz

Hello Hoi,

as the documentation says ... : "The usage is identical to the regular plot-command for VECTORS ...". So, if you have matrices, you will just have to break them apart and plot each column separately.

Cheers

Sebastian

12 May 2011 cline Draw a colored line in 2D or 3D Author: Sebastian Hölz

@Jaap:

Use the following syntax:

fig = figure;
h = cline(...);
set(h,'linewidth',5)

The increased line-width will not be displayed, if you use "painters" as renderer for your figure. Therefore, you will have to change it:

set(fig, 'renderer', 'zbuffer')

- or -

set(fig, 'renderer', 'opengl')

Cheers

Sebastian

21 Jul 2010 gridcolor Change color of grid lines without changing color of axis labels or box Author: Sebastian Hölz

hey Carey, this works fine for me ... :
>> load clown
>> imagesc(X)
>> gridcolor('w')
>> grid on
You need to be more specific with your problem. Besides ... before giving a crap rating I would spend a minute and maybe ask the author directly for help ...
Just a thought
Sebastian

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

Comments and Ratings on Sebastian's Files View all
Updated File Comment by Comments Rating
17 Jan 2012 plotLDS Enhance zooming and panning on large data sets by automatically downsampling data Author: Sebastian Hölz Hölz, Sebastian

Hello Hoi,

as the documentation says ... : "The usage is identical to the regular plot-command for VECTORS ...". So, if you have matrices, you will just have to break them apart and plot each column separately.

Cheers

Sebastian

16 Dec 2011 plotLDS Enhance zooming and panning on large data sets by automatically downsampling data Author: Sebastian Hölz Wong, Hoi

my data has multiple columns (in a matrix), which the regular plot() command or Jiro's dsplot() will draw multiple lines correctly. plotLDS() gave me this error message:

Error in ==> plotLDS at 177
h = plot([min(x) min(x) max(x) max(x)],[min(y) max(y) min(y) max(y)], ...

I'd like to use this feature in subplots, but it seems like Jiro's version doesn't support it.

24 Nov 2011 Polygon Clipper Given two arbitrary polygons, the routine calculates the resulting polygon ... Author: Sebastian Hölz Martin
30 Sep 2011 Polygon Clipper Given two arbitrary polygons, the routine calculates the resulting polygon ... Author: Sebastian Hölz Kate

Lian -- I had a similar problem when my polygons contained NaNs. After I fixed that, the problem went away. Perhaps yours is similar?

Sebastian -- Thank you very much!

06 Sep 2011 Curve Intersect 2 Finds the intersection points between two arbitrary polygons. Author: Sebastian Hölz KYAW, KYAW

Dear Sir/Madam,

I am looking for the intersection of dynamic waves and base line. SO far, I could manage to get few of the intersection points using ratio (Y data of dynamic wave/ Y data of base line) for whole of samples. Pls advise me how should I continue since I was stuck in here so long.

I used your function but mine is dynamic wave form and base straing line so the X -axis is not constant line. So the array is only (1900x1) for wave form and base line. The Y values of wave form is changing but the base line is seems like constant. Let say, there is 64 intersection points visuality but what i can get is only 47 but some are not accutare positions.

Thanks and best regards
Kyaw

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
25 Jan 2012 Copy / Clone method for handle and hgsetget class Enable deep copying of child objects of classes handle or hgsetget Author: Sebastian Hölz deep copy clone hgset... 11 0
12 May 2011 Coordinate Extractor Extract geographic coordinate(s) out of string(s). Author: Sebastian Hölz coordinate string dou... 0 0
10 Jun 2009 Screenshot gridcolor Change color of grid lines without changing color of axis labels or box Author: Sebastian Hölz annotation, customization, grid color, axis labels, box color, graphics 37 15
  • 3.0
3.0 | 8 ratings
21 Jan 2009 plotLDS Enhance zooming and panning on large data sets by automatically downsampling data Author: Sebastian Hölz data exploration, data, large, plot, set, timeseries 3 3
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 data exploration, multiple callbacks, graphics, multiple, graphical data 2 0

Contact us at files@mathworks.com