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?
8 ビュー (過去 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
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.
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Performance and Memory についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!