GUI problem with code
現在この質問をフォロー中です
- フォローしているコンテンツ フィードに更新が表示されます。
- コミュニケーション基本設定に応じて電子メールを受け取ることができます。
エラーが発生しました
ページに変更が加えられたため、アクションを完了できません。ページを再度読み込み、更新された状態を確認してください。
0 投票
2 件のコメント
採用された回答
Neha - without your figure file, we cannot run the GUI and so cannot step through the code (with the debugger) to see what is happening...or observe any errors in the console. Have you seen any errors and, if so, what are they?
Looking at your buttonPress function, I noticed the following
if get(handles.whoseTurn, 'String') == 'x'
set(hObject,'String') = 'x';
set(handles.whoseTurn, 'String') = 'o';
else
set(hObject,'String') = 'o'
set(handles.whoseTurn,'String') = 'x' ;
%still need to update turn information data
end
When comparing strings, the == will generally fail when your strings are of different lengths and so you will see an error like
Error using == Matrix dimensions must agree.
To avoid this, use strcmp or strcmpi as
if strcmpi(get(handles.whoseTurn, 'String'), 'x') % do something else % do something else end
And, when setting the (edit) text control, you need to pass in the value rather than using the assignment operator =. So the line
set(hObject,'String') = 'x';
which will generate an error, should become
set(hObject,'String', 'x');
Please try fixing these bugs and re-run your code. If you observe any further errors, please copy and paste the full error message (the red text) to this question.
13 件のコメント
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で App Building についてさらに検索
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Web サイトの選択
Web サイトを選択すると、翻訳されたコンテンツにアクセスし、地域のイベントやサービスを確認できます。現在の位置情報に基づき、次のサイトの選択を推奨します:
また、以下のリストから Web サイトを選択することもできます。
最適なサイトパフォーマンスの取得方法
中国のサイト (中国語または英語) を選択することで、最適なサイトパフォーマンスが得られます。その他の国の MathWorks のサイトは、お客様の地域からのアクセスが最適化されていません。
南北アメリカ
- América Latina (Español)
- Canada (English)
- United States (English)
ヨーロッパ
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
