MATLAB: How to resolve this error ?From GUI executing simulink model

simulink

I am executing a simulink model from gui, and in in the simulink model i have four blocks which send data to workspace,,,am getting thisa error,,how to overcome this?
Error using FinalTest/pushbutton2_Callback (line 41) Cannot create variable 'speed' in workspace
Caused by: Error using FinalTest/pushbutton2_Callback (line 41) Attempt to add "speed" to a static workspace. See MATLAB Programming, Restrictions on Assigning to Variables for details.
Error while evaluating uicontrol Callback

Best Answer

Something you are doing is attempting to "poof" a variable into existance -- that is, attempting to execute a command such as eval() or evalin() or load() with no outputs, which creates a variable without an explicit assignment statement having appeared for the variable. Or, you are trying to run a script from within a function and the script tries to assign values. In some kinds of functions (the better kind), that is an error. The best solution is not to poof at all. In the case of scripts being run from functions, rewrite the scripts as functions that return the values back, or at the very least assign every variable a value before running the script.