how to store values of a variable in array and store the array in a file in gui

2 visualizzazioni (ultimi 30 giorni)
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

Risposte (1)

Joseph Cheng
Joseph Cheng il 20 Giu 2014
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 Commenti
puja dutta
puja dutta il 20 Giu 2014
Modificato: puja dutta il 20 Giu 2014
i tried but i am not gettin.i used
savefile='puja.mat';
save(savefile,'handles.f')
in pushbutton but it shows error
handles.f is not a variable name
Joseph Cheng
Joseph Cheng il 20 Giu 2014
Modificato: Joseph Cheng il 20 Giu 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.

Accedi per commentare.

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by