what does this command plots?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
plot(1:size(image,1) , mean(Image,2), 'g' );
1 commentaire
Réponses (1)
the cyclist
le 24 Jan 2017
Modifié(e) : the cyclist
le 24 Jan 2017
Assuming that image is an NxN array, this command plots a single green line that
- along the x-axis, goes from 1 to N
- along the y-axis, goes along the mean value of the 1st through Nth rows
(Also, I assume you mean that "image" and "Image" are the same variable, and just did a typo in capitalization.)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!