how to call number inserted in "edit text" into the formula that i have code in "push button" for GUI?

1 Ansicht (letzte 30 Tage)
PUSH BUTTON CODE
N = int; % number inserted in “edit text”
Wo = pi/5; t = -1:.001:11;
f = zeros(1,length(t));
for n = 1:2:N an = 4/(pi*n);
f = f+ an*sin(Wo*n*t);
end
plot(t,f)
axis([-1 11 -1.1 1.1])
title('GRAPH OF X(t)')
xlabel('Time')
ylabel('f(t)')

Akzeptierte Antwort

KL
KL am 20 Nov. 2017
use get,
S = str2double(get(editBoxHandle, 'string'))

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by