|
"Jane " <j.l.terry@hotmail.co.uk> wrote in message <hcprd1$1fp$1@fred.mathworks.com>...
> "Matt Fig" <spamanon@yahoo.com> wrote in message <hcppve$m5$1@fred.mathworks.com>...
> > I have written many GUIs that are primarily used by others. What is the problem with that, as long as the GUIs are well written?
>
> Nothing at all. GUI's are very good tools. I'm in the process of developing one now for the company.
>
> When I mentioned code being developed for me to use I was referring to the m-files I have written to control a sequence of about 15 functions where I was altering their parameters and the sequence they operated in to find the optimal combination. It was a mess!
>
> I guess what I was primarily looking for was information on whether SIMULINK offers a more dynamic and useful system for protyping than creating a GUI offers.
>
> I have not used simulink before and was wondering if the benifits were worth investing the time to learn how to use it.
Simulink is The MathWorks tool for Model-Based Design. It has many features to help managing a project going form an idea, the algorithm design in simulation and finally to generating C code that will run in real time on embedded processor.
So it depends on what you really need. Simulink is made to simulate systems response over time using an ODE solver. You give input signals and conditions, set parameters, you simulate and see how it behaves.
Personally I always understand better an algorithm when it is implemented graphically in Simulink (using subsystems in a logical way that fits with the real physical system to be simulated) than in code.
|