Very strange situation. By some reason the questdlg() does not work within a function:

5 次查看(过去 30 天)
Very strange situation. By some reason the questdlg() does not work within a function:
function = Heat_Test()
answer = questdlg('quest')
end
Got result:
>> Heat_Test()
Error: File: Heat_Test.m Line: 1 Column: 11
Incorrect use of '=' operator. To assign a value to a variable, use '='. To compare values for equality, use '=='.
Outside the function works normally

回答(1 个)

Henry Giddens
Henry Giddens 2019-11-21
Your function definition is wrong. Try
function answer = Heat_Test()
answer = questdlg('quest')
end

类别

Help CenterFile Exchange 中查找有关 Dialog Boxes 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by