How can I overcome the error "variable admit must be of data type logical instead of double"..I have to return logical values true or false using the function below.what is wrong with this?

11 次查看(过去 30 天)
function admit=eligible(v,q)
avg=(v+q)/2;
if avg>=92 ...%%
&& v>88 ... %%
&& q>88 %%
admit=1;
else
admit=0;
end

采纳的回答

Fangjun Jiang
Fangjun Jiang 2020-5-15
The error message must have come from somewhere else, not from this function. Here, nothing is wrong except that the data type of "admit" seems not to comply with the required "logical" data type required by somewhere else.
You can use admit=ture, admit=false. "true" and "false" are defined in MATLAB.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Classical Control Design 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by