필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
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)')

채택된 답변

KL
KL 2017년 11월 20일
use get,
S = str2double(get(editBoxHandle, 'string'))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by