Search Comments and Ratings

go

Comments and Ratings

   
Date File Comment by Comment Rating
10 Nov 2009 Video: GUIDE Advanced Techniques Advanced techniques in GUI building with GUIDE. Techniques include: multi-window GUIs, application. Author: Doug Hull sourabh

can anybody tell how pass data from a gui to another function as string

05 Aug 2009 Video Tutorial: MATLAB Basics: Structures of arrays vs Arrays of structures Five minute video shows the use of Structures of arrays and Arrays of structure Author: Doug Hull Call, Camron

Absolutely beautiful.

26 Jun 2009 Video Tutorial: MATLAB Basics: Cell arrays for holding different data types Three minute video shows the basics of cell arrays Author: Doug Hull Creutzfeldt, B.

14 May 2009 Video: GUIDE Basics Tutorial Five minute video about building GUIs in MATLAB. Author: Doug Hull Sesen, Berkan

24 Apr 2009 MakeColorMap Makes colormaps that smoothly blend from one color to another to optionally a third. Author: Doug Hull Stein, Thorwald

Very easy to use with good results.

15 Apr 2009 Video Tutorial: MATLAB Basics: Twelve simple widgets have their callbacks added Video, tutorial, GUI, GUIDE, widget, edit, button, slider, popup, menu, listbox, uicontrol, table, u Author: Doug Hull Yuen, Yin

helpful and quick to get things working.

05 Apr 2009 Random factoids for DataViz Contest Random facts about the dataVis contest. Semicolon usage, submission time, etc... Author: Doug Hull D'Errico, John

05 Apr 2009 Random factoids for DataViz Contest Random facts about the dataVis contest. Semicolon usage, submission time, etc... Author: Doug Hull us

04 Apr 2009 Random factoids for DataViz Contest Random facts about the dataVis contest. Semicolon usage, submission time, etc... Author: Doug Hull Fifo

01 Apr 2009 Random factoids for DataViz Contest Random facts about the dataVis contest. Semicolon usage, submission time, etc... Author: Doug Hull Butler, Tom

Way to be first.

I like your stuff. Insightful.

06 Mar 2009 Video Tutorial: MATLAB Basics: Varargin and nargin for variable inputs to functions Three minute video discusses how to use varargin and nargin to get a variable number of inputs. Author: Doug Hull Ramos, Jaime

Just what I needed to get me going at 2:30am ! =)
It's all cut to the chase and no fluff, great job Doug

Jaime

11 Feb 2009 Video: GUIDE Basics Tutorial Five minute video about building GUIs in MATLAB. Author: Doug Hull Woodford, Oliver

It's an informative video, but it would be better if we could stream the 7MB video from somewhere, rather than download and unzip a 12MB file.

06 Feb 2009 Video: Advanced MATLAB: Compiling Two and a half minute video shows how to compile a simple GUI Author: Doug Hull Herbig, Thomas

Which files do I need to add to the project - the main file only? For what purpose would I want to add additional files?

Thanks,
Tom

04 Feb 2009 Video: GUIDE Advanced Techniques Advanced techniques in GUI building with GUIDE. Techniques include: multi-window GUIs, application. Author: Doug Hull Jordan, Michael

04 Feb 2009 Video: GUIDE Basics Tutorial Five minute video about building GUIs in MATLAB. Author: Doug Hull Jordan, Michael

20 Jan 2009 Job Estimator Estimates how long a job will take on a comput cluster of various sizes Author: Doug Hull Jose

Excellent job.
Jose.

18 Jan 2009 Video tutorial: MATLAB Basics: Solving linear equations Two and a half minute video showing how to solve a system of equations in MATLAB. Author: Doug Hull Ochoa, Juan

only showed me how to create matrices, bff. NOT how to use the built in linear equation solvers.

09 Jan 2009 ZoomBox Movable, stretchable zoom box in parent axes controls axes limits in all children axes. Author: Doug Hull Marinelli, MM

Very useful!!!

Just one thing: If you use MatLab under UNIX, it is necessary to modify the "isAppData" function called by ZoomBox.m in "isappdata" (i.e: eliminate capitals from the name of the function).

