Undefined function 'isnan' for input arguments of type 'table'. Error in regress (line 66) wasnan = (isnan(y) | any(isnan(X),2));
15 ビュー (過去 30 日間)
古いコメントを表示
Please help
0 件のコメント
回答 (1 件)
Cris LaPierre
2019 年 11 月 18 日
編集済み: Cris LaPierre
2019 年 11 月 18 日
The problem is that isnan does not support the table data type as an input. You can check which data types are supported by looking at the input argument description in the documentation.
wasnan = isnan(y{:,:})
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Specialized Power Systems についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!