Undefined function 'isnan' for input arguments of type 'table'. Error in regress (line 66) wasnan = (isnan(y) | any(isnan(X),2));
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Please help
0 commentaires
Réponses (1)
Cris LaPierre
le 18 Nov 2019
Modifié(e) : Cris LaPierre
le 18 Nov 2019
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 commentaires
Voir également
Catégories
En savoir plus sur Specialized Power Systems dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!