| Date | File | Comment by | Comment | Rating |
|---|---|---|---|---|
| 17 Nov 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | bocovp | ||
| 08 Nov 2009 | PlotData - display plot raw-data in data-tables Displays raw data of figure plots in separate spreadsheet tables | Shimoni, Raz | ||
| 06 Nov 2009 | FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle | James | thx |
|
| 03 Nov 2009 | SoundVolume - set or get the system speaker sound volume SoundVolume sets or gets the computer system's speaker sound volume, using Java | Nguyen, D | I used this to integrate it with a GUI slider to control the system volume. Worked great! Had to slightly modify te code..
|
|
| 03 Nov 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | Millo, A | ||
| 11 Oct 2009 | ScrollPlot - scrollable X/Y axes ScrollPlot adds a scroll sub-window to any supplied plot handles. | zao, leo | Hello!
|
|
| 11 Oct 2009 | ScrollPlot - scrollable X/Y axes ScrollPlot adds a scroll sub-window to any supplied plot handles. | zao, leo | ||
| 08 Oct 2009 | statusbar set/get status bar(s) for GUI figures & Matlab desktop | Queffurust, Aurelien | Tested in R2009b, it works perfectly, the function is really well documented . I used all the customization (toollip, background ...)
|
|
| 06 Oct 2009 | EditorMacro - assign a macro to a keyboard key-stroke in the Matlab Editor and Command Window EditorMacro assigns a macro or action to requested key-binding in the Matlab Editor & Command Window | Pudeyev, Andrey | Great work, just the very thing I missed in a matlab interface - a customizable macro. Summarizing the examples of posted here, i propose the following solution for exception management:
modifiedText = ['try' char(13) selectedText char(13) 'catch' char(13) 'keyboard' char(13) 'end']; % Update selection in current editor
This will allow quickly put the selected text block inside try-catch construction |
|
| 06 Oct 2009 | EditorMacro - assign a macro to a keyboard key-stroke in the Matlab Editor and Command Window EditorMacro assigns a macro or action to requested key-binding in the Matlab Editor & Command Window | Pudeyev, Andrey | ||
| 30 Sep 2009 | Java-based data table Spreadsheet display/editing/sorting of data with multiple features | Hans | Hello Yair, hello Jeffrey, I still appreciate the createTable() function, but honestly it took me some time to make it work with the new uitable() call using the r2009a release. My problem was NOT inserting 'vo' to modify the line ..
This got immediately solved when I set the visibility of the figure to 'on' before using the createTable() call. It seems like some parent/child objects needed by createTable() cannot be found when the figure is invisible. I never had this problem with the old r2007a release. Anyway, it now works for me (hopefully for others to) and the modifications to Yair's createTable.m-code were less than tiny. Thanks again Yair for your work. |
|
| 29 Sep 2009 | FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle | Woodford, Oliver | Great function. The interactive display is a brilliant feature. |
|
| 29 Sep 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | Frank, Florian | This is a great little tool! Thank You! |
|
| 23 Sep 2009 | Convert a vector/array/matrix of values into a comma-separated string Converts input of unknown size/type into compact single-line string suitable for log files & uitable | Hunter, Courtney | I am having REAL trouble because Matlab doesn't recognize the 'vec2str' character. I am trying to create a function that takes a vector of length N^2 and convert it to a corresponding NxN matrix. I will later input the size of N, but for now I need to convert a vector of size N to a matrix of size NxN. Please help! |
|
| 17 Sep 2009 | ScrollPlot - scrollable X/Y axes ScrollPlot adds a scroll sub-window to any supplied plot handles. | shalom, almog | Forgot the rating ... |
|
| 11 Sep 2009 | ScrollPlot - scrollable X/Y axes ScrollPlot adds a scroll sub-window to any supplied plot handles. | Altman, Yair | Almog - The warnings can be eliminated by typing: warning off MATLAB:HandleGraphics:ObsoletedProperty:JavaFrame I'll add it to a new version when I get to it, but in the meantime you can simply add this to your startup.m file or your Matlab Command Window. It has no negative effect. אשמח אם תוכל להקדיש רגע להזין רייטינג :-) |
|
| 09 Sep 2009 | ScrollPlot - scrollable X/Y axes ScrollPlot adds a scroll sub-window to any supplied plot handles. | shalom, almog | Nice.
Warning: figure JavaFrame property will be obsoleted in a future release. For more information see
(with a link to http://www.mathworks.com/support/contact_us/dev/javaframe.html ) |
|
| 28 Aug 2009 | ScrollPlot - scrollable X/Y axes ScrollPlot adds a scroll sub-window to any supplied plot handles. | Tim | A version that would link scrolling across subplots would be very cool. |
|
| 26 Aug 2009 | EditorMacro - assign a macro to a keyboard key-stroke in the Matlab Editor and Command Window EditorMacro assigns a macro or action to requested key-binding in the Matlab Editor & Command Window | Altman, Yair | For those interested, a set of EditorMacro macro functions has been submitted by Perttu Ranta-aho. The submission is called "TextTools" and can be found here: http://www.mathworks.com/matlabcentral/fileexchange/25122 |
|
| 24 Aug 2009 | enable/disable figure enable/disable an entire figure window | Cem | Yair,
|
|
| 22 Aug 2009 | EditorMacro - assign a macro to a keyboard key-stroke in the Matlab Editor and Command Window EditorMacro assigns a macro or action to requested key-binding in the Matlab Editor & Command Window | Ozgur, Ustun | EditorMacro('Alt-x', 'try\n % Main code here\ncatch\n % Exception handling here\nend'); does not work in OS X with Matlab R2008b. EditorMacro('Meta x', 'try\n % Main code here\ncatch\n % Exception handling here\nend'); works however. |
|
| 20 Aug 2009 | Java-based data table Spreadsheet display/editing/sorting of data with multiple features | Jeffrey | Hey Yair, Can you update this for the new uitable? Thanks! |
|
| 11 Aug 2009 | FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle | Patrick | I made a slider using GUIDE; its handle is hSlider.
Then I tried this with MATLAB 2009a, findjobj returned empty!
What did I do wrong? |
|
| 07 Aug 2009 | FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle | Hasnan, Saidul | Why do I get this error whenever i tried findjobj; ??? findjobj: Undefined function or variable "jcb". I have the latest version of findjobj file. |
|
| 02 Aug 2009 | FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle | Boris | ||
| 24 Jul 2009 | statusbar set/get status bar(s) for GUI figures & Matlab desktop | Altman, Yair | JavaFrame has no alternative. If and when it is discontinued in some future version we shall try to look for alternatives. Until then simply ignore this error by typing: warning off MATLAB:HandleGraphics:ObsoletedProperty:JavaFrame Note that even if some future version discontinues JavaFrame, it will still continue to work properly on all prior Matlab versions (including your current version). If you find JavaFrame to be useful for your needs, please consider letting MathWorks know about this in the webpage they dedicated for just this purpose: http://www.mathworks.com/support/contact_us/dev/javaframe.html |
|
| 24 Jul 2009 | statusbar set/get status bar(s) for GUI figures & Matlab desktop | Gianoli, Stefano | Very nice implementation. Though I receive this warning message.: Warning: figure JavaFrame property will be obsoleted in a future release. For more information see the JavaFrame
I am using MATLAB Version 7.6.0.324 (R2008a) Is there an alternative to JavaFrame function that will be supported in future releases? |
|
| 23 Jul 2009 | OfficeDoc - read/write/format MS Office docs (XLS/DOC/PPT) Read/write/append/format/display data, images & screenshots in MS Office documents (XLS/DOC/PPT) | T, Anthony | ||
| 21 Jul 2009 | FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle | Hopkins, Jesse | I've actually solved my problem. After reading this page: http://undocumentedmatlab.com/blog/uicontrol-callbacks/,
In summary:
now:
|
|
| 21 Jul 2009 | FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle | Hopkins, Jesse | I've been using this file for about a year now (great work Yair!), and a very weird issue has crept up now that I've upgraded from R2007b to R2008b. What happens to me is that I have a few custom java-objects instantiated (they are a modified version of the java-swing table), with userdata and function callbacks associated with them via calls like: set(myTableObj,'MouseReleasedCallback',@callbackfcn);
After findjobj returns, all of the userdata and callbacks have been cleared out. I've stepped through findjobj line by line, and cannot find a culprit. In fact, when I get to the "return" line on 279, the userdata and function callbacks are still properly associated with the java-objects. However, once findjobj returns, all userdata and function callbacks of my java-objects are cleared to an empty matrix. Any thoughts on this? |
|
| 20 Jul 2009 | EditorMacro - assign a macro to a keyboard key-stroke in the Matlab Editor and Command Window EditorMacro assigns a macro or action to requested key-binding in the Matlab Editor & Command Window | Julien | Excellent work indeed, thank you very much for sharing this very useful and powerful function.
|
|
| 05 Jul 2009 | FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle | Altman, Yair | @Leonardo - FindJObj does not enable modifying the displayed object hierarchy - perhaps I will add this feature in a future version. You need to update the hierarchy outside FindJObj and then click on the <Refresh Tree> button. |
|
| 04 Jul 2009 | EditorMacro - assign a macro to a keyboard key-stroke in the Matlab Editor and Command Window EditorMacro assigns a macro or action to requested key-binding in the Matlab Editor & Command Window | HAN, Qun | WOW! |
|
| 03 Jul 2009 | FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle | Glavina, Leonardo | Great file! i just have one doubt using it: if I can chance the order of some structures. I have some check boxes and using 'tab' to select them is completely out of order, and using this function I found that it's following the specific order that is on the tree. So, can I change the place of my tree's items? thanks for the code |
|
| 03 Jul 2009 | EditorMacro - assign a macro to a keyboard key-stroke in the Matlab Editor and Command Window EditorMacro assigns a macro or action to requested key-binding in the Matlab Editor & Command Window | Shen, Jackson | I have tried again today. It "magically" works.
|
|
| 02 Jul 2009 | EditorMacro - assign a macro to a keyboard key-stroke in the Matlab Editor and Command Window EditorMacro assigns a macro or action to requested key-binding in the Matlab Editor & Command Window | Shen, Jackson | Exellent Work. It works with R2009A (Trial).
|
|
| 18 Jun 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | Mike | ||
| 18 Jun 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | Mike | There seems to be another bug, this one involving the '%' character. For example, cprintf( 'keyword', '%% keyword\n' ) merely turns the command prompt (double chevron) blue, rather than printing '% keyword' and a newline character. fprintf( '%% keyword\n' ), on the other hand, prints just what you would expect. |
|
| 08 Jun 2009 | ScrollPlot - scrollable X/Y axes ScrollPlot adds a scroll sub-window to any supplied plot handles. | saucer, joe | Yair, i have a string of data and i want to look at it very close up.. and also want to scroll, but because of the close up specifications, i cant scroll because i cant get the mid blue pane |
|
| 04 Jun 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | Altman, Yair | @Karl - this is a corollary of the known issue with non-newline-terminated strings. In this case, the initial fprintf() was non-newline-terminated, getting cprintf confused... A workaround for this case is to simply use cprintf for the initial black text, instead of fprintf: cprintf('text', 'Here: ');
|
|
| 04 Jun 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | Karl | This is great! I wish Matlab documented its Java innards better. Anyway, there seems to be another small bug. fprintf('Here: ')
results in a blue underscore followed by the word 'Blue' in white (invisible on white background of my command window - but shows up when highlighted). However, the same code as above, only using '-blue' instead of 'blue', works fine (gives the expected underlined blue text). I'm using Matlab 2007b on a Linux box. |
|
| 03 Jun 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | B, Alan | ||
| 02 Jun 2009 | ScreenCapture - get a screen-capture of a figure frame or component ScreenCapture gets a screen-capture of any Matlab GUI handle, or specified screen area rectangle | us | a very nice robot, which the FEX community has been looking for a long time...
% input
3) in principle, the robot itself can be used on any screen location; it would be nice - however, admittedly cumbersome - to add this feature us |
|
| 27 May 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | Altman, Yair | yes Petter - this is a known limitation of CPRINTF that is mentioned in its help section as well as the TODO list (at the bottom of the file). Unfortunately, it seems that if there is no space separator, then Matlab attempts to combine the adjacent style segments, thereby overrunning the first segment's style with the second's. Adding a separator solves this. If anyone finds a workaround I'll be happy to hear. Until then it's a small price to pay... |
|
| 27 May 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | Petter | OK, I now think that may be required. |
|
| 27 May 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | Petter | The function prints an extra white space after each string. Example: str = 'Welcome!';
results in:
|
|
| 25 May 2009 | Java-based data table Spreadsheet display/editing/sorting of data with multiple features | laurent | ||
| 22 May 2009 | SYSTRAY - set/get system-tray icons on your computer's desktop sets icons in the system-tray of your computer's desktop & enables setting/getting icon properties | Petter | The submission should be updated to fix the above mentioned problem. |
|
| 22 May 2009 | FindJObj - find java handles of Matlab graphic objects Find java objects contained within a specified java container or Matlab GUI handle | HAN, Qun | Great work, Yair! I have refferenced it in my spaces.
|
|
| 15 May 2009 | cprintf - display formatted colored text in the Command Window Displays sprintf-formatted strings in the Command Window using the specified color/underline style | Petter | I did not know this was possible |
|
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