01 Jan 2009 Video: Coaching: Debugging a GUI popup Fifteen minute video shows the debugging of a GUI Author: Doug Hull MArimuthu, Rajinikannan

Excellent video, which helps anybody to learn GUI part in MatLab.

26 Dec 2008 Video: GUIDE Advanced Techniques Advanced techniques in GUI building with GUIDE. Techniques include: multi-window GUIs, application. Author: Doug Hull Jveer

nevermind, tested- works.

24 Dec 2008 Video: GUIDE Advanced Techniques Advanced techniques in GUI building with GUIDE. Techniques include: multi-window GUIs, application. Author: Doug Hull Jveer

will this work if compiled? setapp(0,.. i.e saving to workspace is not compatible with compiler right?

24 Dec 2008 Weather in Boston Weather in Boston from weather.boston.com Author: Doug Hull Hull, Doug

That is an excellent question. I can not get the data that produced that example (it was yesterday, no archives are on the site). Looking at the code, I don't know why it would be wrong.

I put this in the category of ireproducible errors!

24 Dec 2008 Weather in Boston Weather in Boston from weather.boston.com Author: Doug Hull Cunningham, Tom

Uh, in the example, why is the 1883 High lower than the 1883 low? Still, it's a neat idea, I'll have to try it out! N/R till then!

& Merry Christmas!

13 Dec 2008 Video: GUIDE Basics Tutorial Five minute video about building GUIs in MATLAB. Author: Doug Hull A

Great! Thank you a lot. Very helpful for me!

25 Nov 2008 Comparing double precision numbers Two and a half minute video covers the tolerances in double precision numbers Author: Doug Hull Dalon, Thierry

The video contains not much more than the description.

See also function EPS.

12 Nov 2008 Video: GUIDE Basics Tutorial Five minute video about building GUIs in MATLAB. Author: Doug Hull Xu, Changqing

18 Oct 2008 Introduction to MATLAB by Jiro 37 minute recording of the introduction to MATLAB Seminar Author: Doug Hull sd, ram

16 Oct 2008 Save the state of a GUI between session Six minute video shows how to save and restore the state of a GUI Author: Doug Hull Dutton, Geoff

I have a comment about "Also, if someone were making a GUI programmatically, they never explicitly load a .FIG file, so the HGSAVE method would not be as applicable."

This isn't necessarily true. I can easily conceive of a programmatic GUI that, having set up a GUI and added some data to it, allows the user to save the figure (or the user can do this from the CL). When that M-file runs, it could look for the saved figure or prompt the user to identify it, and then bypass its setup code. My ListMaster example does this, more or less; it knows if the currently open figure contains data or not.

15 Oct 2008 Save the state of a GUI between session Six minute video shows how to save and restore the state of a GUI Author: Doug Hull Hull, Doug

After posting this, I poled the GUI Building Team members for their opinions. Just as here, I found that there are two camps: those that advocate HGSAVE to save a figure file and the explicit query and save technique.

HGSAVE is a simple solution, and will work for many people that are using GUIDE.

The technique I outlined also works, but does take more effort to construct and maintain. One of the advantages is that it keeps the data separate from the .FIG file used in the creation of the GUI. I find that appealing, as do many others.

Also, if someone were making a GUI programmatically, they never explicitly load a .FIG file, so the HGSAVE method would not be as applicable.

-Doug

15 Oct 2008 Save the state of a GUI between session Six minute video shows how to save and restore the state of a GUI Author: Doug Hull Dutton, Geoff

What are the use cases for this approach? One comes to mind: send the MAT-file to another user with the same GUI to synchronize or initialize for some joint project. However, this might not be so practical if data or graphs are embedded in the GUI.

I agree with Ilya that saving the GUI as a FIG-file seems more practical. That approach isn't recommended, apparently, but I don't know of any reasons not to do so. Loading the FIG-file restores the state of everything (BTW, GUIDE isn't needed for this, just a FIG-file and an M-file with the callbacks).

15 Oct 2008 Save the state of a GUI between session Six minute video shows how to save and restore the state of a GUI Author: Doug Hull Hull, Doug

Ilya,

I agree, there are advantage and disadvantages of this versus saving the fig file. For some, that might be a fine solution.

Some people like having a human readable save file. While there is more maintenance (updating the saveState and restoreState) this is a very readable and understandable method that can be customized to a great degree. Sometimes there is state associated with the GUI that is not reflected in the state of UICONTROLs.

-Doug

15 Oct 2008 Save the state of a GUI between session Six minute video shows how to save and restore the state of a GUI Author: Doug Hull R, Ilya

This doesn't seem practical if one has very complicated GUI with many widgets. Wouldn't just saving and loading .fig file be simpler?

11 Oct 2008 Video: GUIDE Basics Tutorial Five minute video about building GUIs in MATLAB. Author: Doug Hull mehta, pratik

01 Oct 2008 Video: MATLAB Basics: GUI background One and a half minute video shows how to set a background image for your GUI. Author: Doug Hull Belavadi, Bhaskar

01 Oct 2008 Video: GUIDE Basics Tutorial Five minute video about building GUIs in MATLAB. Author: Doug Hull liu, min

28 Sep 2008 Video Tutorial: Advanced Surface fitting to nonuniform data Two minute video shows how to fit a surface to nonuniform data. Author: Doug Hull Dasika, Santoah

Thank you very much for the detailed description. It helped me a lot for plotting my output.

27 Sep 2008 Introduction to MATLAB by Jiro 37 minute recording of the introduction to MATLAB Seminar Author: Doug Hull annad, mukul

hey ! i downloaded ,but unable to view it since,adobe is saying ki its a damged file.plz help me to view it

22 Sep 2008 Video Tutorial: MATLAB Basics: Reading the directory listing automatically Two minute video shows how to get a directory listing Author: Doug Hull Exports, Windsor

Steel washer, Washer, Steel plate washer, Stainless washer, Manufacturer, Fasteners, Metal washer, Steel parts washer, Steel washer from India, Exporter, steel washers, Traders, Steel washer, Maker Steel washer, Fasteners, Steel washer India, Windsor Steel washer

08 Sep 2008 Video: GUIDE Advanced Techniques Advanced techniques in GUI building with GUIDE. Techniques include: multi-window GUIs, application. Author: Doug Hull Mete, oznur

02 Sep 2008 Video: GUIDE Basics Tutorial Five minute video about building GUIs in MATLAB. Author: Doug Hull raghuwanshi, dhansingh

21 Aug 2008 Graphical tutorial: importing data from Excel Graphical tutorial of how to import data from Excel Author: Doug Hull Giglio, Daniel

very good!
It is the first time I have seen MATLAB and
you have introduced me to about 4 intergal MATLAB tools/uses in a very short time.

16 Aug 2008 Mastering Mechanics 1: Using MATLAB 5 Companion Software Author: Doug Hull mallik, krishna

15 Aug 2008 Introduction to MATLAB by Jiro 37 minute recording of the introduction to MATLAB Seminar Author: Doug Hull barragán, diego

Great Work

14 Aug 2008 Introduction to MATLAB by Jiro 37 minute recording of the introduction to MATLAB Seminar Author: Doug Hull f, farasha

This is an excellent video summaries all, I hope more videos in that area will introduced in the future

Great Work

07 Aug 2008 Video Tutorial: MATLAB Basics: How to add a table display to your GUI Four minute video discusses tables in a GUI Author: Doug Hull Chen, Henry

30 Jul 2008 Video tutorial: Practical example: Reading Excel data into MATLAB Four minute video, about reading Excel data into MATLAB Author: Doug Hull cruz, jaime

18 Jul 2008 Video Tutorial: MATLAB Basics: How to add a table display to your GUI Four minute video discusses tables in a GUI Author: Doug Hull Nagaraj, Keerthi

07 Jul 2008 Video tutorial: MATLAB Basics: Colormaps Two and a half minute video showing how to use colormaps in MATLAB Author: Doug Hull Nketia, Michael

More tutoriaks should be submitted

04 Jul 2008 Video: GUIDE Basics Tutorial Five minute video about building GUIs in MATLAB. Author: Doug Hull Yuefei, Zhang

An good example for beginner

22 Jun 2008 Video: GUIDE Advanced Techniques Advanced techniques in GUI building with GUIDE. Techniques include: multi-window GUIs, application. Author: Doug Hull T, V

thanks, it's really helpful

 

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