Filter löschen
Filter löschen

Why do I get an error message when I questdlg function

2 Ansichten (letzte 30 Tage)
Sara
Sara am 15 Jun. 2021
Kommentiert: Sara am 15 Jun. 2021
Hi,
I got an error message in my code that occurs this morning.
I use questdlg in my code which was fine yesterday, but this morning I got an error message, as shown in the image below.
Does anyone know how to overcome this issue? Because yesterday was working fine but this morning is not working !!!
Thank you
  4 Kommentare
KSSV
KSSV am 15 Jun. 2021
Copy and paste code here.....attaching as image will not help us.
Sara
Sara am 15 Jun. 2021
Okey
The erro in my code in this part
answer1 = questdlg('Strained Method?', ...
'Options',...
'Expanded strain at the facet','Compressed strain at the facet','');
This was fine yesterday, but today is changing, I do not know, is it MATLAB change the function or something
questdlg function debug is there
if ~DefaultValid
warnstate = warning('backtrace','off');
warning(message('MATLAB:questdlg:StringMismatch'));
warning(warnstate);
end

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Chunru
Chunru am 15 Jun. 2021
Add the default button (last argument) to be one of the specified buttons:
answer1 = questdlg('Strained Method?', ...
'Options',...
'Expanded strain at the facet','Compressed strain at the facet','Expanded strain at the facet');

Weitere Antworten (0)

Kategorien

Mehr zu Dialog Boxes finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by