Posts Tagged ‘example’
A GUI to Set Simulink Model Parameters Example 2
May 2nd, 2010 No Comments Posted in Examples
Running the Simulation from the GUI
The GUI Simulate and store results button callback runs the model simulation and stores the results in the handles structure. Storing data in the handles structure simplifies the process of passing data to other subfunction since this structure can be passed as an argument. Read More
Tags: Enable, example, find_system, gui, guidata, HandleVisibility, IntegerHandle, legend, list box, matlab, model_open, open_system, Parent, plot, Running Simulation, set_param, sim, Simulate, simulation, simulink, str2double, web
Matlab Defining Classes — Syntax
April 23rd, 2010 No Comments Posted in Documents
classdef Syntax
Class definitions are blocks of code that are delineated by the classdef keyword at the beginning and the end keyword at the end. Files can contain only one classes definition. Read More