Need help with edit box in matlab gui

조회 수: 3 (최근 30일)
Cristian
Cristian 2012년 12월 6일
Hi, I have the following matlab code:
if true
h=1/n;
x=h:h:(1-h);
N=(n-1);
A=zeros(N);
b=zeros(N,1);
A=-2*eye(N)+diag(ones(N-1,1),1)+diag(ones(N-1,1),-1);
b=-h.^2.*functie(x);
v=A\b';
plot(v)
end
I take n from an edit box.
The problem is that when I run this code without gui, it works even if n is 5,10,50,100
When i put it in matlab gui, i can give n values from 1 to 9, why is that ?
I am taking the n value like this:
if true
n = get(handles.edit2,'String');
end
Thank you!

채택된 답변

Matt Fig
Matt Fig 2012년 12월 6일
n = str2double(get(handles.edit2,'String'));
  댓글 수: 1
Cristian
Cristian 2012년 12월 6일
Stupid me... works, thank you!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by