NEED HELP FAST! I have several problem about ASCII file.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
So, I have a ASCII data file with unknown number (NaN). My teacher want me to change NaN into -99.9999. But when I tried so many times, the undefined variable error is appear. WHAT SHOULD I DO? Pls I appreciate if anyone can help :))
1 comentario
Respuestas (1)
Image Analyst
el 18 de Jul. de 2018
What did you try? Did you try the obvious
data(isnan(data)) = -99.9999;
?? What error message did you get?
6 comentarios
Walter Roberson
el 18 de Jul. de 2018
It would be easier to go back to the original text data and import that properly, than to continue working with this badly input .xlsx
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!