Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

I'm having trouble using MsgBox.

1 visualizzazione (ultimi 30 giorni)
Muhendisleksi
Muhendisleksi il 20 Apr 2017
Chiuso: MATLAB Answer Bot il 20 Ago 2021
kontrl = -4.796163466380676e-14
if -0.001<=kontrl & kontrl>=0.001
h=msgbox({'Dengeli Ölçülerin Denetimi' 'BAŞARILI!!!'},...
'Kontrol','custom',myicon);
elseif errordlg({'Dengeli Ölçülerin Denetimi' ' HATALI!!!'},'Hata');
end
"Conversion to logical from matlab.ui.Figure is not possible." I get this error.
  2 Commenti
Walter Roberson
Walter Roberson il 20 Apr 2017
What is class(myicon) ?
Also, please put in a breakpoint at the "if" and query class(kontrl)
Muhendisleksi
Muhendisleksi il 20 Apr 2017
"Myicon" is the photo.

Risposte (1)

Greg
Greg il 20 Apr 2017
elseif errordlg({'Dengeli Ölçülerin Denetimi' ' HATALI!!!'},'Hata');
I believe you wanted:
else
errordlg({...},'Hata');
  2 Commenti
Greg
Greg il 20 Apr 2017
Which also means you aren't having any trouble using MsgBox as your question title states. You're having trouble using elseif.
Muhendisleksi
Muhendisleksi il 20 Apr 2017
I still have the same problem.

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by