Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Make gui for function CROSSIT

조회 수: 1 (최근 30일)
Zaenal Alamsyah
Zaenal Alamsyah 2020년 2월 5일
마감: MATLAB Answer Bot 2021년 8월 20일
I want to make simple GUI for function CROSSIT, and already have function from https://www.sfu.ca/~ssurjano/Code/crossitm.html ,
this is my GUI test.png
and it is my crossit.m code, i want result from 'y' to result coloum. i was set handles but have problem like this :
Screenshot_1.png
this code :
function staropbutton_Callback(hObject, eventdata, handles)
angkax1 = str2num (get(handles.x1,'string'));
angkax2 = str2num (get(handles.x2,'srting'));
xx = [angkax1,angkax2]
x1 = xx(1);
x2 = xx(2);
fact1 = sin(x1)*sin(x2);
fact2 = exp(abs(100 - sqrt(x1^2+x2^2)/pi));
y = -0.0001 * (abs(fact1*fact2)+1)^0.1;
hasil=num2string(y);
set(handles.result,'string',hasil);

답변 (1개)

Jakob B. Nielsen
Jakob B. Nielsen 2020년 2월 5일
Try to read your error. "There is no 'srting' property of the 'uicontrol' class."
Does that look right to you? Its a simple typing error, and it gives you the line at which the error occurs. Type 'string' instead of 'srting', and then take the time to look at your errors yourself, first :)

Community Treasure Hunt

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

Start Hunting!

Translated by