how to store values of a variable in array and store the array in a file in gui
Afficher commentaires plus anciens
here is my code function Keyup_set
x1=0; x2=0; x3=0; f=0;
h = figure;
set(h,'KeyPressFcn',@KeyDownCb,'KeyReleaseFcn',@KeyUpCb)
tic;
function KeyDownCb(~,evnt)
out = sprintf('Key: %s\n',evnt.Key);
disp(out)
x1=toc;
f=x1-x2;
disp(f)
end
function KeyUpCb(~,evnt)
x2=toc;
x3=(x2-x1);
disp(x3)
end
end
i have implemented this code in gui.Everytime i run this code, i need 9 values of f and x3.and i want to store all values of f and x3 in a array and store the array in a file using gui(using pushbutton how can store the array in file) .please help me
Réponses (1)
Joseph Cheng
le 20 Juin 2014
0 votes
you will need to call the function save() in the pushbutton callback. The documentation for save() will give you a good explanation of how to do this.
2 commentaires
puja dutta
le 20 Juin 2014
Modifié(e) : puja dutta
le 20 Juin 2014
Joseph Cheng
le 20 Juin 2014
Modifié(e) : Joseph Cheng
le 20 Juin 2014
when you put a break point before the save does handles.f exist?
if not when you create handles.f you will need to call guidata(hObject, handles); at the end of the function (before it goes back to the main gui section) to update the handles object.
or... possibly that maynot work... i just noticed that you're not using guide.
Catégories
En savoir plus sur Downloads dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!