Search Comments and Ratings

go

Comments and Ratings

   
Date File Comment by Comment 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

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 Hölz, Sebastian

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 Hölz, Sebastian

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 Hölz, Sebastian

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 Hölz, Sebastian

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 ...

 

MATLAB Central Terms of Use

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 Terms prior to use.

Contact us at files@mathworks.com