Code covered by the BSD License  

Highlights from
CTMSIM - an interactive freeway traffic macrosimulator

image thumbnail
from CTMSIM - an interactive freeway traffic macrosimulator by Alex Kurzhanskiy
Freeway traffic simulation based on Asymmetric Cell Transmission Model

aboutGUIclose()
function aboutGUIclose()
% ABOUTGUICLOSE - closes 'About' window.
%
% Last modified:   11/17/2006.

%
% Alex Kurzhanskiy   <akurzhan@eecs.berkeley.edu>
%

global g_ctmGUI;

% close GUI
shh     = get(0, 'ShowHiddenHandles');
set(0, 'ShowHiddenHandles', 'on');
currFig = get(0, 'CurrentFigure');
set(0, 'ShowHiddenHandles', shh);
delete(currFig);

g_ctmGUI.isStopped = 1;

return;

Contact us at files@mathworks.com