views:

97

answers:

1

Hi is there anything i can do with code in matlab for digital image processing that i can't do with simulink's digital image processing toolbox or vice versa??? what difference is there between the two ?

thank you

+1  A: 

At the code level, there's not much difference between MATLAB and Simulink. Simulink provides an environment for constructing programs at a higher level of abstraction than text; the relationships that hold between code blocks is represented as arrows that pass between flowchart objects. You can then visualize the system as it operates at runtime, as data objects are passed visibly between the flowchart blocks. Simulink also lets you alter a part of the program in real time, so that you can see the effects of the local change without having to stop everything else.

estanford

related questions