What is this assignment statement attempting to do?
Mostrar comentarios más antiguos
[mean_face, mean_data] = meanX(raw_data);
raw_data is a matrx of zeros with double images taken from a multitude of tif files
Respuestas (1)
Steven Lord
el 13 de Jun. de 2021
0 votos
This calls the meanX function with raw_data as input and returns two outputs. We can speculate as to what meanX does from its name, but to be more confident about what it does you'd need to either look at its help text (it does have help text, right?), read and understand the code, or ask the author.
1 comentario
Jamal Barrett
el 13 de Jun. de 2021
Categorías
Más información sobre Nearest Neighbors en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!