File Exchange Pick of the Week

March 6th, 2009

GUI Layout (Part 5)

Jiro's pick this week is EasyGUI by a fellow MathWorker, Gautam.

function potw_easygui()

This is a continuation of our GUI series:

The last week's pick (Part 4) significantly simplified the programmatic layout process by providing simple control for the placement and size of the graphical components. EasyGUI takes it to the next level so that you don't need to worry about the layout at all. Sometimes, you just want a functional GUI with the graphical controls in the "right" place.

EasyGUI is implemented using the MATLAB Class System. GUIs lend itself to object-oriented programming, because you can think of graphical components as objects.

Let's take a look at an example. I want to create a pedagogical GUI that shows how a damped mass-spring system behaves. Here are the controls that I want:

  • Slider to manipulate the mass
  • Slider to manipulate the spring stiffness
  • Slider to manipulate the damping coefficient
  • Edit box to change the initial position
  • Edit box to change the initial velocity
  • Push button to "Simulate"

This is how I would create it using EasyGUI:

% Main GUI window (with auto layout)
mygui = gui.autogui;
mygui.Position.width = 550;     % Set the width of GUI

% Mass with min of 1 and max of 10
param.mass = gui.slider('Mass:', [1 10], mygui);
param.mass.Value = 5;           % Set initial value

% Spring stiffness with min of 0 and max of 20
param.spring = gui.slider('Spring Stiffness:', [0 20], mygui);
param.spring.Value = 10;        % Set initial value

% Damping with min of -5 and max of 10
param.damping = gui.slider('Damping Coefficient:', [-5 10], mygui);
param.damping.Value = 1;        % Set initial value

% Initial Position
param.iX = gui.editnumber('Initial Pos:', mygui);
param.iX.Value = 3;             % Set initial value
param.iX.LabelLocation = 'left';
param.iX.LabelAlignment = 'right';

% Initial Velocity
param.iV = gui.editnumber('Initial Vel:', mygui);
param.iV.Value = 0;             % Set initial value
param.iV.LabelLocation = 'left';
param.iV.LabelAlignment = 'right';

% Simulate Button
param.simulate = gui.pushbutton('Simulate', mygui);

% Create Subplots
param.ax(1) = subplot(2,1,1);
param.ax(2) = subplot(2,1,2);

Notice that each block of commands corresponds to a GUI component, and the properties that I defined were straight-forward. But more importantly, I didn't need to worry about the layout. The commands automatically placed the components in the order that they were created.

Now, we can assign a function to be evaluated for the push button. I pass in param (which is a structure containing the GUI component object) as an additional input to the function.

% Assign Callback
param.simulate.ValueChangedFcn = @(obj) runSimulation(obj, param);

runSimulation.m simply integrates the ODE using the parameters specified in the GUI and plots the results

function runSimulation(obj, param)
% Integrate for 30 seconds using ODE45
[t, y] = ode45(@(t, x) msdSystem(t, x, param), ...
  0:.1:30, [param.iX.Value, param.iV.Value]);

% Plot position and velocity
axes(param.ax(1));
plot(t, y(:,1), 'LineWidth', 2);
xlabel('Time (sec)');
ylabel('Position');

axes(param.ax(2));
plot(t, y(:,2), 'LineWidth', 2);
xlabel('Time (sec)');
ylabel('Velocity');

msdSystem.m is the 2nd-order ODE for the damped mass-spring system:

function dy = msdSystem(t, y, param)
% Parameters
m = param.mass.Value;
k = param.spring.Value;
b = param.damping.Value;

% System of linear equations for a damped mass-spring system
dy(1,1) = y(2);
dy(2,1) = 1/m * (-k*y(1) - b*y(2));

If I click on "Simulate", then I get this:

Try it out

There's so much more to this great tool. What I showed was an auto-layout option, where you let the tool determine the placement of components, but it also allows you to manually control the placement. It has a very detailed PDF documentation as well as a number of example files.

Give it a try and you'll be building sophisticated GUIs in no time.

Comments?


Get the MATLAB code

Published with MATLAB® 7.8

Leave a Reply

Wrap code fragments inside <pre> tags, like this:

<pre class="code">
a = magic(3);
sum(a)
</pre>

If you have a "<" character in your code, either follow it with a space or replace it with "&lt;" (including the semicolon).


Bob, Brett & Jiro share their favorite user-contributed submissions from the File Exchange.

  • Zach: Hi Doug and Les, I didn’t have a lot of time to mess with this, but I did find a work-around. I plotted...
  • hamed: k
  • Les: @Zach This isn’t exactly what you are looking for but at least it puts all three parameters on the same...
  • Zach: Thanks for your suggestions Doug. I’ll give that a shot and see what happens. I’ve seen many of...
  • Doug: @Zach, I would say to use plotYYY, because that is close to what you want, but using depth as Y makes sense....
  • Doug: @Teja, I think this will work: http://www.mathworks .com/access/helpdesk /help/techdoc/ref...
  • Gify: merry christmas :) nice christmas tree! Regards, Janet Gify
  • Teja: Dear Doug Is there anyway to plot a surface from nonuniform data without meshgrid and griddata? Basically i...
  • Zach: I’m working with geophysical data, so I’d like to produce a depth profile. The y-axis would be...
  • Doug: @Ashok First, please do not use variable names that are MATLAB commands (std and mean). Second, p(j) should be...

These postings are the author's and don't necessarily represent the opinions of The MathWorks.