Promblem switch show between 2 static text in matlab GUI
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Adisorn Phanukthong
il 14 Giu 2017
Risposto: Walter Roberson
il 14 Giu 2017
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/165143/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/165144/image.png)
but N and A show Do not display the value sent, but it will display the last value.
if cellfun(@(x)x == 'A',status)
disp('No')
%
% handles.texta
%
set(handles.texta,'String','A');
set(handles.texta,'visible','on');
set(handles.textn,'visible','off');
else if cellfun(@(x)x == 'N',status)
disp('YES')
set(handles.textn,'String','N');
set(handles.textn,'visible','on');
set(handles.texta,'visible','off');
end
end
0 Commenti
Risposta accettata
Walter Roberson
il 14 Giu 2017
I suspect that your code
if cellfun(@(x)x == 'A',status)
should be more like
if strcmp(status{1}, 'A')
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Environment and Settings in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!